aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGerd Moellmann1999-11-26 13:53:02 +0000
committerGerd Moellmann1999-11-26 13:53:02 +0000
commit0cf5bb509d801b8908a17ed8a0df620a6df7af15 (patch)
tree75c355c94b39605415a1077ce458412ce1490c25 /lisp
parentb3b9859282bb1b4102e8e8a4edc7daf0fd31b868 (diff)
downloademacs-0cf5bb509d801b8908a17ed8a0df620a6df7af15.tar.gz
emacs-0cf5bb509d801b8908a17ed8a0df620a6df7af15.zip
(f90-abbrev-start): Use `eq' instead of `='.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog12
-rw-r--r--lisp/progmodes/f90.el2
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 @@
11999-11-26 Gerd Moellmann <gerd@gnu.org>
2
3 * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='.
4
11999-11-25 Dave Love <fx@gnu.org> 51999-11-25 Dave Love <fx@gnu.org>
2 6
3 * hippie-exp.el: Require comint when compiling. 7 * hippie-exp.el: Require comint when compiling.
@@ -6,16 +10,16 @@
6 10
71999-11-24 Michael Kifer <kifer@cs.sunysb.edu> 111999-11-24 Michael Kifer <kifer@cs.sunysb.edu>
8 12
9 * viper*el: replaced old-style backquotes. 13 * viper*el: Replaced old-style backquotes.
10 14
11 * ediff*el: replaced old-style backquotes. 15 * ediff*el: Replaced old-style backquotes.
12 16
13 * ediff-merge 17 * ediff-merge
14 (ediff-looks-like-combined-merge,ediff-get-combined-region): 18 (ediff-looks-like-combined-merge,ediff-get-combined-region):
15 changed to support the new format for ediff-combination-pattern. 19 Changed to support the new format for ediff-combination-pattern.
16 20
17 * ediff-diff (ediff-set-fine-overlays-in-one-buffer): 21 * ediff-diff (ediff-set-fine-overlays-in-one-buffer):
18 changed to support the new format for ediff-combination-pattern. 22 Changed to support the new format for ediff-combination-pattern.
19 23
201999-11-24 Dave Love <fx@gnu.org> 241999-11-24 Dave Love <fx@gnu.org>
21 25
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."
1658 (setq c (event-to-character e))) 1658 (setq c (event-to-character e)))
1659 (setq c (read-event))) 1659 (setq c (read-event)))
1660 ;; insert char if not equal to `?' 1660 ;; insert char if not equal to `?'
1661 (if (or (= c ??) (eq c help-char)) 1661 (if (or (eq c ??) (eq c help-char))
1662 (f90-abbrev-help) 1662 (f90-abbrev-help)
1663 (if (string-match "XEmacs" emacs-version) 1663 (if (string-match "XEmacs" emacs-version)
1664 (setq unread-command-event e) 1664 (setq unread-command-event e)