aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
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/progmodes
parentb3b9859282bb1b4102e8e8a4edc7daf0fd31b868 (diff)
downloademacs-0cf5bb509d801b8908a17ed8a0df620a6df7af15.tar.gz
emacs-0cf5bb509d801b8908a17ed8a0df620a6df7af15.zip
(f90-abbrev-start): Use `eq' instead of `='.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/f90.el2
1 files changed, 1 insertions, 1 deletions
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)