We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
+jinx-load-module
1 parent 74c113b commit 72db594Copy full SHA for 72db594
modules/me-natural-langs.el
@@ -15,15 +15,14 @@
15
:init
16
(defun +jinx-load-module ()
17
"Try to compile and load the jinx module and fail silently."
18
- (condition-case nil
19
- ;; Don't show the compilation buffer
20
- (let ((display-buffer-alist
+ (condition-case err
+ (let ((display-buffer-alist ; Hide the compilation buffer
21
(cons '("\\*jinx module compilation\\*"
22
(display-buffer-no-window)
23
(allow-no-window . t))
24
display-buffer-alist)))
25
(jinx--load-module))
26
- (error nil)
+ (error (+log! (error-message-string err)) nil)
27
(:success t))))
28
29
(+load minemacs-obsolete-modules-dir "me-spell-fu.el")
0 commit comments