diff lisp/macros.el @ 74235:1807458bff39

(insert-kbd-macro): "?\ " -> "?\s".
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 27 Nov 2006 13:58:48 +0000
parents 3bd95f4f2941
children b2e5081b9320
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))