diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2018-03-29 17:41:11 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-03-29 17:43:08 -0700 |
commit | 20b858ef13f8f71fae6cbce5cdac31c4dd130600 (patch) | |
tree | 861786941f43a58fa282a5a019d3948904b10a9c /lisp/kmacro.el | |
parent | 00c1f771f2a51ffa675ec5a07ea330f2605cd302 (diff) | |
download | emacs-20b858ef13f8f71fae6cbce5cdac31c4dd130600.tar.gz emacs-20b858ef13f8f71fae6cbce5cdac31c4dd130600.tar.bz2 emacs-20b858ef13f8f71fae6cbce5cdac31c4dd130600.zip |
Prefer \... to control chars in .el literals
Diffstat (limited to 'lisp/kmacro.el')
-rw-r--r-- | lisp/kmacro.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/kmacro.el b/lisp/kmacro.el index 76d2125c9d8..0acb7fce8f3 100644 --- a/lisp/kmacro.el +++ b/lisp/kmacro.el @@ -813,7 +813,7 @@ The ARG parameter is unused." (and (>= ch ?A) (<= ch ?Z)))) (setq key-seq (concat "\C-x\C-k" key-seq) ok t)))) - (when (and (not (equal key-seq "")) + (when (and (not (equal key-seq "\^G")) (or ok (not (setq cmd (key-binding key-seq))) (stringp cmd) |