From: Gerd Moellmann Date: Fri, 26 Nov 1999 13:53:02 +0000 (+0000) Subject: (f90-abbrev-start): Use `eq' instead of `='. X-Git-Tag: emacs-pretest-21.0.90~5965 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0cf5bb509d801b8908a17ed8a0df620a6df7af15;p=emacs.git (f90-abbrev-start): Use `eq' instead of `='. --- 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 + + * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='. + 1999-11-25 Dave Love * hippie-exp.el: Require comint when compiling. @@ -6,16 +10,16 @@ 1999-11-24 Michael Kifer - * 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 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)