emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Glenn Morris
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/f90.el
Date: Sat, 12 Apr 2003 11:45:59 -0400

Index: emacs/lisp/progmodes/f90.el
diff -c emacs/lisp/progmodes/f90.el:1.65 emacs/lisp/progmodes/f90.el:1.66
*** emacs/lisp/progmodes/f90.el:1.65    Tue Feb  4 08:24:34 2003
--- emacs/lisp/progmodes/f90.el Sat Apr 12 11:45:59 2003
***************
*** 1677,1684 ****
      (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))
        (f90-abbrev-help)
        (setq unread-command-events (list c)))))
  
--- 1677,1684 ----
      (setq c (if (fboundp 'next-command-event) ; XEmacs
                  (event-to-character (next-command-event))
                (read-event)))
!     ;; 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)))))
  




reply via email to

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