diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2015-08-23 13:42:04 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2015-08-23 16:33:39 +0200 |
commit | 0b0c9565d050bfecc581b342c40b719917395896 (patch) | |
tree | 66db74031501dff2cd612095c62a6d065a25b023 /lisp/cedet/srecode | |
parent | 70ff62413a17cbe5a4f218202a6a91c38d86c8c8 (diff) | |
download | emacs-0b0c9565d050bfecc581b342c40b719917395896.tar.gz emacs-0b0c9565d050bfecc581b342c40b719917395896.tar.bz2 emacs-0b0c9565d050bfecc581b342c40b719917395896.zip |
Revert "Prefer ‘format’ to ‘substitute-command-keys’"
This reverts commit 6af5aad26411ffe21c3fe4bc5438347110910111.
Diffstat (limited to 'lisp/cedet/srecode')
-rw-r--r-- | lisp/cedet/srecode/srt-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/srecode/srt-mode.el b/lisp/cedet/srecode/srt-mode.el index efcfe4ba51d..48f055561ea 100644 --- a/lisp/cedet/srecode/srt-mode.el +++ b/lisp/cedet/srecode/srt-mode.el @@ -258,9 +258,9 @@ we can tell font lock about them.") (when (class-abstract-p C) (throw 'skip nil)) - (princ (format "‘")) + (princ (substitute-command-keys "‘")) (princ name) - (princ (format "’")) + (princ (substitute-command-keys "’")) (when (slot-exists-p C 'key) (when key (princ " - Character Key: ") |