Mercurial > emacs
changeset 98133:0007d69c4e5a
(edmacro-parse-keys): Fix last change to omit macros of the <<foo>>
form.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Wed, 10 Sep 2008 21:51:06 +0000 |
parents | a20e31c64c31 |
children | 854ebfeef140 |
files | lisp/edmacro.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/edmacro.el Wed Sep 10 21:50:15 2008 +0000 +++ b/lisp/edmacro.el Wed Sep 10 21:51:06 2008 +0000 @@ -697,7 +697,7 @@ (times 1) key) ;; Try to catch events of the form "<as df>". - (if (string-match "^<[^ >\t\n\f][^>\t\n\f]*>" word) + (if (string-match "^<[^ <>\t\n\f][^>\t\n\f]*>" word) (setq word (match-string 0 word) pos (+ word-beg (match-end 0))) (setq word (substring string word-beg word-end)