From: Juanma Barranquero Date: Mon, 27 Nov 2006 13:58:48 +0000 (+0000) Subject: (insert-kbd-macro): "?\ " -> "?\s". X-Git-Tag: emacs-pretest-22.0.92~467 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0c655b900b58b44215e735d3f8216ce17be4fd73;p=emacs.git (insert-kbd-macro): "?\ " -> "?\s". --- 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))