]> code.delx.au - gnu-emacs/commitdiff
Fix minor quoting problems in diagnostics
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 17 Sep 2015 19:02:55 +0000 (12:02 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 17 Sep 2015 19:03:25 +0000 (12:03 -0700)
* 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.

lisp/tutorial.el
lisp/vc/ediff-ptch.el

index f8660f55f6588eff82f43a2539bfb0f35ea12765..14f127e41a1cfb42c8f0a572be70ba014e3c1dfe 100644 (file)
@@ -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))
index b45d533caea96bc10781fdb1806c48830b9513f4..b5835cb2d6e22e5d962e1a31160f3746cb31687d 100644 (file)
@@ -333,7 +333,7 @@ program."
                      (ediff-with-current-buffer standard-output
                        (fundamental-mode))
                      (princ
-                      (format "
+                      (format-message "
 The patch file contains a context diff for
        %s
        %s
@@ -342,7 +342,7 @@ to be patched on your system.  If you know the correct file name,
 please enter it now.
 
 If you don't know and still would like to apply patches to
-other files, enter /dev/null
+other files, enter `/dev/null'.
 "
                               (substring (car proposed-file-names) 6)
                               (substring (cdr proposed-file-names) 6))))