comparison lisp/imenu.el @ 14575:69a5f0592433

(imenu--generic-function): Ignore text properties.
author Karl Heuer <kwzh@gnu.org>
date Fri, 16 Feb 1996 00:52:43 +0000
parents 83f275dcd93a
children 01e8fdb45deb
comparison
equal deleted inserted replaced
14574:1b6e39d4143c 14575:69a5f0592433
625 (looking-at regexp)) 625 (looking-at regexp))
626 (let ((beg (match-beginning index)) 626 (let ((beg (match-beginning index))
627 (end (match-end index))) 627 (end (match-end index)))
628 (setq found t) 628 (setq found t)
629 (push 629 (push
630 (cons (buffer-substring beg end) beg) 630 (cons (buffer-substring-no-properties beg end) beg)
631 (cdr 631 (cdr
632 (or (if (not (stringp menu-title)) index-alist) 632 (or (if (not (stringp menu-title)) index-alist)
633 (assoc 633 (assoc
634 (imenu-create-submenu-name menu-title) 634 (imenu-create-submenu-name menu-title)
635 index-alist) 635 index-alist)