From ad2aeb8d88f3a94dfad2a0fab826252f87cee035 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Sat, 16 Apr 1994 03:43:09 +0000 Subject: [PATCH] (command-line): If no error data, print "", not nil. --- lisp/startup.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/startup.el b/lisp/startup.el index 36a7ee9c1ee..8ef326bb2ad 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -295,10 +295,10 @@ this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.") (setq init-file-had-error nil)) (error (message "Error in init file: %s%s%s" (get (car error) 'error-message) - (if (cdr error) ": ") + (if (cdr error) ": " "") (mapconcat 'prin1-to-string (cdr error) ", ")) (setq init-file-had-error t)))) - ;; If we can tell that the init file altered debug-on-error., + ;; If we can tell that the init file altered debug-on-error, ;; arrange to preserve the value that it set up. (or (eq debug-on-error debug-on-error-initial) (setq debug-on-error-should-be-set t -- 2.39.5