1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-31 20:02:42 +00:00

; * lisp/use-package/bind-key.el: Remove ineffective backslashes.

This commit is contained in:
Mattias Engdegård 2022-12-10 14:13:39 +01:00
parent 864ed9dfa1
commit 074b7e6f4d

View 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))))