branch: externals/firefox-javascript-repl
commit 7bed24ae8e4c6a7cd3ced1fd66772ff460f2286f
Author: Thomas Fitzsimmons <[email protected]>
Commit: Thomas Fitzsimmons <[email protected]>
Ignore errors when showing quirk
* firefox-javascript-repl.el (firefox-javascript-repl--mode):
Ignore errors when showing quirk.
---
firefox-javascript-repl.el | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/firefox-javascript-repl.el b/firefox-javascript-repl.el
index a41beb00ea..4b9cb7a337 100644
--- a/firefox-javascript-repl.el
+++ b/firefox-javascript-repl.el
@@ -206,7 +206,10 @@ ARGUMENTS will be used for FORMAT, like `messages'."
(lambda ()
(let ((network (get-process "firefox-javascript-repl")))
(when network (kill-process network)))))
- (fjrepl--show-quirk)))
+ ;; FIXME: Remove this ignore-errors after confirmation that GNU
+ ;; ELPA will check out the wtfjs submodule.
+ (ignore-errors
+ (fjrepl--show-quirk))))
(defun fjrepl--create-profile-directory ()
"Create a profile directory."