aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/fortran.el
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2006-11-28 03:45:39 +0000
committerGlenn Morris <[email protected]>2006-11-28 03:45:39 +0000
commit742695df24073bb499eba2aad2a5aac736eeceaa (patch)
tree0fbfcba7f810b6d61351e73cc5ccd1a601e3570d /lisp/progmodes/fortran.el
parentbf897a90de2888f28e73c9b2fa6ed1fe9af4dc63 (diff)
(fortran-font-lock-keywords-4): Add `min'.
(fortran-window-create-momentarily): Do not need string-to-char.
Diffstat (limited to 'lisp/progmodes/fortran.el')
-rw-r--r--lisp/progmodes/fortran.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el
index c7a175241d..fcc9db1c3e 100644
--- a/lisp/progmodes/fortran.el
+++ b/lisp/progmodes/fortran.el
@@ -385,8 +385,8 @@ program\\|subroutine\\)\\>[ \t]*\\(\\sw+\\)?"
"dabs" "cabs" "mod" "amod" "dmod" "isign"
"sign" "dsign" "idim" "dim" "ddim" "dprod"
"max" "max0" "amax1" "dmax1" "amax0" "max1"
- "min0" "amin1" "dmin1" "amin0" "min1" "len"
- "index" "lge" "lgt" "lle" "llt" "aimag"
+ "min" "min0" "amin1" "dmin1" "amin0" "min1"
+ "len" "index" "lge" "lgt" "lle" "llt" "aimag"
"conjg" "sqrt" "dsqrt" "csqrt" "exp" "dexp"
"cexp" "log" "alog" "dlog" "clog" "log10"
"alog10" "dlog10" "sin" "dsin" "csin" "cos"
@@ -968,7 +968,7 @@ See also `fortran-window-create'."
(error (error "No room for Fortran window")))
(message "Type SPC to continue editing.")
(let ((char (read-event)))
- (or (equal char (string-to-char " "))
+ (or (equal char ?\s)
(setq unread-command-events (list char))))))
(fortran-window-create)))