diff options
author | K. Handa <handa@gnu.org> | 2015-09-01 20:46:15 +0900 |
---|---|---|
committer | K. Handa <handa@gnu.org> | 2015-09-01 20:46:15 +0900 |
commit | 3e0e2339cd379eeba8d9bc758f2e8e574144e252 (patch) | |
tree | 9d119efed6e52e5c24dbd84836148157271799a8 /lisp/emacs-lisp/macroexp.el | |
parent | 524eeb2e5e158d98ea52fe5ebe4768c4433ba8b2 (diff) | |
parent | ff0a92f6461941902eb9e974bdd2ff9adacb7bc4 (diff) | |
download | emacs-3e0e2339cd379eeba8d9bc758f2e8e574144e252.tar.gz emacs-3e0e2339cd379eeba8d9bc758f2e8e574144e252.tar.bz2 emacs-3e0e2339cd379eeba8d9bc758f2e8e574144e252.zip |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'lisp/emacs-lisp/macroexp.el')
-rw-r--r-- | lisp/emacs-lisp/macroexp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/macroexp.el b/lisp/emacs-lisp/macroexp.el index ff359e6096e..6189976e866 100644 --- a/lisp/emacs-lisp/macroexp.el +++ b/lisp/emacs-lisp/macroexp.el @@ -149,7 +149,7 @@ and also to avoid outputting the warning during normal execution." (format-message "ā%sā is an obsolete %s%s%s" fun type (if asof (concat " (as of " asof ")") "") - (cond ((stringp instead) (concat "; " instead)) + (cond ((stringp instead) (concat "; " (substitute-command-keys instead))) (instead (format-message "; use ā%sā instead." instead)) (t "."))))) |