diff options
| author | Juanma Barranquero | 2006-11-27 13:58:48 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-11-27 13:58:48 +0000 |
| commit | 0c655b900b58b44215e735d3f8216ce17be4fd73 (patch) | |
| tree | 5bf6c633a198f6b1f89109d5eab7e2962a2c8a80 | |
| parent | 443012f070db50bf36a172c7f5b908a402b6fc6e (diff) | |
| download | emacs-0c655b900b58b44215e735d3f8216ce17be4fd73.tar.gz emacs-0c655b900b58b44215e735d3f8216ce17be4fd73.zip | |
(insert-kbd-macro): "?\ " -> "?\s".
| -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." | |||
| 130 | (if (vectorp definition) | 130 | (if (vectorp definition) |
| 131 | (let ((len (length definition)) (i 0) char mods) | 131 | (let ((len (length definition)) (i 0) char mods) |
| 132 | (while (< i len) | 132 | (while (< i len) |
| 133 | (insert (if (zerop i) ?\[ ?\ )) | 133 | (insert (if (zerop i) ?\[ ?\s)) |
| 134 | (setq char (aref definition i) | 134 | (setq char (aref definition i) |
| 135 | i (1+ i)) | 135 | i (1+ i)) |
| 136 | (cond ((not (numberp char)) | 136 | (cond ((not (numberp char)) |