diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-02-16 00:52:43 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-02-16 00:52:43 +0000 |
commit | e1de30147b3f994f4497b95dfa563b3cc9125708 (patch) | |
tree | 603697c01d031e9df3669ef128a4e430755ef124 /lisp/imenu.el | |
parent | c87c4cda2a0238d6a402f77b15eedfe8569acd4a (diff) | |
download | emacs-e1de30147b3f994f4497b95dfa563b3cc9125708.tar.gz |
(imenu--generic-function): Ignore text properties.
Diffstat (limited to 'lisp/imenu.el')
-rw-r--r-- | lisp/imenu.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/imenu.el b/lisp/imenu.el index a26e6d2ea2c..2e9d9be1cbb 100644 --- a/lisp/imenu.el +++ b/lisp/imenu.el @@ -627,7 +627,7 @@ pattern. (end (match-end index))) (setq found t) (push - (cons (buffer-substring beg end) beg) + (cons (buffer-substring-no-properties beg end) beg) (cdr (or (if (not (stringp menu-title)) index-alist) (assoc |