aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong <[email protected]>2008-09-10 21:51:06 +0000
committerChong Yidong <[email protected]>2008-09-10 21:51:06 +0000
commita6e05096a9af5bbf183374aabdc88404f351fa11 (patch)
tree6fe0ddc344636c7bf551848a9e4531cdbf98605e
parent39badb7749d690905733c97e95dd4d4461d2d38b (diff)
(edmacro-parse-keys): Fix last change to omit macros of the <<foo>>
form.
-rw-r--r--lisp/edmacro.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/edmacro.el b/lisp/edmacro.el
index be948ad579..29f9967606 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)