Mercurial > emacs
changeset 74235:1807458bff39
(insert-kbd-macro): "?\ " -> "?\s".
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 27 Nov 2006 13:58:48 +0000 |
parents | d966c458c782 |
children | 5dd4d25de38f |
files | lisp/macros.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/macros.el Mon Nov 27 13:57:16 2006 +0000 +++ b/lisp/macros.el Mon Nov 27 13:58:48 2006 +0000 @@ -130,7 +130,7 @@ (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))