# HG changeset patch # User Tom Tromey # Date 932344615 0 # Node ID e26249ed0833631137fd6b3c18c0b4a45b6e103d # Parent b348f4132468051f35cbb99b67abfaa6abe28b8d (tcl-typeword-list): Added `variable'. diff -r b348f4132468 -r e26249ed0833 lisp/progmodes/tcl.el --- a/lisp/progmodes/tcl.el Mon Jul 19 00:35:36 1999 +0000 +++ b/lisp/progmodes/tcl.el Mon Jul 19 00:36:55 1999 +0000 @@ -6,7 +6,7 @@ ;; Author: Tom Tromey ;; Chris Lindblad ;; Keywords: languages tcl modes -;; Version: $Revision: 1.56 $ +;; Version: $Revision: 1.57 $ ;; This file is part of GNU Emacs. @@ -51,7 +51,7 @@ ;; LCD Archive Entry: ;; tcl|Tom Tromey|tromey@busco.lanl.gov| ;; Major mode for editing Tcl| -;; $Date: 1999/07/18 18:40:27 $|$Revision: 1.56 $|~/modes/tcl.el.Z| +;; $Date: 1999/07/19 00:35:36 $|$Revision: 1.57 $|~/modes/tcl.el.Z| ;; CUSTOMIZATION NOTES: ;; * tcl-proc-list can be used to customize a list of things that @@ -65,6 +65,9 @@ ;; Change log: ;; $Log: tcl.el,v $ +;; Revision 1.57 1999/07/19 00:35:36 tromey +;; (tcl-keyword-list): Added method, body, configbody, class +;; ;; Revision 1.56 1999/07/18 18:40:27 tromey ;; (tcl-mode): Set font-lock-defaults, not font-lock-keywords. ;; @@ -391,7 +394,7 @@ (require 'imenu)) ())) -(defconst tcl-version "$Revision: 1.56 $") +(defconst tcl-version "$Revision: 1.57 $") (defconst tcl-maintainer "Tom Tromey ") ;; @@ -685,7 +688,7 @@ (defvar tcl-typeword-list '("global" "upvar" "inherit" "public" "protected" "private" - "common" "itk_option") + "common" "itk_option" "variable") "List of Tcl keywords denoting \"type\". Used only for highlighting. Call `tcl-set-font-lock-keywords' after changing this list.")