diff options
| author | Richard M. Stallman | 1996-05-11 00:29:46 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-05-11 00:29:46 +0000 |
| commit | f885e95c761af1f4aee365b9ef2cadef14e6c830 (patch) | |
| tree | 465fcf3033fdaac1f1aa9f5104a2b308f18f91a3 | |
| parent | 4ba07e8852faae3f4c7dd52c96e4ae10b01953ce (diff) | |
| download | emacs-f885e95c761af1f4aee365b9ef2cadef14e6c830.tar.gz emacs-f885e95c761af1f4aee365b9ef2cadef14e6c830.zip | |
(f90-hilit-patterns): Avoid using undefined variables.
| -rw-r--r-- | lisp/progmodes/f90.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/progmodes/f90.el b/lisp/progmodes/f90.el index 349dafb95eb..e1fa2403961 100644 --- a/lisp/progmodes/f90.el +++ b/lisp/progmodes/f90.el | |||
| @@ -514,15 +514,15 @@ whether to blink the matching beginning.") | |||
| 514 | (list "\\<\\(exit\\|cycle\\)[ \t]*\\sw+\\>" nil f90-face-label) | 514 | (list "\\<\\(exit\\|cycle\\)[ \t]*\\sw+\\>" nil f90-face-label) |
| 515 | (list "\\<\\(stop\\|return\\)\\>" nil f90-face-stop) | 515 | (list "\\<\\(stop\\|return\\)\\>" nil f90-face-stop) |
| 516 | (list "^[ \t]*\\(case\\)[ \t]*\\((\\|default\\)" 1 f90-face-select) | 516 | (list "^[ \t]*\\(case\\)[ \t]*\\((\\|default\\)" 1 f90-face-select) |
| 517 | (list (concat "\\<\\("(mapconcat 'identity f90-keywords "\\|") | 517 | (list (concat "\\<\\("(mapconcat 'identity f90-keywords-re "\\|") |
| 518 | "\\)\\>") nil f90-face-keyword) | 518 | "\\)\\>") nil f90-face-keyword) |
| 519 | (list (concat "\\<\\("(mapconcat 'identity f90-intrinsic-procedures "\\|") | 519 | (list (concat "\\<\\("(mapconcat 'identity f90-procedures-re "\\|") |
| 520 | "\\)\\>") nil f90-face-intrinsics) | 520 | "\\)\\>") nil f90-face-intrinsics) |
| 521 | (list (concat "\\<\\("(mapconcat 'identity f90-hpf-procedures "\\|") | 521 | ;;; (list (concat "\\<\\("(mapconcat 'identity f90-hpf-procedures "\\|") |
| 522 | "\\)\\>") nil f90-face-hpf-procedures) | 522 | ;;; "\\)\\>") nil f90-face-hpf-procedures) |
| 523 | (list (concat "\\<\\("(mapconcat 'identity f90-hpf-directives "\\|") | 523 | ;;; (list (concat "\\<\\("(mapconcat 'identity f90-hpf-directives "\\|") |
| 524 | "\\)\\>") nil f90-face-hpf-directives) | 524 | ;;; "\\)\\>") nil f90-face-hpf-directives) |
| 525 | (list (concat "\\<\\("(mapconcat 'identity f90-hpf-keywords "\\|") | 525 | (list (concat "\\<\\("(mapconcat 'identity f90-hpf-keywords-re "\\|") |
| 526 | "\\)\\>") nil f90-face-hpf-keywords))) | 526 | "\\)\\>") nil f90-face-hpf-keywords))) |
| 527 | 527 | ||
| 528 | ;; syntax table | 528 | ;; syntax table |
| @@ -804,7 +804,7 @@ Variables controlling indentation style and extra features: | |||
| 804 | Do not left-justify line numbers. (default nil) | 804 | Do not left-justify line numbers. (default nil) |
| 805 | f90-startup-message | 805 | f90-startup-message |
| 806 | Set to nil to inhibit message first time F90 mode is used. (default t) | 806 | Set to nil to inhibit message first time F90 mode is used. (default t) |
| 807 | f90-keywords | 807 | f90-keywords-re |
| 808 | List of keywords used for highlighting/upcase-keywords etc. | 808 | List of keywords used for highlighting/upcase-keywords etc. |
| 809 | 809 | ||
| 810 | Turning on F90 mode calls the value of the variable `f90-mode-hook' | 810 | Turning on F90 mode calls the value of the variable `f90-mode-hook' |