From: Richard M. Stallman Date: Sun, 1 Sep 1996 19:02:33 +0000 (+0000) Subject: (change-log-name): Don't treat MSDOS, NT specially. X-Git-Tag: emacs-20.1~3909 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4a047d230c3948026a3962b647fc31a2bf3fd013;p=emacs.git (change-log-name): Don't treat MSDOS, NT specially. --- diff --git a/lisp/add-log.el b/lisp/add-log.el index cf4e46d033a..f4427182e61 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -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 ()