]> git.eshelyaron.com Git - emacs.git/commitdiff
(imenu--mouse-menu): Use assq when searching in FINAL.
authorRichard M. Stallman <rms@gnu.org>
Tue, 6 Apr 1999 20:02:45 +0000 (20:02 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 6 Apr 1999 20:02:45 +0000 (20:02 +0000)
lisp/imenu.el

index 4fa74b7ec72468fcd7c3714443b05268e0067239..f9028d34ef0b7064a287da9f6410f40888232593 100644 (file)
@@ -918,7 +918,7 @@ Returns t for rescan and otherwise an element or subelement of INDEX-ALIST."
                (stringp (nth (1- (length position)) position)))
           (let ((final menu))
             (while position
-              (setq final (assoc (car position) final))
+              (setq final (assq (car position) final))
               (setq position (cdr position)))
              (or (string= (car final) (car imenu--rescan-item))
                  (nthcdr 3 final))))