# HG changeset patch # User Karl Heuer # Date 766467789 0 # Node ID 6062cabdbe747442e8a9cd2857d9183e90017fe0 # Parent 6566088ccf071cc307ef1549cab0322479fb46bb (command-line): If no error data, print "", not nil. diff -r 6566088ccf07 -r 6062cabdbe74 lisp/startup.el --- a/lisp/startup.el Sat Apr 16 02:39:42 1994 +0000 +++ b/lisp/startup.el Sat Apr 16 03:43:09 1994 +0000 @@ -295,10 +295,10 @@ (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