From: Richard M. Stallman Date: Tue, 23 Apr 2002 03:45:45 +0000 (+0000) Subject: (after-find-file): Use %s to output MSG. X-Git-Tag: ttn-vms-21-2-B4~15466 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a74357d4eaaa0d24c674d19380c395048392ffea;p=emacs.git (after-find-file): Use %s to output MSG. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8428ca452ef..e9bb0e76234 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2002-04-22 Richard M. Stallman + * files.el (after-find-file): Use %s to output MSG. + * dired.el (dired-mouse-find-file-other-window): Handle events that move out of the window. diff --git a/lisp/files.el b/lisp/files.el index e76d40ac956..353eb12375c 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1332,7 +1332,7 @@ unless NOMODES is non-nil." "Use M-x make-directory RET RET to create the directory" "Use C-u M-x make-directory RET RET to create directory and its parents"))))) (when msg - (message msg) + (message "%s" msg) (or not-serious (sit-for 1 nil t)))) (when (and auto-save-default (not noauto)) (auto-save-mode t)))