From: Mattias EngdegÄrd Date: Sat, 10 Dec 2022 13:13:39 +0000 (+0100) Subject: ; * lisp/use-package/bind-key.el: Remove ineffective backslashes. X-Git-Tag: emacs-29.0.90~1238 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=074b7e6f4d1eefacade7b4c5b19ee9b03a2367ae;p=emacs.git ; * lisp/use-package/bind-key.el: Remove ineffective backslashes. --- diff --git a/lisp/use-package/bind-key.el b/lisp/use-package/bind-key.el index a5d6a5f45bb..1ce717019f1 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))))