From 1f84c302e297a46f33935d374d688f88d7bbbb94 Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Sat, 17 Jan 2026 01:54:18 -0800 Subject: [PATCH] Fix eww error --- init.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index 4d41553..5f94b3e 100644 --- a/init.el +++ b/init.el @@ -589,14 +589,16 @@ printed representation (via `princ') set as the new value for the key." (cfg-dir (my/eww-current-config-dir))) (when cfg-dir (setq args (nconc (list "-c" cfg-dir) args))) - (apply 'call-process "eww" nil 0 nil args))) + (ignore-errors + (apply 'call-process "eww" nil 0 nil args)))) (defun my/eww-poll-variables (&rest vars) "Poll each variable in VARS, which is a lists of strings or symbols." (let* ((args (cons "poll" (mapcar #'(lambda (elt) (format "%s" elt)) vars))) (cfg-dir (my/eww-current-config-dir))) (when cfg-dir (setq args (nconc (list "-c" cfg-dir) args))) - (apply 'call-process "eww" nil 0 nil args))) + (ignore-errors + (apply 'call-process "eww" nil 0 nil args)))) ;; mozc (require 'mozc nil t)