diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-09-17 12:02:55 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-09-17 12:03:25 -0700 |
commit | dc9e7022d5f259642a42535a4db87d2a1d05ae19 (patch) | |
tree | 3c8499bcffc0df1ea0212f53b2d752d2e639388e /lisp/tutorial.el | |
parent | 7366f80ab82c0acd6cf1c66b7ff020cd4a77a75c (diff) | |
download | emacs-dc9e7022d5f259642a42535a4db87d2a1d05ae19.tar.gz emacs-dc9e7022d5f259642a42535a4db87d2a1d05ae19.tar.bz2 emacs-dc9e7022d5f259642a42535a4db87d2a1d05ae19.zip |
Fix minor quoting problems in diagnostics
* lisp/tutorial.el (tutorial--describe-nonstandard-key):
* lisp/vc/ediff-ptch.el (ediff-fixup-patch-map):
Follow text-quoting-style in diagnostic, and quote a file name.
Diffstat (limited to 'lisp/tutorial.el')
-rw-r--r-- | lisp/tutorial.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el index f8660f55f65..14f127e41a1 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el @@ -135,7 +135,7 @@ options: ;; then save this value in mapsym (setq mapsym s))))) (insert - (format + (format-message "The default Emacs binding for the key %s is the command `%s'. " (key-description key) db)) |