(change-log-name): Don't treat MSDOS, NT specially.
authorRichard M. Stallman <rms@gnu.org>
Sun, 1 Sep 1996 19:02:33 +0000 (19:02 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 1 Sep 1996 19:02:33 +0000 (19:02 +0000)
lisp/add-log.el

index cf4e46d..f442718 100644 (file)
@@ -79,10 +79,8 @@ If nil, use local time.")
 (defun change-log-name ()
   (or change-log-default-name
       (if (eq system-type 'vax-vms) 
-         "$CHANGE_LOG$.TXT" 
-       (if (or (eq system-type 'ms-dos) (eq system-type 'windows-nt))
-           "changelo"
-         "ChangeLog"))))
+         "$CHANGE_LOG$.TXT"
+       "ChangeLog")))
 
 ;;;###autoload
 (defun prompt-for-change-log-name ()