]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/use-package/bind-key.el: Remove ineffective backslashes.
authorMattias Engdegård <mattiase@acm.org>
Sat, 10 Dec 2022 13:13:39 +0000 (14:13 +0100)
committerMattias Engdegård <mattiase@acm.org>
Sun, 11 Dec 2022 11:09:42 +0000 (12:09 +0100)
lisp/use-package/bind-key.el

index a5d6a5f45bb066fe737e967edd9ca8450ac35d63..1ce717019f1130cc0b4af3f34fff3cb83facccc7 100644 (file)
@@ -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))))