From: Glenn Morris Date: Mon, 15 Jul 2013 19:45:22 +0000 (-0400) Subject: * lisp/edmacro.el (edmacro-format-keys): Fix previous change. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1787 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=da48522e656667d815a591435b59aced91326035;p=emacs.git * lisp/edmacro.el (edmacro-format-keys): Fix previous change. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d11db5d303e..5949dcdbd00 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2013-07-15 Glenn Morris + + * edmacro.el (edmacro-format-keys): Fix previous change. + 2013-07-15 Paul Eggert * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x. diff --git a/lisp/edmacro.el b/lisp/edmacro.el index 67992d16527..73662951188 100644 --- a/lisp/edmacro.el +++ b/lisp/edmacro.el @@ -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)