From 0c655b900b58b44215e735d3f8216ce17be4fd73 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 27 Nov 2006 13:58:48 +0000 Subject: [PATCH] (insert-kbd-macro): "?\ " -> "?\s". --- lisp/macros.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." (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)) -- 2.39.2