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

index 05619ce1370c159e445a96cbeaef0ba9ec24a262..db26449b4c0ae76aa07f0a6b2fa998a58c963db0 100644 (file)
@@ -1677,8 +1677,8 @@ Any other key combination is executed normally."
     (setq c (if (fboundp 'next-command-event) ; XEmacs
                 (event-to-character (next-command-event))
               (read-event)))
-    ;; Insert char if not equal to `?'.
-    (if (or (eq c ??) (eq c help-char))
+    ;; Insert char if not equal to `?', or if abbrev-mode is off.
+    (if (and abbrev-mode (or (eq c ??) (eq c help-char)))
        (f90-abbrev-help)
       (setq unread-command-events (list c)))))