]> git.eshelyaron.com Git - emacs.git/commitdiff
(which-func-modes): Add f90-mode.
authorGlenn Morris <rgm@gnu.org>
Sun, 20 Apr 2003 13:04:58 +0000 (13:04 +0000)
committerGlenn Morris <rgm@gnu.org>
Sun, 20 Apr 2003 13:04:58 +0000 (13:04 +0000)
(which-function): Handle imenu submenus.

lisp/ChangeLog
lisp/which-func.el

index c6db178fe8fa1fed4c398f2624e068e00167c55f..b1b6694d069d834ad443d2581633fe1853a3ff9a 100644 (file)
@@ -1,3 +1,18 @@
+2003-04-20  Glenn Morris  <gmorris@ast.cam.ac.uk>
+
+       * which-func.el (which-func-modes): Add f90-mode.
+       (which-function): Handle imenu submenus.
+
+       * progmodes/fortran.el (fortran-abbrev-start): Make XEmacs
+       compatible.
+
+       * progmodes/f90.el (f90-font-lock-keywords-2): Use override for
+       font-lock-variable-name-face in declarations.  Highlight
+       continuation characters.
+       (f90-indent-new-line): Remove direct call to f90-indent-line-no,
+       f90-update-line.
+       (f90-abbrev-start): Fix XEmacs compatibility.
+
 2003-04-19  Richard M. Stallman  <rms@gnu.org>
 
        * desktop.el (desktop-buffer-mh): Don't require mh-e;
index 1d31b3d304a74b0295c0d80b811f1e98b2c99ae1..7b178ab25ea04dc8f1f525cf9e5e99012859359a 100644 (file)
@@ -76,7 +76,7 @@
 
 (defcustom which-func-modes
   '(emacs-lisp-mode c-mode c++-mode perl-mode cperl-mode makefile-mode
-                   sh-mode fortran-mode)
+                   sh-mode fortran-mode f90-mode)
   "List of major modes for which Which Function mode should be used.
 For other modes it is disabled.  If this is equal to t,
 then Which Function mode is enabled in any major mode that supports it."
@@ -216,14 +216,27 @@ If no function name is found, return nil."
        (setq which-function-imenu-failed t)))
     ;; If we have an index alist, use it.
     (when (and (boundp 'imenu--index-alist) imenu--index-alist)
-      (let ((pair (car-safe imenu--index-alist))
-           (rest (cdr-safe imenu--index-alist)))
-       (while (and (or rest pair)
-                   (or (not (number-or-marker-p (cdr pair)))
-                       (> (point) (cdr pair))))
-         (setq name (car pair))
-         (setq pair (car-safe rest))
-         (setq rest (cdr-safe rest)))))
+      (let ((alist imenu--index-alist)
+            (minoffset (point-max))
+            offset elem pair mark)
+        (while alist
+          (setq elem  (car-safe alist)
+                alist (cdr-safe alist))
+          ;; Elements of alist are either ("name" . marker), or 
+          ;; ("submenu" ("name" . marker) ... ).
+          (unless (listp (cdr elem))
+              (setq elem (list elem)))
+          (while elem
+            (setq pair (car elem)
+                  elem (cdr elem))
+            (and (consp pair)
+                 (number-or-marker-p (setq mark (cdr pair)))
+                 (if (>= (setq offset (- (point) mark)) 0)
+                     (if (< offset minoffset) ; find the closest item
+                         (setq minoffset offset
+                               name (car pair)))
+                   ;; Entries in order, so can skip all those after point.
+                   (setq elem nil)))))))
     ;; Try using add-log support.
     (when (and (null name) (boundp 'add-log-current-defun-function)
               add-log-current-defun-function)