diff options
| author | Tom Tromey | 1999-07-19 00:36:55 +0000 |
|---|---|---|
| committer | Tom Tromey | 1999-07-19 00:36:55 +0000 |
| commit | 5bc0f801f1518870b305807a7ca9980bb293c2de (patch) | |
| tree | 64e21232aa65c9cd9d92278e1a6346f6689a5a50 | |
| parent | 7a366a316f195dfb0d2312bf8d1781044f16bcc8 (diff) | |
| download | emacs-5bc0f801f1518870b305807a7ca9980bb293c2de.tar.gz emacs-5bc0f801f1518870b305807a7ca9980bb293c2de.zip | |
(tcl-typeword-list): Added `variable'.
| -rw-r--r-- | lisp/progmodes/tcl.el | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/progmodes/tcl.el b/lisp/progmodes/tcl.el index b65f92ba179..70fb6012575 100644 --- a/lisp/progmodes/tcl.el +++ b/lisp/progmodes/tcl.el | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | ;; Author: Tom Tromey <tromey@busco.lanl.gov> | 6 | ;; Author: Tom Tromey <tromey@busco.lanl.gov> |
| 7 | ;; Chris Lindblad <cjl@lcs.mit.edu> | 7 | ;; Chris Lindblad <cjl@lcs.mit.edu> |
| 8 | ;; Keywords: languages tcl modes | 8 | ;; Keywords: languages tcl modes |
| 9 | ;; Version: $Revision: 1.56 $ | 9 | ;; Version: $Revision: 1.57 $ |
| 10 | 10 | ||
| 11 | ;; This file is part of GNU Emacs. | 11 | ;; This file is part of GNU Emacs. |
| 12 | 12 | ||
| @@ -51,7 +51,7 @@ | |||
| 51 | ;; LCD Archive Entry: | 51 | ;; LCD Archive Entry: |
| 52 | ;; tcl|Tom Tromey|tromey@busco.lanl.gov| | 52 | ;; tcl|Tom Tromey|tromey@busco.lanl.gov| |
| 53 | ;; Major mode for editing Tcl| | 53 | ;; Major mode for editing Tcl| |
| 54 | ;; $Date: 1999/07/18 18:40:27 $|$Revision: 1.56 $|~/modes/tcl.el.Z| | 54 | ;; $Date: 1999/07/19 00:35:36 $|$Revision: 1.57 $|~/modes/tcl.el.Z| |
| 55 | 55 | ||
| 56 | ;; CUSTOMIZATION NOTES: | 56 | ;; CUSTOMIZATION NOTES: |
| 57 | ;; * tcl-proc-list can be used to customize a list of things that | 57 | ;; * tcl-proc-list can be used to customize a list of things that |
| @@ -65,6 +65,9 @@ | |||
| 65 | 65 | ||
| 66 | ;; Change log: | 66 | ;; Change log: |
| 67 | ;; $Log: tcl.el,v $ | 67 | ;; $Log: tcl.el,v $ |
| 68 | ;; Revision 1.57 1999/07/19 00:35:36 tromey | ||
| 69 | ;; (tcl-keyword-list): Added method, body, configbody, class | ||
| 70 | ;; | ||
| 68 | ;; Revision 1.56 1999/07/18 18:40:27 tromey | 71 | ;; Revision 1.56 1999/07/18 18:40:27 tromey |
| 69 | ;; (tcl-mode): Set font-lock-defaults, not font-lock-keywords. | 72 | ;; (tcl-mode): Set font-lock-defaults, not font-lock-keywords. |
| 70 | ;; | 73 | ;; |
| @@ -391,7 +394,7 @@ | |||
| 391 | (require 'imenu)) | 394 | (require 'imenu)) |
| 392 | ())) | 395 | ())) |
| 393 | 396 | ||
| 394 | (defconst tcl-version "$Revision: 1.56 $") | 397 | (defconst tcl-version "$Revision: 1.57 $") |
| 395 | (defconst tcl-maintainer "Tom Tromey <tromey@drip.colorado.edu>") | 398 | (defconst tcl-maintainer "Tom Tromey <tromey@drip.colorado.edu>") |
| 396 | 399 | ||
| 397 | ;; | 400 | ;; |
| @@ -685,7 +688,7 @@ after changing this list.") | |||
| 685 | 688 | ||
| 686 | (defvar tcl-typeword-list | 689 | (defvar tcl-typeword-list |
| 687 | '("global" "upvar" "inherit" "public" "protected" "private" | 690 | '("global" "upvar" "inherit" "public" "protected" "private" |
| 688 | "common" "itk_option") | 691 | "common" "itk_option" "variable") |
| 689 | "List of Tcl keywords denoting \"type\". Used only for highlighting. | 692 | "List of Tcl keywords denoting \"type\". Used only for highlighting. |
| 690 | Call `tcl-set-font-lock-keywords' after changing this list.") | 693 | Call `tcl-set-font-lock-keywords' after changing this list.") |
| 691 | 694 | ||