diff options
| -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)) |