]> git.eshelyaron.com Git - emacs.git/commitdiff
(command-line): If no error data, print "", not nil.
authorKarl Heuer <kwzh@gnu.org>
Sat, 16 Apr 1994 03:43:09 +0000 (03:43 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sat, 16 Apr 1994 03:43:09 +0000 (03:43 +0000)
lisp/startup.el

index 36a7ee9c1eef749bd2050cabc4d609b9a3907cba..8ef326bb2add5dc78be0dd2b2151e07503a9c792 100644 (file)
@@ -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