emacs-diffs
[Top][All Lists]
Advanced

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

emacs-29 074b7e6f4d 2/4: ; * lisp/use-package/bind-key.el: Remove ineffe


From: Mattias Engdegård
Subject: emacs-29 074b7e6f4d 2/4: ; * lisp/use-package/bind-key.el: Remove ineffective backslashes.
Date: Sun, 11 Dec 2022 11:07:23 -0500 (EST)

branch: emacs-29
commit 074b7e6f4d1eefacade7b4c5b19ee9b03a2367ae
Author: Mattias Engdegård <mattiase@acm.org>
Commit: Mattias Engdegård <mattiase@acm.org>

    ; * lisp/use-package/bind-key.el: Remove ineffective backslashes.
---
 lisp/use-package/bind-key.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/use-package/bind-key.el b/lisp/use-package/bind-key.el
index a5d6a5f45b..1ce717019f 100644
--- a/lisp/use-package/bind-key.el
+++ b/lisp/use-package/bind-key.el
@@ -542,13 +542,13 @@ other modes.  See `override-global-mode'."
                  (format
                   (format "%%-%ds%%-%ds%%s\n" (car bind-key-column-widths)
                           (cdr bind-key-column-widths))
-                  key-name (format "`%s\'" command-desc)
+                  key-name (format "`%s'" command-desc)
                   (if (string= command-desc at-present-desc)
                       (if (or (null was-command)
                               (string= command-desc was-command-desc))
                           ""
-                        (format "was `%s\'" was-command-desc))
-                    (format "[now: `%s\']" at-present)))))
+                        (format "was `%s'" was-command-desc))
+                    (format "[now: `%s']" at-present)))))
             (princ (if (string-match "[ \t]+\n" line)
                        (replace-match "\n" t t line)
                      line))))



reply via email to

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