aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2002-04-24 22:13:45 +0000
committerGlenn Morris2002-04-24 22:13:45 +0000
commit48548fd50f3dc3958fe73f62491f3843487263df (patch)
tree19cb89926a4e72f261843c63185a24b515ba4e87
parent6734e165bfd040282ed2882674ab26984e6aae25 (diff)
downloademacs-48548fd50f3dc3958fe73f62491f3843487263df.tar.gz
emacs-48548fd50f3dc3958fe73f62491f3843487263df.zip
(f90-startup-message): Obsolete variable removed.
-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 a70e4e759c7..2e9c20b4756 100644
--- a/lisp/progmodes/f90.el
+++ b/lisp/progmodes/f90.el
@@ -89,7 +89,6 @@
89;; f90-smart-end 'blink 89;; f90-smart-end 'blink
90;; f90-auto-keyword-case nil 90;; f90-auto-keyword-case nil
91;; f90-leave-line-no nil 91;; f90-leave-line-no nil
92;; f90-startup-message t
93;; indent-tabs-mode nil 92;; indent-tabs-mode nil
94;; f90-font-lock-keywords f90-font-lock-keywords-2 93;; f90-font-lock-keywords f90-font-lock-keywords-2
95;; ) 94;; )
@@ -230,11 +229,6 @@ whether to blink the matching beginning."
230 :type 'boolean 229 :type 'boolean
231 :group 'f90) 230 :group 'f90)
232 231
233(defcustom f90-startup-message t
234 "*Non-nil displays a startup message when F90 mode is first called."
235 :type 'boolean
236 :group 'f90)
237
238(defconst f90-keywords-re 232(defconst f90-keywords-re
239 (regexp-opt '("allocatable" "allocate" "assign" "assignment" "backspace" 233 (regexp-opt '("allocatable" "allocate" "assign" "assignment" "backspace"
240 "block" "call" "case" "character" "close" "common" "complex" 234 "block" "call" "case" "character" "close" "common" "complex"
@@ -793,8 +787,6 @@ Variables controlling indentation style and extra features:
793 The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word. 787 The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word.
794 f90-leave-line-no 788 f90-leave-line-no
795 Do not left-justify line numbers. (default nil) 789 Do not left-justify line numbers. (default nil)
796 f90-startup-message
797 Set to nil to inhibit message first time F90 mode is used. (default t)
798 f90-keywords-re 790 f90-keywords-re
799 List of keywords used for highlighting/upcase-keywords etc. 791 List of keywords used for highlighting/upcase-keywords etc.
800 792
@@ -848,8 +840,7 @@ with no args, if that value is non-nil."
848 (setq imenu-generic-expression f90-imenu-generic-expression) 840 (setq imenu-generic-expression f90-imenu-generic-expression)
849 (set (make-local-variable 'add-log-current-defun-function) 841 (set (make-local-variable 'add-log-current-defun-function)
850 #'f90-current-defun) 842 #'f90-current-defun)
851 (run-hooks 'f90-mode-hook) 843 (run-hooks 'f90-mode-hook))
852 (setq f90-startup-message nil))
853 844
854;; inline-functions 845;; inline-functions
855(defsubst f90-in-string () 846(defsubst f90-in-string ()