(tcl-hilit): New function from "Chris Alfeld" <calfeld@math.utah.edu>
[emacs.git] / lisp / progmodes / tcl.el
blobb0416ad8eee1f7414102848e36f9e0e8392a0193
1 ;; tcl.el --- Tcl code editing commands for Emacs
3 ;; Copyright (C) 1994 Free Software Foundation, Inc.
5 ;; Maintainer: Tom Tromey <tromey@busco.lanl.gov>
6 ;; Author: Tom Tromey <tromey@busco.lanl.gov>
7 ;; Chris Lindblad <cjl@lcs.mit.edu>
8 ;; Keywords: languages tcl modes
9 ;; Version: $Revision: 1.46 $
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 1, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to
25 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27 ;; HOW TO INSTALL:
28 ;; Put the following forms in your .emacs to enable autoloading of Tcl
29 ;; mode, and auto-recognition of ".tcl" files.
31 ;; (autoload 'tcl-mode "tcl" "Tcl mode." t)
32 ;; (autoload 'inferior-tcl "tcl" "Run inferior Tcl process." t)
33 ;; (setq auto-mode-alist (append '(("\\.tcl$" . tcl-mode)) auto-mode-alist))
35 ;; If you plan to use the interface to the TclX help files, you must
36 ;; set the variable tcl-help-directory-list to point to the topmost
37 ;; directories containing the TclX help files. Eg:
39 ;; (setq tcl-help-directory-list '("/usr/local/lib/tclx/help"))
41 ;; Also you will want to add the following to your .emacs:
43 ;; (autoload 'tcl-help-on-word "tcl" "Help on Tcl commands" t)
45 ;; FYI a *very* useful thing to do is nroff all the Tk man pages and
46 ;; put them in a subdir of the help system.
49 ;;; Commentary:
51 ;; LCD Archive Entry:
52 ;; tcl|Tom Tromey|tromey@busco.lanl.gov|
53 ;; Major mode for editing Tcl|
54 ;; $Date: 1995/08/07 16:02:01 $|$Revision: 1.46 $|~/modes/tcl.el.Z|
56 ;; CUSTOMIZATION NOTES:
57 ;; * tcl-proc-list can be used to customize a list of things that
58 ;; "define" other things. Eg in my project I put "defvar" in this
59 ;; list.
60 ;; * tcl-typeword-list is similar, but uses font-lock-type-face.
61 ;; * tcl-keyword-list is a list of keywords. I've generally used this
62 ;; for flow-control words. Eg I add "unwind_protect" to this list.
63 ;; * tcl-type-alist can be used to minimally customize indentation
64 ;; according to context.
66 ;; Change log:
67 ;; $Log: tcl.el,v $
68 ;; Revision 1.46 1995/08/07 16:02:01 tromey
69 ;; (tcl-do-auto-fill): Only fill past fill-column; for 19.29.
70 ;; (tcl-auto-fill-mode): Use force-mode-line-update.
72 ;; Revision 1.45 1995/07/23 23:51:25 tromey
73 ;; (tcl-word-no-props): New function.
74 ;; (tcl-figure-type): Use it.
75 ;; (tcl-current-word): Ditto.
77 ;; Revision 1.44 1995/07/23 20:26:47 tromey
78 ;; Doc fixes.
80 ;; Revision 1.43 1995/07/17 19:59:49 tromey
81 ;; (inferior-tcl-mode): Use modeline-process if it exists.
83 ;; Revision 1.42 1995/07/17 19:55:25 tromey
84 ;; XEmacs currently must use tcl-internal-end-of-defun
86 ;; Revision 1.41 1995/07/14 21:54:56 tromey
87 ;; Changes to make menus work in XEmacs.
88 ;; From Mike Scheidler <c23mts@kocrsv01.delcoelect.com>
90 ;; Revision 1.40 1995/07/11 03:13:15 tromey
91 ;; (tcl-mode): Customize for new dabbrev.
93 ;; Revision 1.39 1995/07/09 21:58:03 tromey
94 ;; (tcl-do-fill-paragraph): New function.
95 ;; (tcl-mode): Set up for paragraph filling.
97 ;; Revision 1.38 1995/07/09 21:30:32 tromey
98 ;; (tcl-mode): Fixes to 19.29 paragraph variables.
100 ;; Revision 1.37 1995/07/09 18:52:16 tromey
101 ;; (tcl-do-auto-fill): Set fill-prefix.
103 ;; Revision 1.36 1995/07/09 01:07:57 tromey
104 ;; (tcl-imenu-create-index-function): Work with imenu from Emacs 19.29
106 ;; Revision 1.35 1995/06/27 20:12:00 tromey
107 ;; (tcl-type-alist): More itcl changes.
109 ;; Revision 1.34 1995/06/27 20:06:05 tromey
110 ;; More changes for itcl.
111 ;; Bug fixes for Emacs 19.29.
113 ;; Revision 1.33 1995/06/27 20:01:29 tromey
114 ;; (tcl-set-proc-regexp): Allow leading spaces.
115 ;; (tcl-proc-list): Changes for itcl.
116 ;; (tcl-typeword-list): Ditto.
117 ;; (tcl-keyword-list): Ditto.
119 ;; Revision 1.32 1995/05/11 22:12:49 tromey
120 ;; (tcl-type-alist): Include entry for "proc".
122 ;; Revision 1.31 1995/05/10 23:38:12 tromey
123 ;; (tcl-add-fsf-menu): Use make-lucid-menu-keymap, not
124 ;; "make-xemacs-menu-keymap".
126 ;; Revision 1.30 1995/05/10 18:22:21 tromey
127 ;; Bug fix in menu code for XEmacs.
129 ;; Revision 1.29 1995/05/09 21:36:53 tromey
130 ;; Changed "Lucid Emacs" to "XEmacs".
131 ;; Tcl's popup menu now added to existing one, courtesy
132 ;; dfarmer@evolving.com (Doug Farmer)
134 ;; Revision 1.28 1995/04/08 19:52:50 tromey
135 ;; (tcl-outline-level): New function
136 ;; (tcl-mode): Added outline-handling stuff.
137 ;; From Jesper Pedersen <blackie@imada.ou.dk>
139 ;; Revision 1.27 1994/10/11 02:01:27 tromey
140 ;; (tcl-mode): imenu-create-index-function made buffer local.
142 ;; Revision 1.26 1994/09/01 18:06:24 tromey
143 ;; Added filename completion in inferior tcl mode
145 ;; Revision 1.25 1994/08/22 15:56:24 tromey
146 ;; tcl-load-file default to current buffer.
148 ;; Revision 1.24 1994/08/21 20:33:05 tromey
149 ;; Fixed bug in tcl-guess-application.
151 ;; Revision 1.23 1994/08/21 03:54:45 tromey
152 ;; Keybindings don't overshadown comint bindings.
154 ;; Revision 1.22 1994/07/26 00:46:07 tromey
155 ;; Emacs 18 changes from Carl Witty.
157 ;; Revision 1.21 1994/07/14 22:49:21 tromey
158 ;; Added ";;;###autoload" comments where appropriate.
160 ; Revision 1.20 1994/06/05 16:57:22 tromey
161 ; tcl-current-word does the right thing in inferior-tcl-mode.
163 ; Revision 1.19 1994/06/03 21:09:19 tromey
164 ; Another menu fix.
166 ; Revision 1.18 1994/06/03 20:39:14 tromey
167 ; Fixed menu bug.
169 ; Revision 1.17 1994/06/03 00:47:15 tromey
170 ; Fixed bug in bug-reporting code.
172 ; Revision 1.16 1994/05/26 05:06:14 tromey
173 ; Menu items now sensitive as appropriate.
175 ; Revision 1.15 1994/05/22 20:38:11 tromey
176 ; Added bug-report keybindings and menu entries.
178 ; Revision 1.14 1994/05/22 20:18:28 tromey
179 ; Even more compile stuff.
181 ; Revision 1.13 1994/05/22 20:17:15 tromey
182 ; Moved emacs version checking code to very beginning.
184 ; Revision 1.12 1994/05/22 20:14:59 tromey
185 ; Compile fixes.
187 ; Revision 1.11 1994/05/22 20:12:44 tromey
188 ; Fixed mark-defun for 19.23.
189 ; More menu fixes.
191 ; Revision 1.10 1994/05/22 20:02:03 tromey
192 ; Fixed bug with M-;.
193 ; Wrote bug-reporting code.
195 ; Revision 1.9 1994/05/22 05:26:51 tromey
196 ; Fixes for imenu.
198 ; Revision 1.8 1994/05/22 03:38:07 tromey
199 ; Fixed menu support.
201 ; Revision 1.7 1994/05/03 01:23:42 tromey
202 ; *** empty log message ***
204 ; Revision 1.6 1994/04/23 16:23:36 tromey
205 ; Wrote tcl-indent-for-comment
208 ;; 18-Mar-1994 Tom Tromey Fourth beta release.
209 ;; Added {un,}comment-region to menu. Idea from
210 ;; Mike Scheidler <c23mts@kocrsv01.delcoelect.com>
211 ;; 17-Mar-1994 Tom Tromey
212 ;; Fixed tcl-restart-with-file. Bug fix attempt in
213 ;; tcl-internal-end-of-defun.
214 ;; 16-Mar-1994 Tom Tromey Third beta release
215 ;; Added support code for menu (from Tcl mode written by
216 ;; schmid@fb3-s7.math.TU-Berlin.DE (Gregor Schmid)).
217 ;; 12-Mar-1994 Tom Tromey
218 ;; Better documentation for inferior-tcl-buffer. Wrote
219 ;; tcl-restart-with-file. Wrote Lucid Emacs menu (but no
220 ;; code to install it).
221 ;; 12-Mar-1994 Tom Tromey
222 ;; Wrote tcl-guess-application. Another stab at making
223 ;; tcl-omit-ws-regexp work.
224 ;; 10-Mar-1994 Tom Tromey Second beta release
225 ;; Last Modified: Thu Mar 10 01:24:25 1994 (Tom Tromey)
226 ;; Wrote perl-mode style line indentation command.
227 ;; Wrote more documentation. Added tcl-continued-indent-level.
228 ;; Integrated help code.
229 ;; 8-Mar-1994 Tom Tromey
230 ;; Last Modified: Tue Mar 8 11:58:44 1994 (Tom Tromey)
231 ;; Bug fixes.
232 ;; 6-Mar-1994 Tom Tromey
233 ;; Last Modified: Sun Mar 6 18:55:41 1994 (Tom Tromey)
234 ;; Updated auto-newline support.
235 ;; 6-Mar-1994 Tom Tromey Beta release
236 ;; Last Modified: Sat Mar 5 17:24:32 1994 (Tom Tromey)
237 ;; Wrote tcl-hashify-buffer. Other minor bug fixes.
238 ;; 5-Mar-1994 Tom Tromey
239 ;; Last Modified: Sat Mar 5 16:11:20 1994 (Tom Tromey)
240 ;; Wrote electric-hash code.
241 ;; 3-Mar-1994 Tom Tromey
242 ;; Last Modified: Thu Mar 3 02:53:40 1994 (Tom Tromey)
243 ;; Added code to handle auto-fill in comments.
244 ;; Added imenu support code.
245 ;; Cleaned up code.
246 ;; Better font-lock support.
247 ;; 28-Feb-1994 Tom Tromey
248 ;; Last Modified: Mon Feb 28 14:08:05 1994 (Tom Tromey)
249 ;; Made tcl-figure-type more easily configurable.
250 ;; 28-Feb-1994 Tom Tromey
251 ;; Last Modified: Mon Feb 28 01:02:58 1994 (Tom Tromey)
252 ;; Wrote inferior-tcl mode.
253 ;; 16-Feb-1994 Tom Tromey
254 ;; Last Modified: Wed Feb 16 17:05:19 1994 (Tom Tromey)
255 ;; Added support for font-lock-mode.
256 ;; 29-Oct-1993 Tom Tromey
257 ;; Last Modified: Sun Oct 24 17:39:14 1993 (Tom Tromey)
258 ;; Patches from Guido Bosch to make things work with Lucid Emacs.
259 ;; 22-Oct-1993 Tom Tromey
260 ;; Last Modified: Fri Oct 22 15:26:46 1993 (Tom Tromey)
261 ;; Made many characters have "_" syntax class; suggested by Guido
262 ;; Bosch <Guido.Bosch@loria.fr>. Note that this includes the "$"
263 ;; character, which might be a change you'd notice.
264 ;; 21-Oct-1993 Tom Tromey
265 ;; Last Modified: Thu Oct 21 20:28:40 1993 (Tom Tromey)
266 ;; More fixes for tcl-omit-ws-regexp.
267 ;; 20-Oct-1993 Tom Tromey
268 ;; Started keeping history. Fixed tcl-{beginning,end}-of-defun.
269 ;; Added some code to make things work with Emacs 18.
271 ;; THANKS TO:
272 ;; Guido Bosch <Guido.Bosch@loria.fr>
273 ;; pgs1002@esc.cam.ac.uk (Dr P.G. Sjoerdsma)
274 ;; Mike Scheidler <c23mts@kocrsv01.delcoelect.com>
275 ;; Matt Newman <men@charney.colorado.edu>
276 ;; rwhitby@research.canon.oz.au (Rod Whitby)
277 ;; h9118101@hkuxa.hku.hk (Yip Chi Lap [Beta])
278 ;; Pertti Tapio Kasanen <ptk@delta.hut.fi>
279 ;; schmid@fb3-s7.math.TU-Berlin.DE (Gregor Schmid)
280 ;; warsaw@nlm.nih.gov (Barry A. Warsaw)
281 ;; Carl Witty <cwitty@ai.mit.edu>
282 ;; T. V. Raman <raman@crl.dec.com>
283 ;; Jesper Pedersen <blackie@imada.ou.dk>
284 ;; dfarmer@evolving.com (Doug Farmer)
285 ;; "Chris Alfeld" <calfeld@math.utah.edu>
287 ;; KNOWN BUGS:
288 ;; * indent-region should skip blank lines. (It does in v19, so I'm
289 ;; not motivated to fix it here).
290 ;; * In Tcl "#" is not always a comment character. This can confuse
291 ;; tcl.el in certain circumstances. For now the only workaround is
292 ;; to enclose offending hash characters in quotes or precede it with
293 ;; a backslash. Note that using braces won't work -- quotes change
294 ;; the syntax class of characters between them, while braces do not.
295 ;; The electric-# mode helps alleviate this problem somewhat.
296 ;; * indent-tcl-exp is untested.
297 ;; * Doesn't work under Emacs 18 yet.
298 ;; * There's been a report that font-lock does strange things under
299 ;; Lucid Emacs 19.6. For instance in "proc foobar", the space
300 ;; before "foobar" is highlighted.
302 ;; TODO:
303 ;; * make add-log-tcl-defun smarter. should notice if we are in the
304 ;; middle of a defun, or between defuns. should notice if point is
305 ;; on first line of defun (or maybe even in comments before defun).
306 ;; * Allow continuation lines to be indented under the first argument
307 ;; of the preceeding line, like this:
308 ;; [list something \
309 ;; something-else]
310 ;; * There is a request that indentation work like this:
311 ;; button .fred -label Fred \
312 ;; -command {puts fred}
313 ;; * Should have tcl-complete-symbol that queries the inferior process.
314 ;; * Should have describe-symbol that works by sending the magic
315 ;; command to a tclX process.
316 ;; * Need C-x C-e binding (tcl-eval-last-exp).
317 ;; * Write indent-region function that is faster than indenting each
318 ;; line individually.
319 ;; * tcl-figure-type should stop at "beginning of line" (only ws
320 ;; before point, and no "\" on previous line). (see tcl-real-command-p).
321 ;; * overrides some comint keybindings; fix.
322 ;; * Trailing \ will eat blank lines. Should deal with this.
323 ;; (this would help catch some potential bugs).
324 ;; * Inferior should display in half the screen, not the whole screen.
325 ;; * Indentation should deal with "switch".
326 ;; * Consider writing code to find help files automatically (for
327 ;; common cases).
328 ;; * `#' shouldn't insert `\#' when point is in string.
332 ;;; Code:
334 ;; I sure wish Emacs had a package that made it easy to extract this
335 ;; sort of information.
336 (defconst tcl-using-emacs-19 (string-match "19\\." emacs-version)
337 "Nil unless using Emacs 19 (XEmacs or FSF).")
339 ;; FIXME this will break on Emacs 19.100.
340 (defconst tcl-using-emacs-19-23
341 (string-match "19\\.\\(2[3-9]\\|[3-9][0-9]\\)" emacs-version)
342 "Nil unless using Emacs 19-23 or later.")
344 (defconst tcl-using-xemacs-19 (string-match "XEmacs" emacs-version)
345 "Nil unless using XEmacs).")
347 (require 'comint)
349 ;; When compiling under GNU Emacs, load imenu during compilation. If
350 ;; you have 19.22 or earlier, comment this out, or get imenu.
351 (and (fboundp 'eval-when-compile)
352 (eval-when-compile
353 (if (and (string-match "19\\." emacs-version)
354 (not (string-match "XEmacs" emacs-version)))
355 (require 'imenu))
356 ()))
358 (defconst tcl-version "$Revision: 1.46 $")
359 (defconst tcl-maintainer "Tom Tromey <tromey@drip.colorado.edu>")
362 ;; User variables.
365 (defvar tcl-indent-level 4
366 "*Indentation of Tcl statements with respect to containing block.")
368 (defvar tcl-continued-indent-level 4
369 "*Indentation of continuation line relative to first line of command.")
371 (defvar tcl-auto-newline nil
372 "*Non-nil means automatically newline before and after braces
373 inserted in Tcl code.")
375 (defvar tcl-tab-always-indent t
376 "*Control effect of TAB key.
377 If t (the default), always indent current line.
378 If nil and point is not in the indentation area at the beginning of
379 the line, a TAB is inserted.
380 Other values cause the first possible action from the following list
381 to take place:
383 1. Move from beginning of line to correct indentation.
384 2. Delete an empty comment.
385 3. Move forward to start of comment, indenting if necessary.
386 4. Move forward to end of line, indenting if necessary.
387 5. Create an empty comment.
388 6. Move backward to start of comment, indenting if necessary.")
390 (defvar tcl-use-hairy-comment-detector t
391 "*If not `nil', the the more complicated, but slower, comment
392 detecting function is used. This variable is only used in GNU Emacs
393 19 (the fast function is always used elsewhere).")
395 (defvar tcl-electric-hash-style 'smart
396 "*Style of electric hash insertion to use.
397 Possible values are 'backslash, meaning that `\\' quoting should be
398 done; 'quote, meaning that `\"' quoting should be done; 'smart,
399 meaning that the choice between 'backslash and 'quote should be
400 made depending on the number of hashes inserted; or nil, meaning that
401 no quoting should be done. Any other value for this variable is
402 taken to mean 'smart. The default is 'smart.")
404 (defvar tcl-help-directory-list nil
405 "*List of topmost directories containing TclX help files")
407 (defvar tcl-use-smart-word-finder t
408 "*If not nil, use a better way of finding the current word when
409 looking up help on a Tcl command.")
411 (defvar tcl-application "wish"
412 "*Name of Tcl application to run in inferior Tcl mode.")
414 (defvar tcl-command-switches nil
415 "*Switches to supply to `tcl-application'.")
417 (defvar tcl-prompt-regexp "^\\(% \\|\\)"
418 "*If not nil, a regexp that will match the prompt in the inferior process.
419 If nil, the prompt is the name of the application with \">\" appended.
421 The default is \"^\\(% \\|\\)\", which will match the default primary
422 and secondary prompts for tclsh and wish.")
424 (defvar inferior-tcl-source-command "source %s\n"
425 "*Format-string for building a Tcl command to load a file.
426 This format string should use `%s' to substitute a file name
427 and should result in a Tcl expression that will command the
428 inferior Tcl to load that file. The filename will be appropriately
429 quoted for Tcl.")
432 ;; Keymaps, abbrevs, syntax tables.
435 (defvar tcl-mode-abbrev-table nil
436 "Abbrev table in use in Tcl-mode buffers.")
437 (if tcl-mode-abbrev-table
439 (define-abbrev-table 'tcl-mode-abbrev-table ()))
441 (defvar tcl-mode-map ()
442 "Keymap used in Tcl mode.")
444 (defvar tcl-mode-syntax-table nil
445 "Syntax table in use in Tcl-mode buffers.")
446 (if tcl-mode-syntax-table
448 (setq tcl-mode-syntax-table (make-syntax-table))
449 (modify-syntax-entry ?% "_" tcl-mode-syntax-table)
450 (modify-syntax-entry ?@ "_" tcl-mode-syntax-table)
451 (modify-syntax-entry ?& "_" tcl-mode-syntax-table)
452 (modify-syntax-entry ?* "_" tcl-mode-syntax-table)
453 (modify-syntax-entry ?+ "_" tcl-mode-syntax-table)
454 (modify-syntax-entry ?- "_" tcl-mode-syntax-table)
455 (modify-syntax-entry ?. "_" tcl-mode-syntax-table)
456 (modify-syntax-entry ?: "_" tcl-mode-syntax-table)
457 (modify-syntax-entry ?! "_" tcl-mode-syntax-table)
458 (modify-syntax-entry ?$ "_" tcl-mode-syntax-table) ; FIXME use "'"?
459 (modify-syntax-entry ?/ "_" tcl-mode-syntax-table)
460 (modify-syntax-entry ?~ "_" tcl-mode-syntax-table)
461 (modify-syntax-entry ?< "_" tcl-mode-syntax-table)
462 (modify-syntax-entry ?= "_" tcl-mode-syntax-table)
463 (modify-syntax-entry ?> "_" tcl-mode-syntax-table)
464 (modify-syntax-entry ?| "_" tcl-mode-syntax-table)
465 (modify-syntax-entry ?\( "()" tcl-mode-syntax-table)
466 (modify-syntax-entry ?\) ")(" tcl-mode-syntax-table)
467 (modify-syntax-entry ?\; "." tcl-mode-syntax-table)
468 (modify-syntax-entry ?\n "> " tcl-mode-syntax-table)
469 (modify-syntax-entry ?\f "> " tcl-mode-syntax-table)
470 (modify-syntax-entry ?# "< " tcl-mode-syntax-table))
472 (defvar inferior-tcl-mode-map nil
473 "Keymap used in Inferior Tcl mode.")
475 ;; XEmacs menu.
476 (defvar tcl-xemacs-menu
477 '(["Beginning of function" tcl-beginning-of-defun t]
478 ["End of function" tcl-end-of-defun t]
479 ["Mark function" tcl-mark-defun t]
480 ["Indent region" indent-region (tcl-mark)]
481 ["Comment region" comment-region (tcl-mark)]
482 ["Uncomment region" tcl-uncomment-region (tcl-mark)]
483 "----"
484 ["Show Tcl process buffer" inferior-tcl t]
485 ["Send function to Tcl process" tcl-eval-defun
486 (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))]
487 ["Send region to Tcl process" tcl-eval-region
488 (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))]
489 ["Send file to Tcl process" tcl-load-file
490 (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))]
491 ["Restart Tcl process with file" tcl-restart-with-file t]
492 "----"
493 ["Tcl help" tcl-help-on-word tcl-help-directory-list]
494 ["Send bug report" tcl-submit-bug-report t])
495 "XEmacs menu for Tcl mode.")
497 ;; GNU Emacs does menus via keymaps. Do it in a function in case we
498 ;; later decide to add it to inferior Tcl mode as well.
499 (defun tcl-add-fsf-menu (map)
500 (define-key map [menu-bar] (make-sparse-keymap))
501 ;; This fails in Emacs 19.22 and earlier.
502 (require 'lmenu)
503 (let ((menu (make-lucid-menu-keymap "Tcl" tcl-xemacs-menu)))
504 (define-key map [menu-bar tcl] (cons "Tcl" menu))
505 ;; The following is intended to compute the key sequence
506 ;; information for the menu. It doesn't work.
507 (x-popup-menu nil menu)))
509 (defun tcl-fill-mode-map ()
510 (define-key tcl-mode-map "{" 'tcl-electric-char)
511 (define-key tcl-mode-map "}" 'tcl-electric-brace)
512 (define-key tcl-mode-map "[" 'tcl-electric-char)
513 (define-key tcl-mode-map "]" 'tcl-electric-char)
514 (define-key tcl-mode-map ";" 'tcl-electric-char)
515 (define-key tcl-mode-map "#" 'tcl-electric-hash)
516 ;; FIXME.
517 (define-key tcl-mode-map "\e\C-a" 'tcl-beginning-of-defun)
518 ;; FIXME.
519 (define-key tcl-mode-map "\e\C-e" 'tcl-end-of-defun)
520 ;; FIXME.
521 (define-key tcl-mode-map "\e\C-h" 'tcl-mark-defun)
522 (define-key tcl-mode-map "\e\C-q" 'indent-tcl-exp)
523 (define-key tcl-mode-map "\177" 'backward-delete-char-untabify)
524 (define-key tcl-mode-map "\t" 'tcl-indent-command)
525 (define-key tcl-mode-map "\M-;" 'tcl-indent-for-comment)
526 (define-key tcl-mode-map "\M-\C-x" 'tcl-eval-defun)
527 (define-key tcl-mode-map "\C-c\C-b" 'tcl-submit-bug-report)
528 (and (fboundp 'comment-region)
529 (define-key tcl-mode-map "\C-c\C-c" 'comment-region))
530 (define-key tcl-mode-map "\C-c\C-i" 'tcl-help-on-word)
531 (define-key tcl-mode-map "\C-c\C-v" 'tcl-eval-defun)
532 (define-key tcl-mode-map "\C-c\C-f" 'tcl-load-file)
533 (define-key tcl-mode-map "\C-c\C-t" 'inferior-tcl)
534 (define-key tcl-mode-map "\C-c\C-x" 'tcl-eval-region)
535 (define-key tcl-mode-map "\C-c\C-s" 'switch-to-tcl)
537 ;; Make menus.
538 (if (and tcl-using-emacs-19 (not tcl-using-xemacs-19))
539 (progn
540 (tcl-add-fsf-menu tcl-mode-map))))
542 (defun tcl-fill-inferior-map ()
543 (define-key inferior-tcl-mode-map "\t" 'comint-dynamic-complete)
544 (define-key inferior-tcl-mode-map "\M-?"
545 'comint-dynamic-list-filename-completions)
546 (define-key inferior-tcl-mode-map "\e\C-a" 'tcl-beginning-of-defun)
547 (define-key inferior-tcl-mode-map "\e\C-e" 'tcl-end-of-defun)
548 (define-key inferior-tcl-mode-map "\177" 'backward-delete-char-untabify)
549 (define-key inferior-tcl-mode-map "\M-\C-x" 'tcl-eval-defun)
550 (define-key inferior-tcl-mode-map "\C-c\C-b" 'tcl-submit-bug-report)
551 (define-key inferior-tcl-mode-map "\C-c\C-i" 'tcl-help-on-word)
552 (define-key inferior-tcl-mode-map "\C-c\C-v" 'tcl-eval-defun)
553 (define-key inferior-tcl-mode-map "\C-c\C-f" 'tcl-load-file)
554 (define-key inferior-tcl-mode-map "\C-c\C-t" 'inferior-tcl)
555 (define-key inferior-tcl-mode-map "\C-c\C-x" 'tcl-eval-region)
556 (define-key inferior-tcl-mode-map "\C-c\C-s" 'switch-to-tcl))
558 (if tcl-mode-map
560 (setq tcl-mode-map (make-sparse-keymap))
561 (tcl-fill-mode-map))
563 (if inferior-tcl-mode-map
565 ;; FIXME Use keymap inheritance here? FIXME we override comint
566 ;; keybindings here. Maybe someone has a better set?
567 (setq inferior-tcl-mode-map (copy-keymap comint-mode-map))
568 (tcl-fill-inferior-map))
571 (defvar inferior-tcl-buffer nil
572 "*The current inferior-tcl process buffer.
574 MULTIPLE PROCESS SUPPORT
575 ===========================================================================
576 To run multiple Tcl processes, you start the first up with
577 \\[inferior-tcl]. It will be in a buffer named `*inferior-tcl*'.
578 Rename this buffer with \\[rename-buffer]. You may now start up a new
579 process with another \\[inferior-tcl]. It will be in a new buffer,
580 named `*inferior-tcl*'. You can switch between the different process
581 buffers with \\[switch-to-buffer].
583 Commands that send text from source buffers to Tcl processes -- like
584 `tcl-eval-defun' or `tcl-load-file' -- have to choose a process to
585 send to, when you have more than one Tcl process around. This is
586 determined by the global variable `inferior-tcl-buffer'. Suppose you
587 have three inferior Lisps running:
588 Buffer Process
589 foo inferior-tcl
590 bar inferior-tcl<2>
591 *inferior-tcl* inferior-tcl<3>
592 If you do a \\[tcl-eval-defun] command on some Lisp source code, what
593 process do you send it to?
595 - If you're in a process buffer (foo, bar, or *inferior-tcl*),
596 you send it to that process.
597 - If you're in some other buffer (e.g., a source file), you
598 send it to the process attached to buffer `inferior-tcl-buffer'.
599 This process selection is performed by function `inferior-tcl-proc'.
601 Whenever \\[inferior-tcl] fires up a new process, it resets
602 `inferior-tcl-buffer' to be the new process's buffer. If you only run
603 one process, this does the right thing. If you run multiple
604 processes, you can change `inferior-tcl-buffer' to another process
605 buffer with \\[set-variable].")
608 ;; Hooks and other customization.
611 (defvar tcl-mode-hook nil
612 "Hook run on entry to Tcl mode.
614 Several functions exist which are useful to run from your
615 `tcl-mode-hook' (see each function's documentation for more
616 information):
618 tcl-guess-application
619 Guesses a default setting for `tcl-application' based on any
620 \"#!\" line at the top of the file.
621 tcl-hashify-buffer
622 Quotes all \"#\" characters that don't correspond to actual
623 Tcl comments. (Useful when editing code not originally created
624 with this mode).
625 tcl-auto-fill-mode
626 Auto-filling of Tcl comments.
628 Emacs 19 users can add functions to the hook with `add-hook':
630 (add-hook 'tcl-mode-hook 'tcl-guess-application)
632 Emacs 18 users must use `setq':
634 (setq tcl-mode-hook (cons 'tcl-guess-application tcl-mode-hook))")
637 (defvar inferior-tcl-mode-hook nil
638 "Hook for customizing Inferior Tcl mode.")
640 (defvar tcl-proc-list
641 '("proc" "method" "itcl_class")
642 "List of commands whose first argument defines something.
643 This exists because some people (eg, me) use \"defvar\" et al.
644 Call `tcl-set-proc-regexp' and `tcl-set-font-lock-keywords'
645 after changing this list.")
647 (defvar tcl-proc-regexp nil
648 "Regexp to use when matching proc headers.")
650 (defvar tcl-typeword-list
651 '("global" "upvar" "inherit" "public" "protected" "common")
652 "List of Tcl keywords denoting \"type\". Used only for highlighting.
653 Call `tcl-set-font-lock-keywords' after changing this list.")
655 ;; Generally I've picked control operators to be keywords.
656 (defvar tcl-keyword-list
657 '("if" "then" "else" "elseif" "for" "foreach" "break" "continue" "while"
658 "eval" "case" "in" "switch" "default" "exit" "error" "proc" "return"
659 "uplevel" "constructor" "destructor" "itcl_class" "loop" "for_array_keys"
660 "for_recursive_glob" "for_file")
661 "List of Tcl keywords. Used only for highlighting.
662 Default list includes some TclX keywords.
663 Call `tcl-set-font-lock-keywords' after changing this list.")
665 (defvar tcl-font-lock-keywords nil
666 "Keywords to highlight for Tcl. See variable `font-lock-keywords'.
667 This variable is generally set from `tcl-proc-regexp',
668 `tcl-typeword-list', and `tcl-keyword-list' by the function
669 `tcl-set-font-lock-keywords'.")
671 ;; FIXME need some way to recognize variables because array refs look
672 ;; like 2 sexps.
673 (defvar tcl-type-alist
675 ("proc" nil tcl-expr tcl-commands)
676 ("method" nil tcl-expr tcl-commands)
677 ("destructor" tcl-commands)
678 ("constructor" tcl-commands)
679 ("expr" tcl-expr)
680 ("catch" tcl-commands)
681 ("if" tcl-expr "then" tcl-commands)
682 ("elseif" tcl-expr "then" tcl-commands)
683 ("elseif" tcl-expr tcl-commands)
684 ("if" tcl-expr tcl-commands)
685 ("while" tcl-expr tcl-commands)
686 ("for" tcl-commands tcl-expr tcl-commands tcl-commands)
687 ("foreach" nil nil tcl-commands)
688 ("for_file" nil nil tcl-commands)
689 ("for_array_keys" nil nil tcl-commands)
690 ("for_recursive_glob" nil nil nil tcl-commands)
691 ;; Loop handling is not perfect, because the third argument can be
692 ;; either a command or an expr, and there is no real way to look
693 ;; forward.
694 ("loop" nil tcl-expr tcl-expr tcl-commands)
695 ("loop" nil tcl-expr tcl-commands)
697 "Alist that controls indentation.
698 \(Actually, this really only controls what happens on continuation lines).
699 Each entry looks like `(KEYWORD TYPE ...)'.
700 Each type entry describes a sexp after the keyword, and can be one of:
701 * nil, meaning that this sexp has no particular type.
702 * tcl-expr, meaning that this sexp is an arithmetic expression.
703 * tcl-commands, meaning that this sexp holds Tcl commands.
704 * a string, which must exactly match the string at the corresponding
705 position for a match to be made.
707 For example, the entry for the \"loop\" command is:
709 (\"loop\" nil tcl-expr tcl-commands)
711 This means that the \"loop\" command has three arguments. The first
712 argument is ignored (for indentation purposes). The second argument
713 is a Tcl expression, and the last argument is Tcl commands.")
715 (defvar tcl-explain-indentation nil
716 "If not `nil', debugging message will be printed during indentation.")
721 ;; Work around differences between various versions of Emacs.
724 ;; We use this because Lemacs 19.9 has what we need.
725 (defconst tcl-pps-has-arg-6
726 (or tcl-using-emacs-19
727 (and tcl-using-xemacs-19
728 (condition-case nil
729 (progn
730 (parse-partial-sexp (point) (point) nil nil nil t)
732 (error nil))))
733 "t if using an emacs which supports sixth (\"commentstop\") argument
734 to parse-partial-sexp.")
736 ;; Its pretty bogus to have to do this, but there is no easier way to
737 ;; say "match not syntax-1 and not syntax-2". Too bad you can't put
738 ;; \s in [...]. This sickness is used in Emacs 19 to match a defun
739 ;; starter. (It is used for this in v18 as well).
740 ;;(defconst tcl-omit-ws-regexp
741 ;; (concat "^\\(\\s"
742 ;; (mapconcat 'char-to-string "w_.()\"\\$'/" "\\|\\s")
743 ;; "\\)\\S(*")
744 ;; "Regular expression that matches everything except space, comment
745 ;;starter, and comment ender syntax codes.")
747 ;; FIXME? Instead of using the hairy regexp above, we just use a
748 ;; simple one.
749 ;;(defconst tcl-omit-ws-regexp "^[^] \t\n#}]\\S(*"
750 ;; "Regular expression used in locating function definitions.")
752 ;; Here's another stab. I think this one actually works. Now the
753 ;; problem seems to be that there is a bug in Emacs 19.22 where
754 ;; end-of-defun doesn't really use the brace matching the one that
755 ;; trails defun-prompt-regexp.
756 (defconst tcl-omit-ws-regexp "^[^ \t\n#}][^\n}]+}*[ \t]+")
758 (defun tcl-internal-beginning-of-defun (&optional arg)
759 "Move backward to next beginning-of-defun.
760 With argument, do this that many times.
761 Returns t unless search stops due to end of buffer."
762 (interactive "p")
763 (if (or (null arg) (= arg 0))
764 (setq arg 1))
765 (let (success)
766 (while (progn
767 (setq arg (1- arg))
768 (and (>= arg 0)
769 (setq success
770 (re-search-backward tcl-omit-ws-regexp nil 'move 1))))
771 (while (and (looking-at "[]#}]")
772 (setq success
773 (re-search-backward tcl-omit-ws-regexp nil 'move 1)))))
774 (beginning-of-line)
775 (not (null success))))
777 (defun tcl-internal-end-of-defun (&optional arg)
778 "Move forward to next end of defun.
779 An end of a defun is found by moving forward from the beginning of one."
780 (interactive "p")
781 (if (or (null arg) (= arg 0)) (setq arg 1))
782 (let ((start (point)))
783 ;; Was forward-char. I think this works a little better.
784 (forward-line)
785 (tcl-beginning-of-defun)
786 (while (> arg 0)
787 (while (and (re-search-forward tcl-omit-ws-regexp nil 'move 1)
788 (progn (beginning-of-line) t)
789 (looking-at "[]#}]")
790 (progn (forward-line) t)))
791 (let ((next-line (save-excursion
792 (forward-line)
793 (point))))
794 (while (< (point) next-line)
795 (forward-sexp)))
796 (forward-line)
797 (if (> (point) start) (setq arg (1- arg))))))
799 ;; In Emacs 19, we can use begining-of-defun as long as we set up a
800 ;; certain regexp. In Emacs 18, we need our own function.
801 (fset 'tcl-beginning-of-defun
802 (if tcl-using-emacs-19
803 'beginning-of-defun
804 'tcl-internal-beginning-of-defun))
806 ;; Ditto end-of-defun.
807 (fset 'tcl-end-of-defun
808 (if (and tcl-using-emacs-19 (not tcl-using-xemacs-19))
809 'end-of-defun
810 'tcl-internal-end-of-defun))
812 ;; Internal mark-defun that is used for losing Emacsen.
813 (defun tcl-internal-mark-defun ()
814 "Put mark at end of Tcl function, point at beginning."
815 (interactive)
816 (push-mark (point))
817 (tcl-end-of-defun)
818 (if tcl-using-emacs-19
819 (push-mark (point) nil t)
820 (push-mark (point)))
821 (tcl-beginning-of-defun)
822 (backward-paragraph))
824 ;; In GNU Emacs 19-23 and later, mark-defun works as advertised. I
825 ;; don't know about XEmacs, so for now it and Emacs 18 just lose.
826 (fset 'tcl-mark-defun
827 (if tcl-using-emacs-19-23
828 'mark-defun
829 'tcl-internal-mark-defun))
831 ;; In GNU Emacs 19, mark takes an additional "force" argument. I
832 ;; don't know about XEmacs, so I'm just assuming it is the same.
833 ;; Emacs 18 doesn't have this argument.
834 (defun tcl-mark ()
835 "Return mark, or nil if none."
836 (if tcl-using-emacs-19
837 (mark t)
838 (mark)))
843 ;; Some helper functions.
846 (defun tcl-set-proc-regexp ()
847 "Set `tcl-proc-regexp' from variable `tcl-proc-list'."
848 (setq tcl-proc-regexp (concat "^\\s-*\\("
849 (mapconcat 'identity tcl-proc-list "\\|")
850 "\\)[ \t]+")))
852 (defun tcl-set-font-lock-keywords ()
853 "Set `tcl-font-lock-keywords'.
854 Uses variables `tcl-proc-regexp' and `tcl-keyword-list'."
855 (setq tcl-font-lock-keywords
856 (list
857 ;; Names of functions (and other "defining things").
858 (list (concat tcl-proc-regexp "\\([^ \t\n]+\\)")
859 2 'font-lock-function-name-face)
861 ;; Names of type-defining things.
862 (list (concat "\\(\\s-\\|^\\)\\("
863 ;; FIXME Use 'regexp-quote?
864 (mapconcat 'identity tcl-typeword-list "\\|")
865 "\\)\\(\\s-\\|$\\)")
866 2 'font-lock-type-face)
868 ;; Keywords. Only recognized if surrounded by whitespace.
869 ;; FIXME consider using "not word or symbol", not
870 ;; "whitespace".
871 (cons (concat "\\(\\s-\\|^\\)\\("
872 ;; FIXME Use regexp-quote?
873 (mapconcat 'identity tcl-keyword-list "\\|")
874 "\\)\\(\\s-\\|$\\)")
878 (if tcl-proc-regexp
880 (tcl-set-proc-regexp))
882 (if tcl-font-lock-keywords
884 (tcl-set-font-lock-keywords))
889 ;; The mode itself.
892 ;;;###autoload
893 (defun tcl-mode ()
894 "Major mode for editing Tcl code.
895 Expression and list commands understand all Tcl brackets.
896 Tab indents for Tcl code.
897 Paragraphs are separated by blank lines only.
898 Delete converts tabs to spaces as it moves back.
900 Variables controlling indentation style:
901 tcl-indent-level
902 Indentation of Tcl statements within surrounding block.
903 tcl-continued-indent-level
904 Indentation of continuation line relative to first line of command.
906 Variables controlling user interaction with mode (see variable
907 documentation for details):
908 tcl-tab-always-indent
909 Controls action of TAB key.
910 tcl-auto-newline
911 Non-nil means automatically newline before and after braces, brackets,
912 and semicolons inserted in Tcl code.
913 tcl-electric-hash-style
914 Controls action of `#' key.
915 tcl-use-hairy-comment-detector
916 If t, use more complicated, but slower, comment detector.
917 This variable is only used in GNU Emacs 19.
918 tcl-use-smart-word-finder
919 If not nil, use a smarter, Tcl-specific way to find the current
920 word when looking up help on a Tcl command.
922 Turning on Tcl mode calls the value of the variable `tcl-mode-hook'
923 with no args, if that value is non-nil. Read the documentation for
924 `tcl-mode-hook' to see what kinds of interesting hook functions
925 already exist.
927 Commands:
928 \\{tcl-mode-map}"
929 (interactive)
930 (kill-all-local-variables)
931 (use-local-map tcl-mode-map)
932 (setq major-mode 'tcl-mode)
933 (setq mode-name "Tcl")
934 (setq local-abbrev-table tcl-mode-abbrev-table)
935 (set-syntax-table tcl-mode-syntax-table)
937 (make-local-variable 'paragraph-start)
938 (make-local-variable 'paragraph-separate)
939 (if (and tcl-using-emacs-19-23
940 (>= emacs-minor-version 29))
941 (progn
942 ;; In Emacs 19.29, you aren't supposed to start these with a
943 ;; ^.
944 (setq paragraph-start "$\\|\f")
945 (setq paragraph-separate paragraph-start))
946 (setq paragraph-start (concat "^$\\|" page-delimiter))
947 (setq paragraph-separate paragraph-start))
948 (make-local-variable 'paragraph-ignore-fill-prefix)
949 (setq paragraph-ignore-fill-prefix t)
950 (make-local-variable 'fill-paragraph-function)
951 (setq fill-paragraph-function 'tcl-do-fill-paragraph)
953 (make-local-variable 'indent-line-function)
954 (setq indent-line-function 'tcl-indent-line)
955 ;; Tcl doesn't require a final newline.
956 ;; (make-local-variable 'require-final-newline)
957 ;; (setq require-final-newline t)
959 (make-local-variable 'comment-start)
960 (setq comment-start "# ")
961 (make-local-variable 'comment-start-skip)
962 (setq comment-start-skip "#+ *")
963 (make-local-variable 'comment-column)
964 (setq comment-column 40)
965 (make-local-variable 'comment-end)
966 (setq comment-end "")
968 (make-local-variable 'outline-regexp)
969 (setq outline-regexp "[^\n\^M]")
970 (make-local-variable 'outline-level)
971 (setq outline-level 'tcl-outline-level)
973 (make-local-variable 'font-lock-keywords)
974 (setq font-lock-keywords tcl-font-lock-keywords)
976 ;; The following only really makes sense under GNU Emacs 19.
977 (make-local-variable 'imenu-create-index-function)
978 (setq imenu-create-index-function 'tcl-imenu-create-index-function)
979 (make-local-variable 'parse-sexp-ignore-comments)
981 ;; Settings for new dabbrev code.
982 (make-local-variable 'dabbrev-case-fold-search)
983 (setq dabbrev-case-fold-search nil)
984 (make-local-variable 'dabbrev-case-replace)
985 (setq dabbrev-case-replace nil)
986 (make-local-variable 'dabbrev-abbrev-skip-leading-regexp)
987 (setq dabbrev-abbrev-skip-leading-regexp "[$!]")
988 (make-local-variable 'dabbrev-abbrev-char-regexp)
989 (setq dabbrev-abbrev-char-regexp "\\sw\\|\\s_")
991 (if tcl-using-emacs-19
992 (progn
993 ;; This can only be set to t in Emacs 19 and XEmacs.
994 ;; Emacs 18 and Epoch lose.
995 (setq parse-sexp-ignore-comments t)
996 ;; XEmacs has defun-prompt-regexp, but I don't believe
997 ;; that it works for end-of-defun -- only for
998 ;; beginning-of-defun.
999 (make-local-variable 'defun-prompt-regexp)
1000 (setq defun-prompt-regexp tcl-omit-ws-regexp)
1001 ;; The following doesn't work in Lucid Emacs 19.6, but maybe
1002 ;; it will appear in later versions.
1003 (make-local-variable 'add-log-current-defun-function)
1004 (setq add-log-current-defun-function 'add-log-tcl-defun))
1005 (setq parse-sexp-ignore-comments nil))
1007 ;; Put Tcl menu into menubar for XEmacs. This happens
1008 ;; automatically for GNU Emacs.
1009 (if (and tcl-using-xemacs-19
1010 current-menubar
1011 (not (assoc "Tcl" current-menubar)))
1012 (progn
1013 (set-buffer-menubar (copy-sequence current-menubar))
1014 (add-menu nil "Tcl" tcl-xemacs-menu)))
1015 ;; Append Tcl menu to popup menu for XEmacs.
1016 (if (and tcl-using-xemacs-19 (boundp 'mode-popup-menu))
1017 (setq mode-popup-menu
1018 (cons (concat mode-name " Mode Commands") tcl-xemacs-menu)))
1020 ;; If hilit19 is loaded, add our stuff.
1021 (if (featurep 'hilit19)
1022 (tcl-hilit))
1024 (run-hooks 'tcl-mode-hook))
1028 ;; This is used for braces, brackets, and semi (except for closing
1029 ;; braces, which are handled specially).
1030 (defun tcl-electric-char (arg)
1031 "Insert character and correct line's indentation."
1032 (interactive "p")
1033 ;; Indent line first; this looks better if parens blink.
1034 (tcl-indent-line)
1035 (self-insert-command arg)
1036 (if (and tcl-auto-newline (= last-command-char ?\;))
1037 (progn
1038 (newline)
1039 (tcl-indent-line))))
1041 ;; This is used for closing braces. If tcl-auto-newline is set, can
1042 ;; insert a newline both before and after the brace, depending on
1043 ;; context. FIXME should this be configurable? Does anyone use this?
1044 (defun tcl-electric-brace (arg)
1045 "Insert character and correct line's indentation."
1046 (interactive "p")
1047 ;; If auto-newlining and there is stuff on the same line, insert a
1048 ;; newline first.
1049 (if tcl-auto-newline
1050 (progn
1051 (if (save-excursion
1052 (skip-chars-backward " \t")
1053 (bolp))
1055 (tcl-indent-line)
1056 (newline))
1057 ;; In auto-newline case, must insert a newline after each
1058 ;; brace. So an explicit loop is needed.
1059 (while (> arg 0)
1060 (insert last-command-char)
1061 (tcl-indent-line)
1062 (newline)
1063 (setq arg (1- arg))))
1064 (self-insert-command arg))
1065 (tcl-indent-line))
1069 (defun tcl-indent-command (&optional arg)
1070 "Indent current line as Tcl code, or in some cases insert a tab character.
1071 If tcl-tab-always-indent is t (the default), always indent current line.
1072 If tcl-tab-always-indent is nil and point is not in the indentation
1073 area at the beginning of the line, a TAB is inserted.
1074 Other values of tcl-tab-always-indent cause the first possible action
1075 from the following list to take place:
1077 1. Move from beginning of line to correct indentation.
1078 2. Delete an empty comment.
1079 3. Move forward to start of comment, indenting if necessary.
1080 4. Move forward to end of line, indenting if necessary.
1081 5. Create an empty comment.
1082 6. Move backward to start of comment, indenting if necessary."
1083 (interactive "p")
1084 (cond
1085 ((not tcl-tab-always-indent)
1086 ;; Indent if in indentation area, otherwise insert TAB.
1087 (if (<= (current-column) (current-indentation))
1088 (tcl-indent-line)
1089 (self-insert-command arg)))
1090 ((eq tcl-tab-always-indent t)
1091 ;; Always indent.
1092 (tcl-indent-line))
1094 ;; "Perl-mode" style TAB command.
1095 (let* ((ipoint (point))
1096 (eolpoint (progn
1097 (end-of-line)
1098 (point)))
1099 (comment-p (tcl-in-comment)))
1100 (cond
1101 ((= ipoint (save-excursion
1102 (beginning-of-line)
1103 (point)))
1104 (beginning-of-line)
1105 (tcl-indent-line)
1106 ;; If indenting didn't leave us in column 0, go to the
1107 ;; indentation. Otherwise leave point at end of line. This
1108 ;; is a hack.
1109 (if (= (point) (save-excursion
1110 (beginning-of-line)
1111 (point)))
1112 (end-of-line)
1113 (back-to-indentation)))
1114 ((and comment-p (looking-at "[ \t]*$"))
1115 ;; Empty comment, so delete it. We also delete any ";"
1116 ;; characters at the end of the line. I think this is
1117 ;; friendlier, but I don't know how other people will feel.
1118 (backward-char)
1119 (skip-chars-backward " \t;")
1120 (delete-region (point) eolpoint))
1121 ((and comment-p (< ipoint (point)))
1122 ;; Before comment, so skip to it.
1123 (tcl-indent-line)
1124 (indent-for-comment))
1125 ((/= ipoint eolpoint)
1126 ;; Go to end of line (since we're not there yet).
1127 (goto-char eolpoint)
1128 (tcl-indent-line))
1129 ((not comment-p)
1130 (tcl-indent-line)
1131 (tcl-indent-for-comment))
1133 ;; Go to start of comment. We don't leave point where it is
1134 ;; because we want to skip comment-start-skip.
1135 (tcl-indent-line)
1136 (indent-for-comment)))))))
1138 (defun tcl-indent-line ()
1139 "Indent current line as Tcl code.
1140 Return the amount the indentation changed by."
1141 (let ((indent (calculate-tcl-indent nil))
1142 beg shift-amt
1143 (case-fold-search nil)
1144 (pos (- (point-max) (point))))
1145 (beginning-of-line)
1146 (setq beg (point))
1147 (cond ((eq indent nil)
1148 (setq indent (current-indentation)))
1150 (skip-chars-forward " \t")
1151 (if (listp indent) (setq indent (car indent)))
1152 (cond ((= (following-char) ?})
1153 (setq indent (- indent tcl-indent-level)))
1154 ((= (following-char) ?\])
1155 (setq indent (- indent 1))))))
1156 (skip-chars-forward " \t")
1157 (setq shift-amt (- indent (current-column)))
1158 (if (zerop shift-amt)
1159 (if (> (- (point-max) pos) (point))
1160 (goto-char (- (point-max) pos)))
1161 (delete-region beg (point))
1162 (indent-to indent)
1163 ;; If initial point was within line's indentation,
1164 ;; position after the indentation. Else stay at same point in text.
1165 (if (> (- (point-max) pos) (point))
1166 (goto-char (- (point-max) pos))))
1167 shift-amt))
1169 (defun tcl-figure-type ()
1170 "Determine type of sexp at point.
1171 This is either 'tcl-expr, 'tcl-commands, or nil. Puts point at start
1172 of sexp that indicates types.
1174 See documentation for variable `tcl-type-alist' for more information."
1175 (let ((count 0)
1176 result
1177 word-stack)
1178 (while (and (< count 5)
1179 (not result))
1180 (condition-case nil
1181 (progn
1182 ;; FIXME should use "tcl-backward-sexp", which would skip
1183 ;; over entire variables, etc.
1184 (backward-sexp)
1185 (if (looking-at "[a-zA-Z_]+")
1186 (let ((list tcl-type-alist)
1187 entry)
1188 (setq word-stack (cons (tcl-word-no-props) word-stack))
1189 (while (and list (not result))
1190 (setq entry (car list))
1191 (setq list (cdr list))
1192 (let ((index 0))
1193 (while (and entry (<= index count))
1194 ;; Abort loop if string does not match word on
1195 ;; stack.
1196 (and (stringp (car entry))
1197 (not (string= (car entry)
1198 (nth index word-stack)))
1199 (setq entry nil))
1200 (setq entry (cdr entry))
1201 (setq index (1+ index)))
1202 (and (> index count)
1203 (not (stringp (car entry)))
1204 (setq result (car entry)))
1206 (setq word-stack (cons nil word-stack))))
1207 (error nil))
1208 (setq count (1+ count)))
1209 (and tcl-explain-indentation
1210 (message "Indentation type %s" result))
1211 result))
1213 (defun calculate-tcl-indent (&optional parse-start)
1214 "Return appropriate indentation for current line as Tcl code.
1215 In usual case returns an integer: the column to indent to.
1216 Returns nil if line starts inside a string, t if in a comment."
1217 (save-excursion
1218 (beginning-of-line)
1219 (let* ((indent-point (point))
1220 (case-fold-search nil)
1221 (continued-line
1222 (save-excursion
1223 (if (bobp)
1225 (backward-char)
1226 (= ?\\ (preceding-char)))))
1227 (continued-indent-value (if continued-line
1228 tcl-continued-indent-level
1230 state
1231 containing-sexp
1232 found-next-line)
1233 (if parse-start
1234 (goto-char parse-start)
1235 (tcl-beginning-of-defun))
1236 (while (< (point) indent-point)
1237 (setq parse-start (point))
1238 (setq state (parse-partial-sexp (point) indent-point 0))
1239 (setq containing-sexp (car (cdr state))))
1240 (cond ((or (nth 3 state) (nth 4 state))
1241 ;; Inside comment or string. Return nil or t if should
1242 ;; not change this line
1243 (nth 4 state))
1244 ((null containing-sexp)
1245 ;; Line is at top level.
1246 continued-indent-value)
1248 ;; Set expr-p if we are looking at the expression part of
1249 ;; an "if", "expr", etc statement. Set commands-p if we
1250 ;; are looking at the body part of an if, while, etc
1251 ;; statement. FIXME Should check for "for" loops here.
1252 (goto-char containing-sexp)
1253 (let* ((sexpr-type (tcl-figure-type))
1254 (expr-p (eq sexpr-type 'tcl-expr))
1255 (commands-p (eq sexpr-type 'tcl-commands))
1256 (expr-start (point)))
1257 ;; Find the first statement in the block and indent
1258 ;; like it. The first statement in the block might be
1259 ;; on the same line, so what we do is skip all
1260 ;; "virtually blank" lines, looking for a non-blank
1261 ;; one. A line is virtually blank if it only contains
1262 ;; a comment and whitespace. FIXME continued comments
1263 ;; aren't supported. They are a wart on Tcl anyway.
1264 ;; We do it this funky way because we want to know if
1265 ;; we've found a statement on some line _after_ the
1266 ;; line holding the sexp opener.
1267 (goto-char containing-sexp)
1268 (forward-char)
1269 (if (and (< (point) indent-point)
1270 (looking-at "[ \t]*\\(#.*\\)?$"))
1271 (progn
1272 (forward-line)
1273 (while (and (< (point) indent-point)
1274 (looking-at "[ \t]*\\(#.*\\)?$"))
1275 (setq found-next-line t)
1276 (forward-line))))
1277 (if (or continued-line
1278 (/= (char-after containing-sexp) ?{)
1279 expr-p)
1280 (progn
1281 ;; Line is continuation line, or the sexp opener
1282 ;; is not a curly brace, or we are are looking at
1283 ;; an `expr' expression (which must be split
1284 ;; specially). So indentation is column of first
1285 ;; good spot after sexp opener (with some added
1286 ;; in the continued-line case). If there is no
1287 ;; nonempty line before the indentation point, we
1288 ;; use the column of the character after the sexp
1289 ;; opener.
1290 (if (>= (point) indent-point)
1291 (progn
1292 (goto-char containing-sexp)
1293 (forward-char))
1294 (skip-chars-forward " \t"))
1295 (+ (current-column) continued-indent-value))
1296 ;; After a curly brace, and not a continuation line.
1297 ;; So take indentation from first good line after
1298 ;; start of block, unless that line is on the same
1299 ;; line as the opening brace. In this case use the
1300 ;; indentation of the opening brace's line, plus
1301 ;; another indent step. If we are in the body part
1302 ;; of an "if" or "while" then the indentation is
1303 ;; taken from the line holding the start of the
1304 ;; statement.
1305 (if (and (< (point) indent-point)
1306 found-next-line)
1307 (current-indentation)
1308 (if commands-p
1309 (goto-char expr-start)
1310 (goto-char containing-sexp))
1311 (+ (current-indentation) tcl-indent-level)))))))))
1315 (defun indent-tcl-exp ()
1316 "Indent each line of the Tcl grouping following point."
1317 (interactive)
1318 (let ((indent-stack (list nil))
1319 (contain-stack (list (point)))
1320 (case-fold-search nil)
1321 outer-loop-done inner-loop-done state ostate
1322 this-indent last-sexp continued-line
1323 (next-depth 0)
1324 last-depth)
1325 (save-excursion
1326 (forward-sexp 1))
1327 (save-excursion
1328 (setq outer-loop-done nil)
1329 (while (and (not (eobp)) (not outer-loop-done))
1330 (setq last-depth next-depth)
1331 ;; Compute how depth changes over this line
1332 ;; plus enough other lines to get to one that
1333 ;; does not end inside a comment or string.
1334 ;; Meanwhile, do appropriate indentation on comment lines.
1335 (setq inner-loop-done nil)
1336 (while (and (not inner-loop-done)
1337 (not (and (eobp) (setq outer-loop-done t))))
1338 (setq ostate state)
1339 (setq state (parse-partial-sexp (point) (progn (end-of-line) (point))
1340 nil nil state))
1341 (setq next-depth (car state))
1342 (if (and (car (cdr (cdr state)))
1343 (>= (car (cdr (cdr state))) 0))
1344 (setq last-sexp (car (cdr (cdr state)))))
1345 (if (or (nth 4 ostate))
1346 (tcl-indent-line))
1347 (if (or (nth 3 state))
1348 (forward-line 1)
1349 (setq inner-loop-done t)))
1350 (if (<= next-depth 0)
1351 (setq outer-loop-done t))
1352 (if outer-loop-done
1354 ;; If this line had ..))) (((.. in it, pop out of the levels
1355 ;; that ended anywhere in this line, even if the final depth
1356 ;; doesn't indicate that they ended.
1357 (while (> last-depth (nth 6 state))
1358 (setq indent-stack (cdr indent-stack)
1359 contain-stack (cdr contain-stack)
1360 last-depth (1- last-depth)))
1361 (if (/= last-depth next-depth)
1362 (setq last-sexp nil))
1363 ;; Add levels for any parens that were started in this line.
1364 (while (< last-depth next-depth)
1365 (setq indent-stack (cons nil indent-stack)
1366 contain-stack (cons nil contain-stack)
1367 last-depth (1+ last-depth)))
1368 (if (null (car contain-stack))
1369 (setcar contain-stack
1370 (or (car (cdr state))
1371 (save-excursion
1372 (forward-sexp -1)
1373 (point)))))
1374 (forward-line 1)
1375 (setq continued-line
1376 (save-excursion
1377 (backward-char)
1378 (= (preceding-char) ?\\)))
1379 (skip-chars-forward " \t")
1380 (if (eolp)
1382 (if (and (car indent-stack)
1383 (>= (car indent-stack) 0))
1384 ;; Line is on an existing nesting level.
1385 (setq this-indent (car indent-stack))
1386 ;; Just started a new nesting level.
1387 ;; Compute the standard indent for this level.
1388 (let ((val (calculate-tcl-indent
1389 (if (car indent-stack)
1390 (- (car indent-stack))))))
1391 (setcar indent-stack
1392 (setq this-indent val))
1393 (setq continued-line nil)))
1394 (cond ((not (numberp this-indent)))
1395 ((= (following-char) ?})
1396 (setq this-indent (- this-indent tcl-indent-level)))
1397 ((= (following-char) ?\])
1398 (setq this-indent (- this-indent 1))))
1399 ;; Put chosen indentation into effect.
1400 (or (null this-indent)
1401 (= (current-column)
1402 (if continued-line
1403 (+ this-indent tcl-indent-level)
1404 this-indent))
1405 (progn
1406 (delete-region (point) (progn (beginning-of-line) (point)))
1407 (indent-to
1408 (if continued-line
1409 (+ this-indent tcl-indent-level)
1410 this-indent)))))))))
1416 ;; Interfaces to other packages.
1419 (defun tcl-imenu-create-index-function ()
1420 "Generate alist of indices for imenu."
1421 (let ((re (concat tcl-proc-regexp "\\([^ \t\n{]+\\)"))
1422 alist prev-pos)
1423 (goto-char (point-min))
1424 (imenu-progress-message prev-pos 0)
1425 (save-match-data
1426 (while (re-search-forward re nil t)
1427 (imenu-progress-message prev-pos)
1428 ;; Position on start of proc name, not beginning of line.
1429 (setq alist (cons
1430 (cons (buffer-substring (match-beginning 2) (match-end 2))
1431 (match-beginning 2))
1432 alist))))
1433 (imenu-progress-message prev-pos 100)
1434 (nreverse alist)))
1436 ;; FIXME Definition of function is very ad-hoc. Should use
1437 ;; tcl-beginning-of-defun. Also has incestuous knowledge about the
1438 ;; format of tcl-proc-regexp.
1439 (defun add-log-tcl-defun ()
1440 "Return name of Tcl function point is in, or nil."
1441 (save-excursion
1442 (if (re-search-backward
1443 (concat tcl-proc-regexp "\\([^ \t\n{]+\\)") nil t)
1444 (buffer-substring (match-beginning 2)
1445 (match-end 2)))))
1447 (defun tcl-outline-level ()
1448 (save-excursion
1449 (skip-chars-forward " \t")
1450 (current-column)))
1455 ;; Helper functions for inferior Tcl mode.
1458 ;; This exists to let us delete the prompt when commands are sent
1459 ;; directly to the inferior Tcl. See gud.el for an explanation of how
1460 ;; it all works (I took it from there). This stuff doesn't really
1461 ;; work as well as I'd like it to. But I don't believe there is
1462 ;; anything useful that can be done.
1463 (defvar inferior-tcl-delete-prompt-marker nil)
1465 (defun tcl-filter (proc string)
1466 (let ((inhibit-quit t))
1467 (save-excursion
1468 (set-buffer (process-buffer proc))
1469 (goto-char (process-mark proc))
1470 ;; Delete prompt if requested.
1471 (if (marker-buffer inferior-tcl-delete-prompt-marker)
1472 (progn
1473 (delete-region (point) inferior-tcl-delete-prompt-marker)
1474 (set-marker inferior-tcl-delete-prompt-marker nil)))))
1475 (if tcl-using-emacs-19
1476 (comint-output-filter proc string)
1477 (funcall comint-output-filter string)))
1479 (defun tcl-send-string (proc string)
1480 (save-excursion
1481 (set-buffer (process-buffer proc))
1482 (goto-char (process-mark proc))
1483 (beginning-of-line)
1484 (if (looking-at comint-prompt-regexp)
1485 (set-marker inferior-tcl-delete-prompt-marker (point))))
1486 (comint-send-string proc string))
1488 (defun tcl-send-region (proc start end)
1489 (save-excursion
1490 (set-buffer (process-buffer proc))
1491 (goto-char (process-mark proc))
1492 (beginning-of-line)
1493 (if (looking-at comint-prompt-regexp)
1494 (set-marker inferior-tcl-delete-prompt-marker (point))))
1495 (comint-send-region proc start end))
1497 (defun switch-to-tcl (eob-p)
1498 "Switch to inferior Tcl process buffer.
1499 With argument, positions cursor at end of buffer."
1500 (interactive "P")
1501 (if (get-buffer inferior-tcl-buffer)
1502 (pop-to-buffer inferior-tcl-buffer)
1503 (error "No current inferior Tcl buffer"))
1504 (cond (eob-p
1505 (push-mark)
1506 (goto-char (point-max)))))
1508 (defun inferior-tcl-proc ()
1509 "Return current inferior Tcl process.
1510 See variable `inferior-tcl-buffer'."
1511 (let ((proc (get-buffer-process (if (eq major-mode 'inferior-tcl-mode)
1512 (current-buffer)
1513 inferior-tcl-buffer))))
1514 (or proc
1515 (error "No Tcl process; see variable `inferior-tcl-buffer'"))))
1517 (defun tcl-eval-region (start end &optional and-go)
1518 "Send the current region to the inferior Tcl process.
1519 Prefix argument means switch to the Tcl buffer afterwards."
1520 (interactive "r\nP")
1521 (let ((proc (inferior-tcl-proc)))
1522 (tcl-send-region proc start end)
1523 (tcl-send-string proc "\n")
1524 (if and-go (switch-to-tcl t))))
1526 (defun tcl-eval-defun (&optional and-go)
1527 "Send the current defun to the inferior Tcl process.
1528 Prefix argument means switch to the Tcl buffer afterwards."
1529 (interactive "P")
1530 (save-excursion
1531 (tcl-end-of-defun)
1532 (let ((end (point)))
1533 (tcl-beginning-of-defun)
1534 (tcl-eval-region (point) end)))
1535 (if and-go (switch-to-tcl t)))
1540 ;; Inferior Tcl mode itself.
1543 (defun inferior-tcl-mode ()
1544 "Major mode for interacting with Tcl interpreter.
1546 A Tcl process can be started with M-x inferior-tcl.
1548 Entry to this mode runs the hooks comint-mode-hook and
1549 inferior-tcl-mode-hook, in that order.
1551 You can send text to the inferior Tcl process from other buffers
1552 containing Tcl source.
1554 Variables controlling Inferior Tcl mode:
1555 tcl-application
1556 Name of program to run.
1557 tcl-command-switches
1558 Command line arguments to `tcl-application'.
1559 tcl-prompt-regexp
1560 Matches prompt.
1561 inferior-tcl-source-command
1562 Command to use to read Tcl file in running application.
1563 inferior-tcl-buffer
1564 The current inferior Tcl process buffer. See variable
1565 documentation for details on multiple-process support.
1567 The following commands are available:
1568 \\{inferior-tcl-mode-map}"
1569 (interactive)
1570 (comint-mode)
1571 (setq comint-prompt-regexp (or tcl-prompt-regexp
1572 (concat "^"
1573 (regexp-quote tcl-application)
1574 ">")))
1575 (setq major-mode 'inferior-tcl-mode)
1576 (setq mode-name "Inferior Tcl")
1577 (if (boundp 'modeline-process)
1578 (setq modeline-process '(": %s")) ; For XEmacs.
1579 (setq mode-line-process '(": %s")))
1580 (use-local-map inferior-tcl-mode-map)
1581 (setq local-abbrev-table tcl-mode-abbrev-table)
1582 (set-syntax-table tcl-mode-syntax-table)
1583 (if tcl-using-emacs-19
1584 (progn
1585 (make-local-variable 'defun-prompt-regexp)
1586 (setq defun-prompt-regexp tcl-omit-ws-regexp)))
1587 (make-local-variable 'inferior-tcl-delete-prompt-marker)
1588 (setq inferior-tcl-delete-prompt-marker (make-marker))
1589 (set-process-filter (get-buffer-process (current-buffer)) 'tcl-filter)
1590 (run-hooks 'inferior-tcl-mode-hook))
1592 ;;;###autoload
1593 (defun inferior-tcl (cmd)
1594 "Run inferior Tcl process.
1595 Prefix arg means enter program name interactively.
1596 See documentation for function `inferior-tcl-mode' for more information."
1597 (interactive
1598 (list (if current-prefix-arg
1599 (read-string "Run Tcl: " tcl-application)
1600 tcl-application)))
1601 (if (not (comint-check-proc "*inferior-tcl*"))
1602 (progn
1603 (set-buffer (apply (function make-comint) "inferior-tcl" cmd nil
1604 tcl-command-switches))
1605 (inferior-tcl-mode)))
1606 (make-local-variable 'tcl-application)
1607 (setq tcl-application cmd)
1608 (setq inferior-tcl-buffer "*inferior-tcl*")
1609 (switch-to-buffer "*inferior-tcl*"))
1611 (and (fboundp 'defalias)
1612 (defalias 'run-tcl 'inferior-tcl))
1617 ;; Auto-fill support.
1620 (defun tcl-real-command-p ()
1621 "Return nil if point is not at the beginning of a command.
1622 A command is the first word on an otherwise empty line, or the
1623 first word following a semicolon, opening brace, or opening bracket."
1624 (save-excursion
1625 (skip-chars-backward " \t")
1626 (cond
1627 ((bobp) t)
1628 ((bolp)
1629 (backward-char)
1630 ;; Note -- continued comments are not supported here. I
1631 ;; consider those to be a wart on the language.
1632 (not (eq ?\\ (preceding-char))))
1634 (memq (preceding-char) '(?\; ?{ ?\[))))))
1636 ;; FIXME doesn't actually return t. See last case.
1637 (defun tcl-real-comment-p ()
1638 "Return t if point is just after the `#' beginning a real comment.
1639 Does not check to see if previous char is actually `#'.
1640 A real comment is either at the beginning of the buffer,
1641 preceeded only by whitespace on the line, or has a preceeding
1642 semicolon, opening brace, or opening bracket on the same line."
1643 (save-excursion
1644 (backward-char)
1645 (tcl-real-command-p)))
1647 (defun tcl-hairy-scan-for-comment (state end always-stop)
1648 "Determine if point is in a comment.
1649 Returns a list of the form `(FLAG . STATE)'. STATE can be used
1650 as input to future invocations. FLAG is nil if not in comment,
1651 t otherwise. If in comment, leaves point at beginning of comment.
1652 Only works in Emacs 19. See also `tcl-simple-scan-for-comment', a
1653 simpler version that is often right, and works in Emacs 18."
1654 (let ((bol (save-excursion
1655 (goto-char end)
1656 (beginning-of-line)
1657 (point)))
1658 real-comment
1659 last-cstart)
1660 (while (and (not last-cstart) (< (point) end))
1661 (setq real-comment nil) ;In case we've looped around and it is
1662 ;set.
1663 (setq state (parse-partial-sexp (point) end nil nil state t))
1664 (if (nth 4 state)
1665 (progn
1666 ;; If ALWAYS-STOP is set, stop even if we don't have a
1667 ;; real comment, or if the comment isn't on the same line
1668 ;; as the end.
1669 (if always-stop (setq last-cstart (point)))
1670 ;; If we have a real comment, then set the comment
1671 ;; starting point if we are on the same line as the ending
1672 ;; location.
1673 (setq real-comment (tcl-real-comment-p))
1674 (if real-comment
1675 (progn
1676 (and (> (point) bol) (setq last-cstart (point)))
1677 ;; NOTE Emacs 19 has a misfeature whereby calling
1678 ;; parse-partial-sexp with COMMENTSTOP set and with
1679 ;; an initial list that says point is in a comment
1680 ;; will cause an immediate return. So we must skip
1681 ;; over the comment ourselves.
1682 (beginning-of-line 2)))
1683 ;; Frob the state to make it look like we aren't in a
1684 ;; comment.
1685 (setcar (nthcdr 4 state) nil))))
1686 (and last-cstart
1687 (goto-char last-cstart))
1688 (cons real-comment state)))
1690 (defun tcl-hairy-in-comment ()
1691 "Return t if point is in a comment, and leave point at beginning
1692 of comment."
1693 (let ((save (point)))
1694 (tcl-beginning-of-defun)
1695 (car (tcl-hairy-scan-for-comment nil save nil))))
1697 (defun tcl-simple-in-comment ()
1698 "Return t if point is in comment, and leave point at beginning
1699 of comment. This is faster that `tcl-hairy-in-comment', but is
1700 correct less often."
1701 (let ((save (point))
1702 comment)
1703 (beginning-of-line)
1704 (while (and (< (point) save) (not comment))
1705 (search-forward "#" save 'move)
1706 (setq comment (tcl-real-comment-p)))
1707 comment))
1709 (defun tcl-in-comment ()
1710 "Return t if point is in comment, and leave point at beginning
1711 of comment."
1712 (if (and tcl-pps-has-arg-6
1713 tcl-use-hairy-comment-detector)
1714 (tcl-hairy-in-comment)
1715 (tcl-simple-in-comment)))
1717 (defun tcl-do-fill-paragraph (ignore)
1718 "fill-paragraph function for Tcl mode. Only fills in a comment."
1719 (let (in-comment col where)
1720 (save-excursion
1721 (end-of-line)
1722 (setq in-comment (tcl-in-comment))
1723 (if in-comment
1724 (progn
1725 (setq where (1+ (point)))
1726 (setq col (1- (current-column))))))
1727 (and in-comment
1728 (save-excursion
1729 (back-to-indentation)
1730 (= col (current-column)))
1731 ;; In a comment. Set the fill prefix, and find the paragraph
1732 ;; boundaries by searching for lines that look like
1733 ;; comment-only lines.
1734 (let ((fill-prefix (buffer-substring (progn
1735 (beginning-of-line)
1736 (point))
1737 where))
1738 p-start p-end)
1739 ;; Search backwards.
1740 (save-excursion
1741 (while (looking-at "^[ \t]*#")
1742 (forward-line -1))
1743 (forward-line)
1744 (setq p-start (point)))
1746 ;; Search forwards.
1747 (save-excursion
1748 (while (looking-at "^[ \t]*#")
1749 (forward-line))
1750 (setq p-end (point)))
1752 ;; Narrow and do the fill.
1753 (save-restriction
1754 (narrow-to-region p-start p-end)
1755 (fill-paragraph ignore)))))
1758 (defun tcl-do-auto-fill ()
1759 "Auto-fill function for Tcl mode. Only auto-fills in a comment."
1760 (if (> (current-column) fill-column)
1761 (let ((fill-prefix "# ")
1762 in-comment col)
1763 (save-excursion
1764 (setq in-comment (tcl-in-comment))
1765 (if in-comment
1766 (setq col (1- (current-column)))))
1767 (if in-comment
1768 (progn
1769 (do-auto-fill)
1770 (save-excursion
1771 (back-to-indentation)
1772 (delete-region (point) (save-excursion
1773 (beginning-of-line)
1774 (point)))
1775 (indent-to-column col)))))))
1780 ;; Help-related code.
1783 (defvar tcl-help-saved-dirs nil
1784 "Saved help directories.
1785 If `tcl-help-directory-list' changes, this allows `tcl-help-on-word'
1786 to update the alist.")
1788 (defvar tcl-help-alist nil
1789 "Alist with command names as keys and filenames as values.")
1791 (defun tcl-help-snarf-commands (dirlist)
1792 "Build alist of commands and filenames."
1793 (while dirlist
1794 (let ((files (directory-files (car dirlist) t)))
1795 (while files
1796 (if (and (file-directory-p (car files))
1797 (not
1798 (let ((fpart (file-name-nondirectory (car files))))
1799 (or (equal fpart ".")
1800 (equal fpart "..")))))
1801 (let ((matches (directory-files (car files) t)))
1802 (while matches
1803 (or (file-directory-p (car matches))
1804 (setq tcl-help-alist
1805 (cons
1806 (cons (file-name-nondirectory (car matches))
1807 (car matches))
1808 tcl-help-alist)))
1809 (setq matches (cdr matches)))))
1810 (setq files (cdr files))))
1811 (setq dirlist (cdr dirlist))))
1813 (defun tcl-reread-help-files ()
1814 "Set up to re-read files, and then do it."
1815 (interactive)
1816 (message "Building Tcl help file index...")
1817 (setq tcl-help-saved-dirs tcl-help-directory-list)
1818 (setq tcl-help-alist nil)
1819 (tcl-help-snarf-commands tcl-help-directory-list)
1820 (message "Building Tcl help file index...done"))
1822 (defun tcl-word-no-props ()
1823 "Like current-word, but strips properties."
1824 (let ((word (current-word)))
1825 (and (fboundp 'set-text-properties)
1826 (set-text-properties 0 (length word) nil word))
1827 word))
1829 (defun tcl-current-word (flag)
1830 "Return current command word, or nil.
1831 If FLAG is nil, just uses `current-word'.
1832 Otherwise scans backward for most likely Tcl command word."
1833 (if (and flag
1834 (memq major-mode '(tcl-mode inferior-tcl-mode)))
1835 (condition-case nil
1836 (save-excursion
1837 ;; Look backward for first word actually in alist.
1838 (if (bobp)
1840 (while (and (not (bobp))
1841 (not (tcl-real-command-p)))
1842 (backward-sexp)))
1843 (if (assoc (tcl-word-no-props) tcl-help-alist)
1844 (tcl-word-no-props)))
1845 (error nil))
1846 (tcl-word-no-props)))
1848 ;;;###autoload
1849 (defun tcl-help-on-word (command &optional arg)
1850 "Get help on Tcl command. Default is word at point.
1851 Prefix argument means invert sense of `tcl-use-smart-word-finder'."
1852 (interactive
1853 (list
1854 (progn
1855 (if (not (equal tcl-help-directory-list tcl-help-saved-dirs))
1856 (tcl-reread-help-files))
1857 (let ((word (tcl-current-word
1858 (if current-prefix-arg
1859 (not tcl-use-smart-word-finder)
1860 tcl-use-smart-word-finder))))
1861 (completing-read
1862 (if (or (null word) (string= word ""))
1863 "Help on Tcl command: "
1864 (format "Help on Tcl command (default %s): " word))
1865 tcl-help-alist nil t)))
1866 current-prefix-arg))
1867 (if (not (equal tcl-help-directory-list tcl-help-saved-dirs))
1868 (tcl-reread-help-files))
1869 (if (string= command "")
1870 (setq command (tcl-current-word
1871 (if arg
1872 (not tcl-use-smart-word-finder)
1873 tcl-use-smart-word-finder))))
1874 (let* ((help (get-buffer-create "*Tcl help*"))
1875 (cell (assoc command tcl-help-alist))
1876 (file (and cell (cdr cell))))
1877 (set-buffer help)
1878 (delete-region (point-min) (point-max))
1879 (if file
1880 (progn
1881 (insert "*** " command "\n\n")
1882 (insert-file-contents file))
1883 (if (string= command "")
1884 (insert "Magical Pig!")
1885 (insert "Tcl command " command " not in help\n")))
1886 (set-buffer-modified-p nil)
1887 (goto-char (point-min))
1888 (display-buffer help)))
1893 ;; Other interactive stuff.
1896 (defvar tcl-previous-dir/file nil
1897 "Record last directory and file used in loading.
1898 This holds a cons cell of the form `(DIRECTORY . FILE)'
1899 describing the last `tcl-load-file' command.")
1901 (defun tcl-load-file (file &optional and-go)
1902 "Load a Tcl file into the inferior Tcl process.
1903 Prefix argument means switch to the Tcl buffer afterwards."
1904 (interactive
1905 (list
1906 ;; car because comint-get-source returns a list holding the
1907 ;; filename.
1908 (car (comint-get-source "Load Tcl file: "
1909 (or (and
1910 (eq major-mode 'tcl-mode)
1911 (buffer-file-name))
1912 tcl-previous-dir/file)
1913 '(tcl-mode) t))
1914 current-prefix-arg))
1915 (comint-check-source file)
1916 (setq tcl-previous-dir/file (cons (file-name-directory file)
1917 (file-name-nondirectory file)))
1918 (tcl-send-string (inferior-tcl-proc)
1919 (format inferior-tcl-source-command (tcl-quote file)))
1920 (if and-go (switch-to-tcl t)))
1922 (defun tcl-restart-with-file (file &optional and-go)
1923 "Restart inferior Tcl with file.
1924 If an inferior Tcl process exists, it is killed first.
1925 Prefix argument means switch to the Tcl buffer afterwards."
1926 (interactive
1927 (list
1928 (car (comint-get-source "Restart with Tcl file: "
1929 (or (and
1930 (eq major-mode 'tcl-mode)
1931 (buffer-file-name))
1932 tcl-previous-dir/file)
1933 '(tcl-mode) t))
1934 current-prefix-arg))
1935 (let* ((buf (if (eq major-mode 'inferior-tcl-mode)
1936 (current-buffer)
1937 inferior-tcl-buffer))
1938 (proc (and buf (get-process buf))))
1939 (cond
1940 ((not (and buf (get-buffer buf)))
1941 ;; I think this will be ok.
1942 (inferior-tcl tcl-application)
1943 (tcl-load-file file and-go))
1944 ((or
1945 (not (comint-check-proc buf))
1946 (yes-or-no-p
1947 "A Tcl process is running, are you sure you want to reset it? "))
1948 (save-excursion
1949 (comint-check-source file)
1950 (setq tcl-previous-dir/file (cons (file-name-directory file)
1951 (file-name-nondirectory file)))
1952 (comint-exec (get-buffer-create buf)
1953 (if proc
1954 (process-name proc)
1955 "inferior-tcl")
1956 tcl-application file tcl-command-switches)
1957 (if and-go (switch-to-tcl t)))))))
1959 ;; FIXME I imagine you can do this under Emacs 18. I just don't know
1960 ;; how.
1961 (defun tcl-auto-fill-mode (&optional arg)
1962 "Like `auto-fill-mode', but controls filling of Tcl comments."
1963 (interactive "P")
1964 (and (not tcl-using-emacs-19)
1965 (error "You must use Emacs 19 to get this feature."))
1966 ;; Following code taken from "auto-fill-mode" (simple.el).
1967 (prog1
1968 (setq auto-fill-function
1969 (if (if (null arg)
1970 (not auto-fill-function)
1971 (> (prefix-numeric-value arg) 0))
1972 'tcl-do-auto-fill
1973 nil))
1974 (force-mode-line-update)))
1976 ;; hilit19 support from "Chris Alfeld" <calfeld@math.utah.edu>
1977 (defun tcl-hilit ()
1978 (hilit-set-mode-patterns
1979 '(tcl-mode)
1981 ("\\(^ *\\|\; *\\)#.*$" nil comment)
1982 ("[^\\]\\(\\$[A-Za-z0-9\\-\\_./\\(\\)]+\\)" 1 label)
1983 ("[^_]\\<\\(append\\|array\\|auto_execok\\|auto_load\\|auto_mkindex\\|auto_reset\\|break\\|case\\|catch\\|cd\\|close\\|concat\\|continue\\|eof\\|error\\|eval\\|exec\\|exit\\|expr\\|file\\|flush\\|for\\|foreach\\|format\\|gets\\|glob\\|global\\|history\\|if\\|incr\\|info\\|join\\|lappend\\|lindex\\|linsert\\|list\\|llength\\|lrange\\|lreplace\\|lsearch\\|lsort\\|open\\|pid\\|proc\\|puts\\|pwd\\|read\\|regexp\\|regsub\\|rename\\|return\\|scan\\|seek\\|set\\|source\\|split\\|string\\|switch\\|tell\\|time\\|trace\\|unknown\\|unset\\|uplevel\\|upvar\\|while\\)\\>[^_]" 1 keyword) ; tcl keywords
1984 ("[^_]\\<\\(after\\|bell\\|bind\\|bindtags\\|clipboard\\|destroy\\|fileevent\\|focus\\|grab\\|image\\|lower\\|option\\|pack\\|place\\|raise\\|scale\\|selection\\|send\\|subst\\|tk\\|tk_popup\\|tkwait\\|update\\|winfo\\|wm\\)\\>[^_]" 1 define) ; tk keywords
1985 ("[^_]\\<\\(button\\|canvas\\|checkbutton\\|entry\\|frame\\|label\\|listbox\\|menu\\|menubutton\\|message\\|radiobutton\\|scrollbar\\|text\\|toplevel\\)\\>[^_]" 1 decl) ; tk widgets
1986 ("[^_]\\<\\(tix\\((ButtonBox\\|Baloon\\|Control\\|DirList\\|ExFileSelectBox\\|ExFileSelectDialog\\|FileEntry\\|HList\\|LabelEntry\\|LabelFrame\\|NoteBook\\|OptionMenu\\|PanedWindow\\|PopupMenu\\|ScrolledHList\\|ScrolledText\\|ScrolledWindow\\|Select\\|StdButtonBox\\)\\)\\>[^_]" 1 defun) ; tix widgets
1987 ("[{}\\\"\\(\\)]" nil include) ; misc punctuation
1990 (defun tcl-electric-hash (&optional count)
1991 "Insert a `#' and quote if it does not start a real comment.
1992 Prefix arg is number of `#'s to insert.
1993 See variable `tcl-electric-hash-style' for description of quoting
1994 styles."
1995 (interactive "p")
1996 (or count (setq count 1))
1997 (if (> count 0)
1998 (let ((type
1999 (if (eq tcl-electric-hash-style 'smart)
2000 (if (> count 3) ; FIXME what is "smart"?
2001 'quote
2002 'backslash)
2003 tcl-electric-hash-style))
2004 comment)
2005 (if type
2006 (progn
2007 (save-excursion
2008 (insert "#")
2009 (setq comment (tcl-in-comment)))
2010 (delete-char 1)
2011 (and tcl-explain-indentation (message "comment: %s" comment))
2012 (cond
2013 ((eq type 'quote)
2014 (if (not comment)
2015 (insert "\"")))
2016 ((eq type 'backslash)
2017 ;; The following will set count to 0, so the
2018 ;; insert-char can still be run.
2019 (if (not comment)
2020 (while (> count 0)
2021 (insert "\\#")
2022 (setq count (1- count)))))
2023 (t nil))))
2024 (insert-char ?# count))))
2026 (defun tcl-hashify-buffer ()
2027 "Quote all `#'s in current buffer that aren't Tcl comments."
2028 (interactive)
2029 (save-excursion
2030 (goto-char (point-min))
2031 (if (and tcl-pps-has-arg-6 tcl-use-hairy-comment-detector)
2032 (let (state
2033 result)
2034 (while (< (point) (point-max))
2035 (setq result (tcl-hairy-scan-for-comment state (point-max) t))
2036 (if (car result)
2037 (beginning-of-line 2)
2038 (backward-char)
2039 (if (eq ?# (following-char))
2040 (insert "\\"))
2041 (forward-char))
2042 (setq state (cdr result))))
2043 (while (and (< (point) (point-max))
2044 (search-forward "#" nil 'move))
2045 (if (tcl-real-comment-p)
2046 (beginning-of-line 2)
2047 ;; There's really no good way for the simple converter to
2048 ;; work. So we just quote # if it isn't already quoted.
2049 ;; Bogus, but it works.
2050 (backward-char)
2051 (if (not (eq ?\\ (preceding-char)))
2052 (insert "\\"))
2053 (forward-char))))))
2055 (defun tcl-indent-for-comment ()
2056 "Indent this line's comment to comment column, or insert an empty comment.
2057 Is smart about syntax of Tcl comments.
2058 Parts of this were taken from indent-for-comment (simple.el)."
2059 (interactive "*")
2060 (end-of-line)
2061 (or (tcl-in-comment)
2062 (progn
2063 ;; Not in a comment, so we have to insert one. Create an
2064 ;; empty comment (since there isn't one on this line). If
2065 ;; line is not blank, make sure we insert a ";" first.
2066 (skip-chars-backward " \t")
2067 (let ((eolpoint (point)))
2068 (beginning-of-line)
2069 (if (/= (point) eolpoint)
2070 (progn
2071 (goto-char eolpoint)
2072 (insert
2073 (if (tcl-real-command-p) "" ";")
2074 "# ")
2075 (backward-char))))))
2076 ;; Point is just after the "#" starting a comment. Move it as
2077 ;; appropriate.
2078 (let* ((indent (if comment-indent-hook
2079 (funcall comment-indent-hook)
2080 (funcall comment-indent-function)))
2081 (begpos (progn
2082 (backward-char)
2083 (point))))
2084 (if (/= begpos indent)
2085 (progn
2086 (skip-chars-backward " \t" (save-excursion
2087 (beginning-of-line)
2088 (point)))
2089 (delete-region (point) begpos)
2090 (indent-to indent)))
2091 (looking-at comment-start-skip) ; Always true.
2092 (goto-char (match-end 0))
2093 ;; I don't like the effect of the next two.
2094 ;;(skip-chars-backward " \t" (match-beginning 0))
2095 ;;(skip-chars-backward "^ \t" (match-beginning 0))
2098 ;; The following was inspired by the Tcl editing mode written by
2099 ;; Gregor Schmid <schmid@fb3-s7.math.TU-Berlin.DE>. His version also
2100 ;; attempts to snarf the command line options from the command line,
2101 ;; but I didn't think that would really be that helpful (doesn't seem
2102 ;; like it owould be right enough. His version also looks for the
2103 ;; "#!/bin/csh ... exec" hack, but that seemed even less useful.
2104 ;; FIXME should make sure that the application mentioned actually
2105 ;; exists.
2106 (defun tcl-guess-application ()
2107 "Attempt to guess Tcl application by looking at first line.
2108 The first line is assumed to look like \"#!.../program ...\"."
2109 (save-excursion
2110 (goto-char (point-min))
2111 (if (looking-at "#![^ \t]*/\\([^ \t\n/]+\\)\\([ \t]\\|$\\)")
2112 (progn
2113 (make-local-variable 'tcl-application)
2114 (setq tcl-application (buffer-substring (match-beginning 1)
2115 (match-end 1)))))))
2117 ;; This only exists to put on the menubar. I couldn't figure out any
2118 ;; other way to do it. FIXME should take "number of #-marks"
2119 ;; argument.
2120 (defun tcl-uncomment-region (beg end)
2121 "Uncomment region."
2122 (interactive "r")
2123 (comment-region beg end -1))
2128 ;; XEmacs menu support.
2129 ;; Taken from schmid@fb3-s7.math.TU-Berlin.DE (Gregor Schmid),
2130 ;; who wrote a different Tcl mode.
2131 ;; We also have support for menus in FSF. We do this by
2132 ;; loading the XEmacs menu emulation code.
2135 (defun tcl-popup-menu (e)
2136 (interactive "@e")
2137 (and tcl-using-emacs-19
2138 (not tcl-using-xemacs-19)
2139 (if tcl-using-emacs-19-23
2140 (require 'lmenu)
2141 ;; CAVEATS:
2142 ;; * lmenu.el provides 'menubar, which is bogus.
2143 ;; * lmenu.el causes menubars to be turned on everywhere.
2144 ;; Doubly bogus!
2145 ;; Both of these problems are fixed in Emacs 19.23. People
2146 ;; using an Emacs before that just suffer.
2147 (require 'menubar "lmenu"))) ;; This is annoying
2148 ;; IMHO popup-menu should be autoloaded in FSF Emacs. Oh well.
2149 (popup-menu tcl-xemacs-menu))
2154 ;; Quoting and unquoting functions.
2157 ;; This quoting is sufficient to protect eg a filename from any sort
2158 ;; of expansion or splitting. Tcl quoting sure sucks.
2159 (defun tcl-quote (string)
2160 "Quote STRING according to Tcl rules."
2161 (mapconcat (function (lambda (char)
2162 (if (memq char '(?[ ?] ?{ ?} ?\\ ?\" ?$ ? ?\;))
2163 (concat "\\" (char-to-string char))
2164 (char-to-string char))))
2165 string ""))
2170 ;; Bug reporting.
2173 (and (fboundp 'eval-when-compile)
2174 (eval-when-compile
2175 (require 'reporter)))
2177 (defun tcl-submit-bug-report ()
2178 "Submit via mail a bug report on Tcl mode."
2179 (interactive)
2180 (require 'reporter)
2181 (and
2182 (y-or-n-p "Do you really want to submit a bug report on Tcl mode? ")
2183 (reporter-submit-bug-report
2184 tcl-maintainer
2185 (concat "Tcl mode " tcl-version)
2186 '(tcl-indent-level
2187 tcl-continued-indent-level
2188 tcl-auto-newline
2189 tcl-tab-always-indent
2190 tcl-use-hairy-comment-detector
2191 tcl-electric-hash-style
2192 tcl-help-directory-list
2193 tcl-use-smart-word-finder
2194 tcl-application
2195 tcl-command-switches
2196 tcl-prompt-regexp
2197 inferior-tcl-source-command
2198 tcl-using-emacs-19
2199 tcl-using-emacs-19-23
2200 tcl-using-xemacs-19
2201 tcl-proc-list
2202 tcl-proc-regexp
2203 tcl-typeword-list
2204 tcl-keyword-list
2205 tcl-font-lock-keywords
2206 tcl-pps-has-arg-6))))
2210 (provide 'tcl)
2212 ;;; tcl.el ends here