aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2002-04-24 22:13:45 +0000
committerGlenn Morris <[email protected]>2002-04-24 22:13:45 +0000
commit48548fd50f3dc3958fe73f62491f3843487263df (patch)
tree19cb89926a4e72f261843c63185a24b515ba4e87 /lisp/progmodes
parent6734e165bfd040282ed2882674ab26984e6aae25 (diff)
(f90-startup-message): Obsolete variable removed.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/f90.el11
1 files changed, 1 insertions, 10 deletions
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el
index a70e4e759c..2e9c20b475 100644
--- a/lisp/progmodes/f90.el
+++ b/lisp/progmodes/f90.el
@@ -89,7 +89,6 @@
;; f90-smart-end 'blink
;; f90-auto-keyword-case nil
;; f90-leave-line-no nil
-;; f90-startup-message t
;; indent-tabs-mode nil
;; f90-font-lock-keywords f90-font-lock-keywords-2
;; )
@@ -230,11 +229,6 @@ whether to blink the matching beginning."
:type 'boolean
:group 'f90)
-(defcustom f90-startup-message t
- "*Non-nil displays a startup message when F90 mode is first called."
- :type 'boolean
- :group 'f90)
-
(defconst f90-keywords-re
(regexp-opt '("allocatable" "allocate" "assign" "assignment" "backspace"
"block" "call" "case" "character" "close" "common" "complex"
@@ -793,8 +787,6 @@ Variables controlling indentation style and extra features:
The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word.
f90-leave-line-no
Do not left-justify line numbers. (default nil)
- f90-startup-message
- Set to nil to inhibit message first time F90 mode is used. (default t)
f90-keywords-re
List of keywords used for highlighting/upcase-keywords etc.
@@ -848,8 +840,7 @@ with no args, if that value is non-nil."
(setq imenu-generic-expression f90-imenu-generic-expression)
(set (make-local-variable 'add-log-current-defun-function)
#'f90-current-defun)
- (run-hooks 'f90-mode-hook)
- (setq f90-startup-message nil))
+ (run-hooks 'f90-mode-hook))
;; inline-functions
(defsubst f90-in-string ()