]> git.eshelyaron.com Git - emacs.git/commitdiff
(insert-kbd-macro): "?\ " -> "?\s".
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 27 Nov 2006 13:58:48 +0000 (13:58 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 27 Nov 2006 13:58:48 +0000 (13:58 +0000)
lisp/macros.el

index 55916ba80d6ebd9e40fb99805571abd08e77845f..db4de40e745a31d68df707ab13638e8ae2c5a6d6 100644 (file)
@@ -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))