diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2006-11-27 13:58:48 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2006-11-27 13:58:48 +0000 |
commit | 0c655b900b58b44215e735d3f8216ce17be4fd73 (patch) | |
tree | 5bf6c633a198f6b1f89109d5eab7e2962a2c8a80 /lisp/macros.el | |
parent | 443012f070db50bf36a172c7f5b908a402b6fc6e (diff) | |
download | emacs-0c655b900b58b44215e735d3f8216ce17be4fd73.tar.gz |
(insert-kbd-macro): "?\ " -> "?\s".
Diffstat (limited to 'lisp/macros.el')
-rw-r--r-- | lisp/macros.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/macros.el b/lisp/macros.el index 55916ba80d6..db4de40e745 100644 --- a/lisp/macros.el +++ b/lisp/macros.el @@ -130,7 +130,7 @@ use this command, and then save the file." (if (vectorp definition) (let ((len (length definition)) (i 0) char mods) (while (< i len) - (insert (if (zerop i) ?\[ ?\ )) + (insert (if (zerop i) ?\[ ?\s)) (setq char (aref definition i) i (1+ i)) (cond ((not (numberp char)) |