]> git.eshelyaron.com Git - emacs.git/commitdiff
Allow --debug-init to debug all errors in init files
authorEli Zaretskii <eliz@gnu.org>
Wed, 21 Jun 2023 13:27:42 +0000 (16:27 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 21 Jun 2023 13:27:42 +0000 (16:27 +0300)
* lisp/startup.el (startup--load-user-init-file): Ignore the value
of 'debug-ignored-errors' when loading init files if we were
invoked interactively with --debug-init.  (Bug#64163)

lisp/startup.el

index 835ad785af1ee5ba4f51c3be3dcfaacb586006ad..484c8f57a9ff61578f8f68a930fafdd2003de339 100644 (file)
@@ -1041,11 +1041,17 @@ init-file, or to a default value if loading is not possible."
               ;; `user-init-file'.
               (setq user-init-file t)
              (when init-file-name
-               (load (if (equal (file-name-extension init-file-name)
-                                "el")
-                         (file-name-sans-extension init-file-name)
-                       init-file-name)
-                     'noerror 'nomessage))
+                ;; If they specified --debug-init, enter the debugger
+                ;; on any error whatsoever.
+                (let ((debug-ignored-errors
+                       (if (and init-file-debug (not noninteractive))
+                           nil
+                         debug-ignored-errors)))
+                 (load (if (equal (file-name-extension init-file-name)
+                                  "el")
+                           (file-name-sans-extension init-file-name)
+                         init-file-name)
+                       'noerror 'nomessage)))
 
               (when (and (eq user-init-file t) alternate-filename-function)
                 (let ((alt-file (funcall alternate-filename-function)))
@@ -1053,7 +1059,11 @@ init-file, or to a default value if loading is not possible."
                    (setq init-file-name alt-file))
                   (and (equal (file-name-extension alt-file) "el")
                        (setq alt-file (file-name-sans-extension alt-file)))
-                  (load alt-file 'noerror 'nomessage)))
+                  (let ((debug-ignored-errors
+                         (if (and init-file-debug (not noninteractive))
+                             nil
+                           debug-ignored-errors)))
+                    (load alt-file 'noerror 'nomessage))))
 
               ;; If we did not find the user's init file, set
               ;; user-init-file conclusively.  Don't let it be
@@ -1092,7 +1102,11 @@ init-file, or to a default value if loading is not possible."
                        (not inhibit-default-init))
               ;; Prevent default.el from changing the value of
               ;; `inhibit-startup-screen'.
-              (let ((inhibit-startup-screen nil))
+              (let ((inhibit-startup-screen nil)
+                    (debug-ignored-errors
+                     (if (and init-file-debug (not noninteractive))
+                         nil
+                       debug-ignored-errors)))
                 (load "default" 'noerror 'nomessage))))
         (error
          (display-warning