diff options
| author | Gerd Moellmann <gerd@gnu.org> | 1999-11-26 13:53:02 +0000 |
|---|---|---|
| committer | Gerd Moellmann <gerd@gnu.org> | 1999-11-26 13:53:02 +0000 |
| commit | 0cf5bb509d801b8908a17ed8a0df620a6df7af15 (patch) | |
| tree | 75c355c94b39605415a1077ce458412ce1490c25 /lisp | |
| parent | b3b9859282bb1b4102e8e8a4edc7daf0fd31b868 (diff) | |
| download | emacs-0cf5bb509d801b8908a17ed8a0df620a6df7af15.tar.gz | |
(f90-abbrev-start): Use `eq' instead of `='.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/progmodes/f90.el | 2 |
2 files changed, 9 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 00df3372709..3ea6c5d5a4d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +1999-11-26 Gerd Moellmann <gerd@gnu.org> + + * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='. + 1999-11-25 Dave Love <fx@gnu.org> * hippie-exp.el: Require comint when compiling. @@ -6,16 +10,16 @@ 1999-11-24 Michael Kifer <kifer@cs.sunysb.edu> - * viper*el: replaced old-style backquotes. + * viper*el: Replaced old-style backquotes. - * ediff*el: replaced old-style backquotes. + * ediff*el: Replaced old-style backquotes. * ediff-merge (ediff-looks-like-combined-merge,ediff-get-combined-region): - changed to support the new format for ediff-combination-pattern. + Changed to support the new format for ediff-combination-pattern. * ediff-diff (ediff-set-fine-overlays-in-one-buffer): - changed to support the new format for ediff-combination-pattern. + Changed to support the new format for ediff-combination-pattern. 1999-11-24 Dave Love <fx@gnu.org> diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el index 07af86a138a..4bad78989f0 100644 --- a/lisp/progmodes/f90.el +++ b/lisp/progmodes/f90.el @@ -1658,7 +1658,7 @@ Any other key combination is executed normally." (setq c (event-to-character e))) (setq c (read-event))) ;; insert char if not equal to `?' - (if (or (= c ??) (eq c help-char)) + (if (or (eq c ??) (eq c help-char)) (f90-abbrev-help) (if (string-match "XEmacs" emacs-version) (setq unread-command-event e) |
