emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/imenu.el


From: Glenn Morris
Subject: [Emacs-diffs] Changes to emacs/lisp/imenu.el
Date: Tue, 20 Aug 2002 16:21:01 -0400

Index: emacs/lisp/imenu.el
diff -c emacs/lisp/imenu.el:1.90 emacs/lisp/imenu.el:1.91
*** emacs/lisp/imenu.el:1.90    Wed Aug 14 20:11:15 2002
--- emacs/lisp/imenu.el Tue Aug 20 16:21:00 2002
***************
*** 788,795 ****
        ;; The character(s) to modify may be a single char or a string.
        (if (numberp (car syn))
          (modify-syntax-entry (car syn) (cdr syn) table)
!       (dolist (c (car syn))
!         (modify-syntax-entry c (cdr syn) table))))
      (goto-char (point-max))
      (imenu-progress-message prev-pos 0 t)
      (unwind-protect                   ; for syntax table
--- 788,796 ----
        ;; The character(s) to modify may be a single char or a string.
        (if (numberp (car syn))
          (modify-syntax-entry (car syn) (cdr syn) table)
!         (mapc (lambda (c)
!                 (modify-syntax-entry c (cdr syn) table))
!               (car syn))))
      (goto-char (point-max))
      (imenu-progress-message prev-pos 0 t)
      (unwind-protect                   ; for syntax table




reply via email to

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