From 8afc29f0bc9e31dd056d458b96da9cada1427d13 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 6 Jan 1994 04:32:34 +0000 Subject: [PATCH] (change-log-name): Let default name for ms-dos be "change.log". --- lisp/add-log.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/add-log.el b/lisp/add-log.el index 0978e45ac6b..acb789bb52a 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el @@ -50,7 +50,11 @@ an `@' character, followed by the value returned by `system-name'.") (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 () -- 2.39.5