From cbcf50d2c2d65a55396ab0fc1501588738ccd31c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 19 Sep 1996 04:25:40 +0000 Subject: [PATCH] (imenu--generic-function): Use markers for positions. --- lisp/imenu.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/imenu.el b/lisp/imenu.el index 323a279efef..876f6f2f061 100644 --- a/lisp/imenu.el +++ b/lisp/imenu.el @@ -640,8 +640,9 @@ pattern. (index (caddr pat))) (if (and (not found) ; Only allow one entry; (looking-at regexp)) - (let ((beg (match-beginning index)) + (let ((beg (make-marker)) (end (match-end index))) + (set-marker beg (match-beginning index)) (setq found t) (push (cons (buffer-substring-no-properties beg end) beg) -- 2.39.2