diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2022-12-10 14:13:39 +0100 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2022-12-11 12:09:42 +0100 |
commit | 074b7e6f4d1eefacade7b4c5b19ee9b03a2367ae (patch) | |
tree | dbea2b60e0db37d1d5275f7bd1bcfb7b58d1c13e | |
parent | 864ed9dfa1f5809527e2c4727ae1a44a445d4266 (diff) | |
download | emacs-074b7e6f4d1eefacade7b4c5b19ee9b03a2367ae.tar.gz emacs-074b7e6f4d1eefacade7b4c5b19ee9b03a2367ae.tar.bz2 emacs-074b7e6f4d1eefacade7b4c5b19ee9b03a2367ae.zip |
; * lisp/use-package/bind-key.el: Remove ineffective backslashes.
-rw-r--r-- | lisp/use-package/bind-key.el | 6 |
1 files changed, 3 insertions, 3 deletions
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)))) |