emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/caml 959a5a27bf: Remove call to obsolete noop `imenu-progr


From: ELPA Syncer
Subject: [nongnu] elpa/caml 959a5a27bf: Remove call to obsolete noop `imenu-progress-message`
Date: Sun, 29 Jan 2023 06:58:56 -0500 (EST)

branch: elpa/caml
commit 959a5a27bfdbaa43a9ff99be136d62e0798f5e01
Author: Nicolás Ojeda Bär <n.oje.bar@gmail.com>
Commit: Christophe Troestler <christophe.Troestler@umons.ac.be>

    Remove call to obsolete noop `imenu-progress-message`
    
    See 
https://github.com/emacs-mirror/emacs/blob/b9ae9d3ff8e5b837d425153822be24c51d3fac84/lisp/imenu.el#L262-L264
---
 caml.el | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/caml.el b/caml.el
index 62718e8873..16866088d2 100644
--- a/caml.el
+++ b/caml.el
@@ -617,11 +617,9 @@ See `imenu-create-index-function'."
         (prev-pos (point-max))
         index)
     (goto-char prev-pos)
-    (imenu-progress-message prev-pos 0 t)
     ;; collect definitions
     (while (caml-prev-index-position-function)
       (setq index (cons (caml-match-string 5) (point)))
-      (imenu-progress-message prev-pos nil t)
       (setq all-alist (cons index all-alist))
       (cond
        ((looking-at "[ \t]*and")
@@ -656,7 +654,6 @@ See `imenu-create-index-function'."
        ("Methods" . ,method-alist)
        ("Classes" . ,class-alist)))
     (if all-alist (setq menu-alist (cons (cons "Index" all-alist) menu-alist)))
-    (imenu-progress-message prev-pos 100 t)
     menu-alist))
 
 ;;; Indentation stuff



reply via email to

[Prev in Thread] Current Thread [Next in Thread]