Mercurial > emacs
changeset 5455:cbc904743f16
(change-log-name): Let default name for ms-dos be "change.log".
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 06 Jan 1994 04:32:34 +0000 |
parents | 751ea2cff517 |
children | b34aaec781fc |
files | lisp/add-log.el |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/add-log.el Thu Jan 06 04:31:20 1994 +0000 +++ b/lisp/add-log.el Thu Jan 06 04:32:34 1994 +0000 @@ -50,7 +50,11 @@ (defun change-log-name () (or change-log-default-name - (if (eq system-type 'vax-vms) "$CHANGE_LOG$.TXT" "ChangeLog"))) + (if (eq system-type 'vax-vms) + "$CHANGE_LOG$.TXT" + (if (eq system-type 'ms-dos) + "change.log" + "ChangeLog")))) ;;;###autoload (defun prompt-for-change-log-name ()