emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master dc9e702: Fix minor quoting problems in diagnostics


From: Paul Eggert
Subject: [Emacs-diffs] master dc9e702: Fix minor quoting problems in diagnostics
Date: Thu, 17 Sep 2015 19:03:39 +0000

branch: master
commit dc9e7022d5f259642a42535a4db87d2a1d05ae19
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    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.
---
 lisp/tutorial.el      |    2 +-
 lisp/vc/ediff-ptch.el |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/tutorial.el b/lisp/tutorial.el
index f8660f5..14f127e 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))
diff --git a/lisp/vc/ediff-ptch.el b/lisp/vc/ediff-ptch.el
index b45d533..b5835cb 100644
--- a/lisp/vc/ediff-ptch.el
+++ b/lisp/vc/ediff-ptch.el
@@ -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))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]