From a6e05096a9af5bbf183374aabdc88404f351fa11 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Wed, 10 Sep 2008 21:51:06 +0000 Subject: [PATCH] (edmacro-parse-keys): Fix last change to omit macros of the <> form. --- lisp/edmacro.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "". - (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) -- 2.39.5