# HG changeset patch # User Richard M. Stallman # Date 757830754 0 # Node ID cbc904743f1677f2a35edeb0b1a768f6fd064d51 # Parent 751ea2cff517bed12e3b2a5a0e7fa5ea81ed28bd (change-log-name): Let default name for ms-dos be "change.log". diff -r 751ea2cff517 -r cbc904743f16 lisp/add-log.el --- 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 ()