]> code.delx.au - gnu-emacs/commitdiff
* lisp/edmacro.el (edmacro-format-keys): Fix previous change.
authorGlenn Morris <rgm@gnu.org>
Mon, 15 Jul 2013 19:45:22 +0000 (15:45 -0400)
committerGlenn Morris <rgm@gnu.org>
Mon, 15 Jul 2013 19:45:22 +0000 (15:45 -0400)
lisp/ChangeLog
lisp/edmacro.el

index d11db5d303e94721f813e0d8238c27921fba14ab..5949dcdbd00fa6f0b682163d24af3e7ac247bb87 100644 (file)
@@ -1,3 +1,7 @@
+2013-07-15  Glenn Morris  <rgm@gnu.org>
+
+       * edmacro.el (edmacro-format-keys): Fix previous change.
+
 2013-07-15  Paul Eggert  <eggert@cs.ucla.edu>
 
        * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
index 67992d16527126667f95692c39e00a3abf6e3447..7366295118802f0832866a2010b8f41e39eb20e1 100644 (file)
@@ -562,7 +562,8 @@ doubt, use whitespace."
        (unless (string-match " " desc)
          (let ((times 1) (pos bind-len))
            (while (not (cl-mismatch rest-mac rest-mac
-                                         0 bind-len pos (+ bind-len pos)))
+                                    :start1 0 :end1 bind-len
+                                    :start2 pos :end2 (+ bind-len pos)))
              (cl-incf times)
              (cl-incf pos bind-len))
            (when (> times 1)