diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2008-09-10 21:51:06 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2008-09-10 21:51:06 +0000 |
commit | a6e05096a9af5bbf183374aabdc88404f351fa11 (patch) | |
tree | 6fe0ddc344636c7bf551848a9e4531cdbf98605e /lisp/edmacro.el | |
parent | 39badb7749d690905733c97e95dd4d4461d2d38b (diff) | |
download | emacs-a6e05096a9af5bbf183374aabdc88404f351fa11.tar.gz |
(edmacro-parse-keys): Fix last change to omit macros of the <<foo>>
form.
Diffstat (limited to 'lisp/edmacro.el')
-rw-r--r-- | lisp/edmacro.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/edmacro.el b/lisp/edmacro.el index be948ad579f..29f99676062 100644 --- a/lisp/edmacro.el +++ b/lisp/edmacro.el @@ -697,7 +697,7 @@ This function assumes that the events can be stored in a string." (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) |