changeset 6911:6062cabdbe74

(command-line): If no error data, print "", not nil.
author Karl Heuer <kwzh@gnu.org>
date Sat, 16 Apr 1994 03:43:09 +0000
parents 6566088ccf07
children 37dada8ae351
files lisp/startup.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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