aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 c7a175241d5..fcc9db1c3ef 100644
--- a/lisp/progmodes/fortran.el
+++ b/lisp/progmodes/fortran.el
@@ -385,8 +385,8 @@ program\\|subroutine\\)\\>[ \t]*\\(\\sw+\\)?"
385 "dabs" "cabs" "mod" "amod" "dmod" "isign" 385 "dabs" "cabs" "mod" "amod" "dmod" "isign"
386 "sign" "dsign" "idim" "dim" "ddim" "dprod" 386 "sign" "dsign" "idim" "dim" "ddim" "dprod"
387 "max" "max0" "amax1" "dmax1" "amax0" "max1" 387 "max" "max0" "amax1" "dmax1" "amax0" "max1"
388 "min0" "amin1" "dmin1" "amin0" "min1" "len" 388 "min" "min0" "amin1" "dmin1" "amin0" "min1"
389 "index" "lge" "lgt" "lle" "llt" "aimag" 389 "len" "index" "lge" "lgt" "lle" "llt" "aimag"
390 "conjg" "sqrt" "dsqrt" "csqrt" "exp" "dexp" 390 "conjg" "sqrt" "dsqrt" "csqrt" "exp" "dexp"
391 "cexp" "log" "alog" "dlog" "clog" "log10" 391 "cexp" "log" "alog" "dlog" "clog" "log10"
392 "alog10" "dlog10" "sin" "dsin" "csin" "cos" 392 "alog10" "dlog10" "sin" "dsin" "csin" "cos"
@@ -968,7 +968,7 @@ See also `fortran-window-create'."
968 (error (error "No room for Fortran window"))) 968 (error (error "No room for Fortran window")))
969 (message "Type SPC to continue editing.") 969 (message "Type SPC to continue editing.")
970 (let ((char (read-event))) 970 (let ((char (read-event)))
971 (or (equal char (string-to-char " ")) 971 (or (equal char ?\s)
972 (setq unread-command-events (list char)))))) 972 (setq unread-command-events (list char))))))
973 (fortran-window-create))) 973 (fortran-window-create)))
974 974