summaryrefslogtreecommitdiff
path: root/lisp/kmacro.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2018-03-29 17:41:11 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2018-03-29 17:43:08 -0700
commit20b858ef13f8f71fae6cbce5cdac31c4dd130600 (patch)
tree861786941f43a58fa282a5a019d3948904b10a9c /lisp/kmacro.el
parent00c1f771f2a51ffa675ec5a07ea330f2605cd302 (diff)
downloademacs-20b858ef13f8f71fae6cbce5cdac31c4dd130600.tar.gz
Prefer \... to control chars in .el literals
Diffstat (limited to 'lisp/kmacro.el')
-rw-r--r--lisp/kmacro.el2
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)