]> git.eshelyaron.com Git - emacs.git/commitdiff
(fortran-abbrev-start): Only offer help if abbrev-mode is active.
authorGlenn Morris <rgm@gnu.org>
Sat, 12 Apr 2003 15:44:59 +0000 (15:44 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 12 Apr 2003 15:44:59 +0000 (15:44 +0000)
lisp/progmodes/fortran.el

index e3a29289e896327967c0cc302d6306438336e5e7..084320bca3d0ee9ba7bd30e4ad3c06f3cfaa2978 100644 (file)
@@ -784,8 +784,9 @@ Any other key combination is executed normally."
   (interactive)
   (let (c)
     (insert last-command-char)
-    (if (or (eq (setq c (read-event)) ??)    ;insert char if not equal to `?'
-           (eq c help-char))
+    (if (and abbrev-mode
+             (or (eq (setq c (read-event)) ??) ;insert char if not equal to `?'
+                 (eq c help-char)))
        (fortran-abbrev-help)
       (setq unread-command-events (list c)))))