Remove extra TAB in Greek entries.
[emacs.git] / lisp / progmodes / tcl.el
blobece48fa7be6d481bb979a4602eb6035887c3c75d
1 ;;; tcl.el --- Tcl code editing commands for Emacs
3 ;; Copyright (C) 1994, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
5 ;; Maintainer: FSF
6 ;; Author: Tom Tromey <tromey@redhat.com>
7 ;; Chris Lindblad <cjl@lcs.mit.edu>
8 ;; Keywords: languages tcl modes
9 ;; Version: $Revision: 1.71 $
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 2, 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 the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
28 ;; BEFORE USE:
30 ;; If you plan to use the interface to the TclX help files, you must
31 ;; set the variable tcl-help-directory-list to point to the topmost
32 ;; directories containing the TclX help files. Eg:
34 ;; (setq tcl-help-directory-list '("/usr/local/lib/tclx/help"))
36 ;;; Commentary:
38 ;; CUSTOMIZATION NOTES:
39 ;; * tcl-proc-list can be used to customize a list of things that
40 ;; "define" other things. Eg in my project I put "defvar" in this
41 ;; list.
42 ;; * tcl-typeword-list is similar, but uses font-lock-type-face.
43 ;; * tcl-keyword-list is a list of keywords. I've generally used this
44 ;; for flow-control words. Eg I add "unwind_protect" to this list.
45 ;; * tcl-type-alist can be used to minimally customize indentation
46 ;; according to context.
48 ;; THANKS FOR CRITICISM AND SUGGESTIONS TO:
49 ;; Guido Bosch <Guido.Bosch@loria.fr>
50 ;; pgs1002@esc.cam.ac.uk (Dr P.G. Sjoerdsma)
51 ;; Mike Scheidler <c23mts@kocrsv01.delcoelect.com>
52 ;; Matt Newman <men@charney.colorado.edu>
53 ;; rwhitby@research.canon.oz.au (Rod Whitby)
54 ;; h9118101@hkuxa.hku.hk (Yip Chi Lap [Beta])
55 ;; Pertti Tapio Kasanen <ptk@delta.hut.fi>
56 ;; schmid@fb3-s7.math.TU-Berlin.DE (Gregor Schmid)
57 ;; warsaw@nlm.nih.gov (Barry A. Warsaw)
58 ;; Carl Witty <cwitty@ai.mit.edu>
59 ;; T. V. Raman <raman@crl.dec.com>
60 ;; Jesper Pedersen <blackie@imada.ou.dk>
61 ;; dfarmer@evolving.com (Doug Farmer)
62 ;; "Chris Alfeld" <calfeld@math.utah.edu>
63 ;; Ben Wing <ben@xemacs.org>
65 ;; KNOWN BUGS:
66 ;; * In Tcl "#" is not always a comment character. This can confuse tcl.el
67 ;; in certain circumstances. For now the only workaround is to use
68 ;; font-lock which will mark the # chars accordingly or enclose offending
69 ;; hash characters in quotes or precede them with a backslash. Note that
70 ;; using braces won't work -- quotes change the syntax class of characters
71 ;; between them, while braces do not. If you don't use font-lock, the
72 ;; electric-# mode helps alleviate this problem somewhat.
73 ;; * indent-tcl-exp is untested.
75 ;; TODO:
76 ;; * make add-log-tcl-defun smarter. should notice if we are in the
77 ;; middle of a defun, or between defuns. should notice if point is
78 ;; on first line of defun (or maybe even in comments before defun).
79 ;; * Allow continuation lines to be indented under the first argument
80 ;; of the preceding line, like this:
81 ;; [list something \
82 ;; something-else]
83 ;; * There is a request that indentation work like this:
84 ;; button .fred -label Fred \
85 ;; -command {puts fred}
86 ;; * Should have tcl-complete-symbol that queries the inferior process.
87 ;; * Should have describe-symbol that works by sending the magic
88 ;; command to a tclX process.
89 ;; * Need C-x C-e binding (tcl-eval-last-exp).
90 ;; * Write indent-region function that is faster than indenting each
91 ;; line individually.
92 ;; * tcl-figure-type should stop at "beginning of line" (only ws
93 ;; before point, and no "\" on previous line). (see tcl-real-command-p).
94 ;; * overrides some comint keybindings; fix.
95 ;; * Trailing \ will eat blank lines. Should deal with this.
96 ;; (this would help catch some potential bugs).
97 ;; * Inferior should display in half the screen, not the whole screen.
98 ;; * Indentation should deal with "switch".
99 ;; * Consider writing code to find help files automatically (for
100 ;; common cases).
101 ;; * `#' shouldn't insert `\#' when point is in string.
105 ;;; Code:
107 (eval-when-compile
108 (require 'imenu)
109 (require 'outline)
110 (require 'dabbrev)
111 (require 'add-log))
113 (require 'comint)
116 ;; User variables.
119 (defgroup tcl nil
120 "Major mode for editing Tcl source in Emacs"
121 :group 'languages)
123 (defcustom tcl-indent-level 4
124 "*Indentation of Tcl statements with respect to containing block."
125 :group 'tcl
126 :type 'integer)
128 (defcustom tcl-continued-indent-level 4
129 "*Indentation of continuation line relative to first line of command."
130 :group 'tcl
131 :type 'integer)
133 (defcustom tcl-auto-newline nil
134 "*Non-nil means automatically newline before and after braces you insert."
135 :group 'tcl
136 :type 'boolean)
138 (defcustom tcl-tab-always-indent t
139 "*Control effect of TAB key.
140 If t (the default), always indent current line.
141 If nil and point is not in the indentation area at the beginning of
142 the line, a TAB is inserted.
143 Other values cause the first possible action from the following list
144 to take place:
146 1. Move from beginning of line to correct indentation.
147 2. Delete an empty comment.
148 3. Move forward to start of comment, indenting if necessary.
149 4. Move forward to end of line, indenting if necessary.
150 5. Create an empty comment.
151 6. Move backward to start of comment, indenting if necessary."
152 :group 'tcl
153 :type '(choice (const :tag "Always" t)
154 (const :tag "Beginning only" nil)
155 (const :tag "Maybe move or make or delete comment" 'tcl)))
158 (defcustom tcl-electric-hash-style nil ;; 'smart
159 "*Style of electric hash insertion to use.
160 Possible values are `backslash', meaning that `\\' quoting should be
161 done; `quote', meaning that `\"' quoting should be done; `smart',
162 meaning that the choice between `backslash' and `quote' should be
163 made depending on the number of hashes inserted; or nil, meaning that
164 no quoting should be done. Any other value for this variable is
165 taken to mean `smart'. The default is nil."
166 :group 'tcl
167 :type '(choice (const backslash) (const quote) (const smart) (const nil)))
169 (defcustom tcl-help-directory-list nil
170 "*List of topmost directories containing TclX help files."
171 :group 'tcl
172 :type '(repeat directory))
174 (defcustom tcl-use-smart-word-finder t
175 "*If not nil, use smart way to find current word, for Tcl help feature."
176 :group 'tcl
177 :type 'boolean)
179 (defcustom tcl-application "wish"
180 "*Name of Tcl program to run in inferior Tcl mode."
181 :group 'tcl
182 :type 'string)
184 (defcustom tcl-command-switches nil
185 "*List of switches to supply to the `tcl-application' program."
186 :group 'tcl
187 :type '(repeat string))
189 (defcustom tcl-prompt-regexp "^\\(% \\|\\)"
190 "*If not nil, a regexp that will match the prompt in the inferior process.
191 If nil, the prompt is the name of the application with \">\" appended.
193 The default is \"^\\(% \\|\\)\", which will match the default primary
194 and secondary prompts for tclsh and wish."
195 :group 'tcl
196 :type 'regexp)
198 (defcustom inferior-tcl-source-command "source %s\n"
199 "*Format-string for building a Tcl command to load a file.
200 This format string should use `%s' to substitute a file name
201 and should result in a Tcl expression that will command the
202 inferior Tcl to load that file. The filename will be appropriately
203 quoted for Tcl."
204 :group 'tcl
205 :type 'string)
208 ;; Keymaps, abbrevs, syntax tables.
211 (defvar tcl-mode-map
212 (let ((map (make-sparse-keymap)))
213 (define-key map "{" 'tcl-electric-char)
214 (define-key map "}" 'tcl-electric-brace)
215 (define-key map "[" 'tcl-electric-char)
216 (define-key map "]" 'tcl-electric-char)
217 (define-key map ";" 'tcl-electric-char)
218 (define-key map "#" 'tcl-electric-hash) ;Remove? -stef
219 (define-key map "\e\C-q" 'tcl-indent-exp)
220 (define-key map "\177" 'backward-delete-char-untabify)
221 (define-key map "\t" 'tcl-indent-command)
222 (define-key map "\M-\C-x" 'tcl-eval-defun)
223 (define-key map "\C-c\C-i" 'tcl-help-on-word)
224 (define-key map "\C-c\C-v" 'tcl-eval-defun)
225 (define-key map "\C-c\C-f" 'tcl-load-file)
226 (define-key map "\C-c\C-t" 'inferior-tcl)
227 (define-key map "\C-c\C-x" 'tcl-eval-region)
228 (define-key map "\C-c\C-s" 'switch-to-tcl)
229 map)
230 "Keymap used in `tcl-mode'.")
232 (defvar tcl-mode-syntax-table
233 (let ((st (make-syntax-table)))
234 (modify-syntax-entry ?% "_" st)
235 (modify-syntax-entry ?@ "_" st)
236 (modify-syntax-entry ?& "_" st)
237 (modify-syntax-entry ?* "_" st)
238 (modify-syntax-entry ?+ "_" st)
239 (modify-syntax-entry ?- "_" st)
240 (modify-syntax-entry ?. "_" st)
241 (modify-syntax-entry ?: "_" st)
242 (modify-syntax-entry ?! "_" st)
243 (modify-syntax-entry ?$ "_" st) ; FIXME use "'"?
244 (modify-syntax-entry ?/ "_" st)
245 (modify-syntax-entry ?~ "_" st)
246 (modify-syntax-entry ?< "_" st)
247 (modify-syntax-entry ?= "_" st)
248 (modify-syntax-entry ?> "_" st)
249 (modify-syntax-entry ?| "_" st)
250 (modify-syntax-entry ?\( "()" st)
251 (modify-syntax-entry ?\) ")(" st)
252 (modify-syntax-entry ?\; "." st)
253 (modify-syntax-entry ?\n ">" st)
254 ;; (modify-syntax-entry ?\f ">" st)
255 (modify-syntax-entry ?# "<" st)
257 "Syntax table in use in `tcl-mode' buffers.")
259 (defvar inferior-tcl-mode-map
260 ;; FIXME we override comint keybindings here.
261 ;; Maybe someone has a better set?
262 (let ((map (make-sparse-keymap)))
263 ;; Will inherit from `comint-mode-map' thanks to define-derived-mode.
264 (define-key map "\t" 'comint-dynamic-complete)
265 (define-key map "\M-?" 'comint-dynamic-list-filename-completions)
266 (define-key map "\177" 'backward-delete-char-untabify)
267 (define-key map "\M-\C-x" 'tcl-eval-defun)
268 (define-key map "\C-c\C-i" 'tcl-help-on-word)
269 (define-key map "\C-c\C-v" 'tcl-eval-defun)
270 (define-key map "\C-c\C-f" 'tcl-load-file)
271 (define-key map "\C-c\C-t" 'inferior-tcl)
272 (define-key map "\C-c\C-x" 'tcl-eval-region)
273 (define-key map "\C-c\C-s" 'switch-to-tcl)
274 map)
275 "Keymap used in `inferior-tcl-mode'.")
277 (easy-menu-define tcl-mode-menu tcl-mode-map "Menu used in `tcl-mode'."
278 '("Tcl"
279 ["Beginning of function" beginning-of-defun t]
280 ["End of function" end-of-defun t]
281 ["Mark function" mark-defun t]
282 ["Indent region" indent-region (mark t)]
283 ["Comment region" comment-region (mark t)]
284 ["Uncomment region" uncomment-region (mark t)]
285 "----"
286 ["Show Tcl process buffer" inferior-tcl t]
287 ["Send function to Tcl process" tcl-eval-defun
288 (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))]
289 ["Send region to Tcl process" tcl-eval-region
290 (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))]
291 ["Send file to Tcl process" tcl-load-file
292 (and inferior-tcl-buffer (get-buffer inferior-tcl-buffer))]
293 ["Restart Tcl process with file" tcl-restart-with-file t]
294 "----"
295 ["Tcl help" tcl-help-on-word tcl-help-directory-list]))
297 (defvar inferior-tcl-buffer nil
298 "*The current inferior-tcl process buffer.
300 MULTIPLE PROCESS SUPPORT
301 ===========================================================================
302 To run multiple Tcl processes, you start the first up with
303 \\[inferior-tcl]. It will be in a buffer named `*inferior-tcl*'.
304 Rename this buffer with \\[rename-buffer]. You may now start up a new
305 process with another \\[inferior-tcl]. It will be in a new buffer,
306 named `*inferior-tcl*'. You can switch between the different process
307 buffers with \\[switch-to-buffer].
309 Commands that send text from source buffers to Tcl processes -- like
310 `tcl-eval-defun' or `tcl-load-file' -- have to choose a process to
311 send to, when you have more than one Tcl process around. This is
312 determined by the global variable `inferior-tcl-buffer'. Suppose you
313 have three inferior Lisps running:
314 Buffer Process
315 foo inferior-tcl
316 bar inferior-tcl<2>
317 *inferior-tcl* inferior-tcl<3>
318 If you do a \\[tcl-eval-defun] command on some Lisp source code, what
319 process do you send it to?
321 - If you're in a process buffer (foo, bar, or *inferior-tcl*),
322 you send it to that process.
323 - If you're in some other buffer (e.g., a source file), you
324 send it to the process attached to buffer `inferior-tcl-buffer'.
325 This process selection is performed by function `inferior-tcl-proc'.
327 Whenever \\[inferior-tcl] fires up a new process, it resets
328 `inferior-tcl-buffer' to be the new process's buffer. If you only run
329 one process, this does the right thing. If you run multiple
330 processes, you can change `inferior-tcl-buffer' to another process
331 buffer with \\[set-variable].")
334 ;; Hooks and other customization.
337 (defvar tcl-mode-hook nil
338 "Hook run on entry to Tcl mode.
340 Several functions exist which are useful to run from your
341 `tcl-mode-hook' (see each function's documentation for more
342 information):
344 `tcl-guess-application'
345 Guesses a default setting for `tcl-application' based on any
346 \"#!\" line at the top of the file.
347 `tcl-hashify-buffer'
348 Quotes all \"#\" characters that don't correspond to actual
349 Tcl comments. (Useful when editing code not originally created
350 with this mode).
351 `tcl-auto-fill-mode'
352 Auto-filling of Tcl comments.
354 Add functions to the hook with `add-hook':
356 (add-hook 'tcl-mode-hook 'tcl-guess-application)")
359 (defvar tcl-proc-list
360 '("proc" "method" "itcl_class" "body" "configbody" "class")
361 "List of commands whose first argument defines something.
362 This exists because some people (eg, me) use `defvar' et al.
363 Call `tcl-set-proc-regexp' and `tcl-set-font-lock-keywords'
364 after changing this list.")
366 (defvar tcl-proc-regexp nil
367 "Regexp to use when matching proc headers.")
369 (defvar tcl-typeword-list
370 '("global" "upvar" "inherit" "public" "protected" "private"
371 "common" "itk_option" "variable")
372 "List of Tcl keywords denoting \"type\". Used only for highlighting.
373 Call `tcl-set-font-lock-keywords' after changing this list.")
375 ;; Generally I've picked control operators to be keywords.
376 (defvar tcl-keyword-list
377 '("if" "then" "else" "elseif" "for" "foreach" "break" "continue" "while"
378 "eval" "case" "in" "switch" "default" "exit" "error" "proc" "return"
379 "uplevel" "constructor" "destructor" "itcl_class" "loop" "for_array_keys"
380 "for_recursive_glob" "for_file" "method" "body" "configbody" "class"
381 "chain")
382 "List of Tcl keywords. Used only for highlighting.
383 Default list includes some TclX keywords.
384 Call `tcl-set-font-lock-keywords' after changing this list.")
386 (defvar tcl-font-lock-keywords nil
387 "Keywords to highlight for Tcl. See variable `font-lock-keywords'.
388 This variable is generally set from `tcl-proc-regexp',
389 `tcl-typeword-list', and `tcl-keyword-list' by the function
390 `tcl-set-font-lock-keywords'.")
392 (defvar tcl-font-lock-syntactic-keywords
393 ;; Mark the few `#' that are not comment-markers.
394 '(("[^;[{ \t\n][ \t]*\\(#\\)" (1 ".")))
395 "Syntactic keywords for `tcl-mode'.")
397 ;; FIXME need some way to recognize variables because array refs look
398 ;; like 2 sexps.
399 (defvar tcl-type-alist
400 '(("proc" nil tcl-expr tcl-commands)
401 ("method" nil tcl-expr tcl-commands)
402 ("destructor" tcl-commands)
403 ("constructor" tcl-commands)
404 ("expr" tcl-expr)
405 ("catch" tcl-commands)
406 ("if" tcl-expr "then" tcl-commands)
407 ("elseif" tcl-expr "then" tcl-commands)
408 ("elseif" tcl-expr tcl-commands)
409 ("if" tcl-expr tcl-commands)
410 ("while" tcl-expr tcl-commands)
411 ("for" tcl-commands tcl-expr tcl-commands tcl-commands)
412 ("foreach" nil nil tcl-commands)
413 ("for_file" nil nil tcl-commands)
414 ("for_array_keys" nil nil tcl-commands)
415 ("for_recursive_glob" nil nil nil tcl-commands)
416 ;; Loop handling is not perfect, because the third argument can be
417 ;; either a command or an expr, and there is no real way to look
418 ;; forward.
419 ("loop" nil tcl-expr tcl-expr tcl-commands)
420 ("loop" nil tcl-expr tcl-commands))
421 "Alist that controls indentation.
422 \(Actually, this really only controls what happens on continuation lines).
423 Each entry looks like `(KEYWORD TYPE ...)'.
424 Each type entry describes a sexp after the keyword, and can be one of:
425 * nil, meaning that this sexp has no particular type.
426 * tcl-expr, meaning that this sexp is an arithmetic expression.
427 * tcl-commands, meaning that this sexp holds Tcl commands.
428 * a string, which must exactly match the string at the corresponding
429 position for a match to be made.
431 For example, the entry for the \"loop\" command is:
433 (\"loop\" nil tcl-expr tcl-commands)
435 This means that the \"loop\" command has three arguments. The first
436 argument is ignored (for indentation purposes). The second argument
437 is a Tcl expression, and the last argument is Tcl commands.")
439 (defvar tcl-explain-indentation nil
440 "If not `nil', debugging message will be printed during indentation.")
444 ;; Here's another stab. I think this one actually works.
445 ;; We have to be careful that the open-brace following this regexp
446 ;; is indeed the one corresponding to the function's body so
447 ;; that end-of-defun works correctly. Tricky cases are:
448 ;; proc foo { {arg1 def} arg2 } {
449 ;; as well as
450 ;; proc foo { \n {arg1 def} \n arg2 } {
451 ;; The current setting handles the first case properly but not the second.
452 ;; It also fails if `proc' is not in column-0 (e.g. it's in a namespace).
453 (defconst tcl-omit-ws-regexp "^[^] \t\n#}].+[ \t]+")
458 ;; Some helper functions.
461 (defun tcl-set-proc-regexp ()
462 "Set `tcl-proc-regexp' from variable `tcl-proc-list'."
463 (setq tcl-proc-regexp
464 (concat "^\\s-*" (regexp-opt tcl-proc-list t) "[ \t]+")))
466 (defun tcl-set-font-lock-keywords ()
467 "Set `tcl-font-lock-keywords'.
468 Uses variables `tcl-proc-regexp' and `tcl-keyword-list'."
469 (setq tcl-font-lock-keywords
470 (list
471 ;; Names of functions (and other "defining things").
472 (list (concat tcl-proc-regexp "\\([^ \t\n]+\\)")
473 2 'font-lock-function-name-face)
475 ;; Names of type-defining things.
476 (list (concat "\\(\\s-\\|^\\)"
477 (regexp-opt tcl-typeword-list t)
478 "\\(\\s-\\|$\\)")
479 2 'font-lock-type-face)
481 ;; Keywords. Only recognized if surrounded by whitespace.
482 ;; FIXME consider using "not word or symbol", not
483 ;; "whitespace".
484 (cons (concat "\\(\\s-\\|^\\)"
485 ;; FIXME Use regexp-quote?
486 (regexp-opt tcl-keyword-list t)
487 "\\(\\s-\\|$\\)")
488 2))))
490 (if tcl-proc-regexp
492 (tcl-set-proc-regexp))
494 (if tcl-font-lock-keywords
496 (tcl-set-font-lock-keywords))
499 (defvar tcl-imenu-generic-expression
500 `((nil ,(concat tcl-proc-regexp "\\([-A-Za-z0-9_:+*]+\\)") 2))
501 "Imenu generic expression for `tcl-mode'. See `imenu-generic-expression'.")
506 ;; The mode itself.
509 ;;;###autoload
510 (define-derived-mode tcl-mode nil "Tcl"
511 "Major mode for editing Tcl code.
512 Expression and list commands understand all Tcl brackets.
513 Tab indents for Tcl code.
514 Paragraphs are separated by blank lines only.
515 Delete converts tabs to spaces as it moves back.
517 Variables controlling indentation style:
518 `tcl-indent-level'
519 Indentation of Tcl statements within surrounding block.
520 `tcl-continued-indent-level'
521 Indentation of continuation line relative to first line of command.
523 Variables controlling user interaction with mode (see variable
524 documentation for details):
525 `tcl-tab-always-indent'
526 Controls action of TAB key.
527 `tcl-auto-newline'
528 Non-nil means automatically newline before and after braces, brackets,
529 and semicolons inserted in Tcl code.
530 `tcl-use-smart-word-finder'
531 If not nil, use a smarter, Tcl-specific way to find the current
532 word when looking up help on a Tcl command.
534 Turning on Tcl mode runs `tcl-mode-hook'. Read the documentation for
535 `tcl-mode-hook' to see what kinds of interesting hook functions
536 already exist.
538 Commands:
539 \\{tcl-mode-map}"
540 (unless (and (boundp 'filladapt-mode) filladapt-mode)
541 (set (make-local-variable 'paragraph-ignore-fill-prefix) t))
543 (set (make-local-variable 'indent-line-function) 'tcl-indent-line)
544 (set (make-local-variable 'comment-indent-function) 'tcl-comment-indent)
545 ;; Tcl doesn't require a final newline.
546 ;; (make-local-variable 'require-final-newline)
547 ;; (setq require-final-newline t)
549 (set (make-local-variable 'comment-start) "# ")
550 (set (make-local-variable 'comment-start-skip)
551 "\\(\\(^\\|[;{[]\\)\\s-*\\)#+ *")
552 (set (make-local-variable 'comment-end) "")
554 (set (make-local-variable 'outline-regexp) ".")
555 (set (make-local-variable 'outline-level) 'tcl-outline-level)
557 (set (make-local-variable 'font-lock-defaults)
558 '(tcl-font-lock-keywords nil nil nil beginning-of-defun
559 (font-lock-syntactic-keywords . tcl-font-lock-syntactic-keywords)
560 (parse-sexp-lookup-properties . t)))
562 (set (make-local-variable 'imenu-generic-expression)
563 'tcl-imenu-generic-expression)
565 ;; Settings for new dabbrev code.
566 (set (make-local-variable 'dabbrev-case-fold-search) nil)
567 (set (make-local-variable 'dabbrev-case-replace) nil)
568 (set (make-local-variable 'dabbrev-abbrev-skip-leading-regexp) "[$!]")
569 (set (make-local-variable 'dabbrev-abbrev-char-regexp) "\\sw\\|\\s_")
571 ;; This can only be set to t in Emacs 19 and XEmacs.
572 ;; Emacs 18 and Epoch lose.
573 (set (make-local-variable 'parse-sexp-ignore-comments) t)
574 ;; XEmacs has defun-prompt-regexp, but I don't believe
575 ;; that it works for end-of-defun -- only for
576 ;; beginning-of-defun.
577 (set (make-local-variable 'defun-prompt-regexp) tcl-omit-ws-regexp)
578 ;; The following doesn't work in Lucid Emacs 19.6, but maybe
579 ;; it will appear in later versions.
580 (set (make-local-variable 'add-log-current-defun-function)
581 'tcl-add-log-defun)
583 (easy-menu-add tcl-mode-menu)
584 ;; Append Tcl menu to popup menu for XEmacs.
585 (if (boundp 'mode-popup-menu)
586 (setq mode-popup-menu
587 (cons (concat mode-name " Mode Commands") tcl-mode-menu))))
591 ;; This is used for braces, brackets, and semi (except for closing
592 ;; braces, which are handled specially).
593 (defun tcl-electric-char (arg)
594 "Insert character and correct line's indentation."
595 (interactive "p")
596 ;; Indent line first; this looks better if parens blink.
597 (tcl-indent-line)
598 (self-insert-command arg)
599 (if (and tcl-auto-newline (= last-command-char ?\;))
600 (progn
601 (newline)
602 (tcl-indent-line))))
604 ;; This is used for closing braces. If tcl-auto-newline is set, can
605 ;; insert a newline both before and after the brace, depending on
606 ;; context. FIXME should this be configurable? Does anyone use this?
607 (defun tcl-electric-brace (arg)
608 "Insert character and correct line's indentation."
609 (interactive "p")
610 ;; If auto-newlining and there is stuff on the same line, insert a
611 ;; newline first.
612 (if tcl-auto-newline
613 (progn
614 (if (save-excursion
615 (skip-chars-backward " \t")
616 (bolp))
618 (tcl-indent-line)
619 (newline))
620 ;; In auto-newline case, must insert a newline after each
621 ;; brace. So an explicit loop is needed.
622 (while (> arg 0)
623 (insert last-command-char)
624 (tcl-indent-line)
625 (newline)
626 (setq arg (1- arg))))
627 (self-insert-command arg))
628 (tcl-indent-line))
632 (defun tcl-indent-command (&optional arg)
633 "Indent current line as Tcl code, or in some cases insert a tab character.
634 If `tcl-tab-always-indent' is t (the default), always indent current line.
635 If `tcl-tab-always-indent' is nil and point is not in the indentation
636 area at the beginning of the line, a TAB is inserted.
637 Other values of `tcl-tab-always-indent' cause the first possible action
638 from the following list to take place:
640 1. Move from beginning of line to correct indentation.
641 2. Delete an empty comment.
642 3. Move forward to start of comment, indenting if necessary.
643 4. Move forward to end of line, indenting if necessary.
644 5. Create an empty comment.
645 6. Move backward to start of comment, indenting if necessary."
646 (interactive "p")
647 (cond
648 ((not tcl-tab-always-indent)
649 ;; Indent if in indentation area, otherwise insert TAB.
650 (if (<= (current-column) (current-indentation))
651 (tcl-indent-line)
652 (insert-tab arg)))
653 ((eq tcl-tab-always-indent t)
654 ;; Always indent.
655 (tcl-indent-line))
657 ;; "Perl-mode" style TAB command.
658 (let* ((ipoint (point))
659 (eolpoint (progn
660 (end-of-line)
661 (point)))
662 (comment-p (tcl-in-comment)))
663 (cond
664 ((= ipoint (line-beginning-position))
665 (beginning-of-line)
666 (tcl-indent-line)
667 ;; If indenting didn't leave us in column 0, go to the
668 ;; indentation. Otherwise leave point at end of line. This
669 ;; is a hack.
670 (if (= (point) (line-beginning-position))
671 (end-of-line)
672 (back-to-indentation)))
673 ((and comment-p (looking-at "[ \t]*$"))
674 ;; Empty comment, so delete it. We also delete any ";"
675 ;; characters at the end of the line. I think this is
676 ;; friendlier, but I don't know how other people will feel.
677 (backward-char)
678 (skip-chars-backward " \t;")
679 (delete-region (point) eolpoint))
680 ((and comment-p (< ipoint (point)))
681 ;; Before comment, so skip to it.
682 (tcl-indent-line)
683 (indent-for-comment))
684 ((/= ipoint eolpoint)
685 ;; Go to end of line (since we're not there yet).
686 (goto-char eolpoint)
687 (tcl-indent-line))
688 ((not comment-p)
689 (tcl-indent-line)
690 (comment-indent))
692 ;; Go to start of comment. We don't leave point where it is
693 ;; because we want to skip comment-start-skip.
694 (tcl-indent-line)
695 (indent-for-comment)))))))
697 (defun tcl-indent-line ()
698 "Indent current line as Tcl code.
699 Return the amount the indentation changed by."
700 (let ((indent (tcl-calculate-indent nil))
701 beg shift-amt
702 (case-fold-search nil)
703 (pos (- (point-max) (point))))
704 (beginning-of-line)
705 (setq beg (point))
706 (cond ((eq indent nil)
707 (setq indent (current-indentation)))
709 (skip-chars-forward " \t")
710 (if (listp indent) (setq indent (car indent)))
711 (cond ((= (following-char) ?})
712 (setq indent (- indent tcl-indent-level)))
713 ((= (following-char) ?\])
714 (setq indent (- indent 1))))))
715 (skip-chars-forward " \t")
716 (setq shift-amt (- indent (current-column)))
717 (if (zerop shift-amt)
718 (if (> (- (point-max) pos) (point))
719 (goto-char (- (point-max) pos)))
720 (delete-region beg (point))
721 (indent-to indent)
722 ;; If initial point was within line's indentation,
723 ;; position after the indentation. Else stay at same point in text.
724 (if (> (- (point-max) pos) (point))
725 (goto-char (- (point-max) pos))))
726 shift-amt))
728 (defun tcl-figure-type ()
729 "Determine type of sexp at point.
730 This is either `tcl-expr', `tcl-commands', or nil. Puts point at start
731 of sexp that indicates types.
733 See documentation for variable `tcl-type-alist' for more information."
734 (let ((count 0)
735 result
736 word-stack)
737 (while (and (< count 5)
738 (not result))
739 (condition-case nil
740 (progn
741 ;; FIXME should use "tcl-backward-sexp", which would skip
742 ;; over entire variables, etc.
743 (backward-sexp)
744 (if (looking-at "[a-zA-Z_]+")
745 (let ((list tcl-type-alist)
746 entry)
747 (setq word-stack (cons (tcl-word-no-props) word-stack))
748 (while (and list (not result))
749 (setq entry (car list))
750 (setq list (cdr list))
751 (let ((index 0))
752 (while (and entry (<= index count))
753 ;; Abort loop if string does not match word on
754 ;; stack.
755 (and (stringp (car entry))
756 (not (string= (car entry)
757 (nth index word-stack)))
758 (setq entry nil))
759 (setq entry (cdr entry))
760 (setq index (1+ index)))
761 (and (> index count)
762 (not (stringp (car entry)))
763 (setq result (car entry)))
765 (setq word-stack (cons nil word-stack))))
766 (error nil))
767 (setq count (1+ count)))
768 (and tcl-explain-indentation
769 (message "Indentation type %s" result))
770 result))
772 (defun tcl-calculate-indent (&optional parse-start)
773 "Return appropriate indentation for current line as Tcl code.
774 In usual case returns an integer: the column to indent to.
775 Returns nil if line starts inside a string, t if in a comment."
776 (save-excursion
777 (beginning-of-line)
778 (let* ((indent-point (point))
779 (case-fold-search nil)
780 (continued-line
781 (save-excursion
782 (if (bobp)
784 (backward-char)
785 (= ?\\ (preceding-char)))))
786 (continued-indent-value (if continued-line
787 tcl-continued-indent-level
789 state
790 containing-sexp
791 found-next-line)
792 (if parse-start
793 (goto-char parse-start)
794 (beginning-of-defun))
795 (while (< (point) indent-point)
796 (setq parse-start (point))
797 (setq state (parse-partial-sexp (point) indent-point 0))
798 (setq containing-sexp (car (cdr state))))
799 (cond ((or (nth 3 state) (nth 4 state))
800 ;; Inside comment or string. Return nil or t if should
801 ;; not change this line
802 (nth 4 state))
803 ((null containing-sexp)
804 ;; Line is at top level.
805 continued-indent-value)
807 ;; Set expr-p if we are looking at the expression part of
808 ;; an "if", "expr", etc statement. Set commands-p if we
809 ;; are looking at the body part of an if, while, etc
810 ;; statement. FIXME Should check for "for" loops here.
811 (goto-char containing-sexp)
812 (let* ((sexpr-type (tcl-figure-type))
813 (expr-p (eq sexpr-type 'tcl-expr))
814 (commands-p (eq sexpr-type 'tcl-commands))
815 (expr-start (point)))
816 ;; Find the first statement in the block and indent
817 ;; like it. The first statement in the block might be
818 ;; on the same line, so what we do is skip all
819 ;; "virtually blank" lines, looking for a non-blank
820 ;; one. A line is virtually blank if it only contains
821 ;; a comment and whitespace. FIXME continued comments
822 ;; aren't supported. They are a wart on Tcl anyway.
823 ;; We do it this funky way because we want to know if
824 ;; we've found a statement on some line _after_ the
825 ;; line holding the sexp opener.
826 (goto-char containing-sexp)
827 (forward-char)
828 (if (and (< (point) indent-point)
829 (looking-at "[ \t]*\\(#.*\\)?$"))
830 (progn
831 (forward-line)
832 (while (and (< (point) indent-point)
833 (looking-at "[ \t]*\\(#.*\\)?$"))
834 (setq found-next-line t)
835 (forward-line))))
836 (if (or continued-line
837 (/= (char-after containing-sexp) ?{)
838 expr-p)
839 (progn
840 ;; Line is continuation line, or the sexp opener
841 ;; is not a curly brace, or we are are looking at
842 ;; an `expr' expression (which must be split
843 ;; specially). So indentation is column of first
844 ;; good spot after sexp opener (with some added
845 ;; in the continued-line case). If there is no
846 ;; nonempty line before the indentation point, we
847 ;; use the column of the character after the sexp
848 ;; opener.
849 (if (>= (point) indent-point)
850 (progn
851 (goto-char containing-sexp)
852 (forward-char))
853 (skip-chars-forward " \t"))
854 (+ (current-column) continued-indent-value))
855 ;; After a curly brace, and not a continuation line.
856 ;; So take indentation from first good line after
857 ;; start of block, unless that line is on the same
858 ;; line as the opening brace. In this case use the
859 ;; indentation of the opening brace's line, plus
860 ;; another indent step. If we are in the body part
861 ;; of an "if" or "while" then the indentation is
862 ;; taken from the line holding the start of the
863 ;; statement.
864 (if (and (< (point) indent-point)
865 found-next-line)
866 (current-indentation)
867 (if commands-p
868 (goto-char expr-start)
869 (goto-char containing-sexp))
870 (+ (current-indentation) tcl-indent-level)))))))))
874 (defun tcl-indent-exp ()
875 "Indent each line of the Tcl grouping following point."
876 (interactive)
877 (let ((indent-stack (list nil))
878 (contain-stack (list (point)))
879 (case-fold-search nil)
880 outer-loop-done inner-loop-done state ostate
881 this-indent last-sexp continued-line
882 (next-depth 0)
883 last-depth)
884 (save-excursion
885 (forward-sexp 1))
886 (save-excursion
887 (setq outer-loop-done nil)
888 (while (and (not (eobp)) (not outer-loop-done))
889 (setq last-depth next-depth)
890 ;; Compute how depth changes over this line
891 ;; plus enough other lines to get to one that
892 ;; does not end inside a comment or string.
893 ;; Meanwhile, do appropriate indentation on comment lines.
894 (setq inner-loop-done nil)
895 (while (and (not inner-loop-done)
896 (not (and (eobp) (setq outer-loop-done t))))
897 (setq ostate state)
898 (setq state (parse-partial-sexp (point) (progn (end-of-line) (point))
899 nil nil state))
900 (setq next-depth (car state))
901 (if (and (car (cdr (cdr state)))
902 (>= (car (cdr (cdr state))) 0))
903 (setq last-sexp (car (cdr (cdr state)))))
904 (if (or (nth 4 ostate))
905 (tcl-indent-line))
906 (if (or (nth 3 state))
907 (forward-line 1)
908 (setq inner-loop-done t)))
909 (if (<= next-depth 0)
910 (setq outer-loop-done t))
911 (if outer-loop-done
913 ;; If this line had ..))) (((.. in it, pop out of the levels
914 ;; that ended anywhere in this line, even if the final depth
915 ;; doesn't indicate that they ended.
916 (while (> last-depth (nth 6 state))
917 (setq indent-stack (cdr indent-stack)
918 contain-stack (cdr contain-stack)
919 last-depth (1- last-depth)))
920 (if (/= last-depth next-depth)
921 (setq last-sexp nil))
922 ;; Add levels for any parens that were started in this line.
923 (while (< last-depth next-depth)
924 (setq indent-stack (cons nil indent-stack)
925 contain-stack (cons nil contain-stack)
926 last-depth (1+ last-depth)))
927 (if (null (car contain-stack))
928 (setcar contain-stack
929 (or (car (cdr state))
930 (save-excursion
931 (forward-sexp -1)
932 (point)))))
933 (forward-line 1)
934 (setq continued-line
935 (save-excursion
936 (backward-char)
937 (= (preceding-char) ?\\)))
938 (skip-chars-forward " \t")
939 (if (eolp)
941 (if (and (car indent-stack)
942 (>= (car indent-stack) 0))
943 ;; Line is on an existing nesting level.
944 (setq this-indent (car indent-stack))
945 ;; Just started a new nesting level.
946 ;; Compute the standard indent for this level.
947 (let ((val (tcl-calculate-indent
948 (if (car indent-stack)
949 (- (car indent-stack))))))
950 (setcar indent-stack
951 (setq this-indent val))
952 (setq continued-line nil)))
953 (cond ((not (numberp this-indent)))
954 ((= (following-char) ?})
955 (setq this-indent (- this-indent tcl-indent-level)))
956 ((= (following-char) ?\])
957 (setq this-indent (- this-indent 1))))
958 ;; Put chosen indentation into effect.
959 (or (null this-indent)
960 (= (current-column)
961 (if continued-line
962 (+ this-indent tcl-indent-level)
963 this-indent))
964 (progn
965 (delete-region (point) (progn (beginning-of-line) (point)))
966 (indent-to
967 (if continued-line
968 (+ this-indent tcl-indent-level)
969 this-indent)))))))))
975 ;; Interfaces to other packages.
978 ;; FIXME Definition of function is very ad-hoc. Should use
979 ;; beginning-of-defun. Also has incestuous knowledge about the
980 ;; format of tcl-proc-regexp.
981 (defun tcl-add-log-defun ()
982 "Return name of Tcl function point is in, or nil."
983 (save-excursion
984 (end-of-line)
985 (if (re-search-backward (concat tcl-proc-regexp "\\([^ \t\n{]+\\)") nil t)
986 (match-string 2))))
988 (defun tcl-outline-level ()
989 (save-excursion
990 (skip-chars-forward " \t")
991 (current-column)))
996 ;; Helper functions for inferior Tcl mode.
999 ;; This exists to let us delete the prompt when commands are sent
1000 ;; directly to the inferior Tcl. See gud.el for an explanation of how
1001 ;; it all works (I took it from there). This stuff doesn't really
1002 ;; work as well as I'd like it to. But I don't believe there is
1003 ;; anything useful that can be done.
1004 (defvar inferior-tcl-delete-prompt-marker nil)
1006 (defun tcl-filter (proc string)
1007 (let ((inhibit-quit t))
1008 (with-current-buffer (process-buffer proc)
1009 (goto-char (process-mark proc))
1010 ;; Delete prompt if requested.
1011 (if (marker-buffer inferior-tcl-delete-prompt-marker)
1012 (progn
1013 (delete-region (point) inferior-tcl-delete-prompt-marker)
1014 (set-marker inferior-tcl-delete-prompt-marker nil)))))
1015 (comint-output-filter proc string))
1017 (defun tcl-send-string (proc string)
1018 (with-current-buffer (process-buffer proc)
1019 (goto-char (process-mark proc))
1020 (beginning-of-line)
1021 (if (looking-at comint-prompt-regexp)
1022 (set-marker inferior-tcl-delete-prompt-marker (point))))
1023 (comint-send-string proc string))
1025 (defun tcl-send-region (proc start end)
1026 (with-current-buffer (process-buffer proc)
1027 (goto-char (process-mark proc))
1028 (beginning-of-line)
1029 (if (looking-at comint-prompt-regexp)
1030 (set-marker inferior-tcl-delete-prompt-marker (point))))
1031 (comint-send-region proc start end))
1033 (defun switch-to-tcl (eob-p)
1034 "Switch to inferior Tcl process buffer.
1035 With argument, positions cursor at end of buffer."
1036 (interactive "P")
1037 (if (get-buffer inferior-tcl-buffer)
1038 (pop-to-buffer inferior-tcl-buffer)
1039 (error "No current inferior Tcl buffer"))
1040 (cond (eob-p
1041 (push-mark)
1042 (goto-char (point-max)))))
1044 (defun inferior-tcl-proc ()
1045 "Return current inferior Tcl process.
1046 See variable `inferior-tcl-buffer'."
1047 (let ((proc (get-buffer-process (if (eq major-mode 'inferior-tcl-mode)
1048 (current-buffer)
1049 inferior-tcl-buffer))))
1050 (or proc
1051 (error "No Tcl process; see variable `inferior-tcl-buffer'"))))
1053 (defun tcl-eval-region (start end &optional and-go)
1054 "Send the current region to the inferior Tcl process.
1055 Prefix argument means switch to the Tcl buffer afterwards."
1056 (interactive "r\nP")
1057 (let ((proc (inferior-tcl-proc)))
1058 (tcl-send-region proc start end)
1059 (tcl-send-string proc "\n")
1060 (if and-go (switch-to-tcl t))))
1062 (defun tcl-eval-defun (&optional and-go)
1063 "Send the current defun to the inferior Tcl process.
1064 Prefix argument means switch to the Tcl buffer afterwards."
1065 (interactive "P")
1066 (save-excursion
1067 (end-of-defun)
1068 (let ((end (point)))
1069 (beginning-of-defun)
1070 (tcl-eval-region (point) end)))
1071 (if and-go (switch-to-tcl t)))
1076 ;; Inferior Tcl mode itself.
1079 (define-derived-mode inferior-tcl-mode comint-mode "Inferior Tcl"
1080 "Major mode for interacting with Tcl interpreter.
1082 You can start a Tcl process with \\[inferior-tcl].
1084 Entry to this mode runs the normal hooks `comint-mode-hook' and
1085 `inferior-tcl-mode-hook', in that order.
1087 You can send text to the inferior Tcl process from other buffers
1088 containing Tcl source.
1090 Variables controlling Inferior Tcl mode:
1091 `tcl-application'
1092 Name of program to run.
1093 `tcl-command-switches'
1094 Command line arguments to `tcl-application'.
1095 `tcl-prompt-regexp'
1096 Matches prompt.
1097 `inferior-tcl-source-command'
1098 Command to use to read Tcl file in running application.
1099 `inferior-tcl-buffer'
1100 The current inferior Tcl process buffer. See variable
1101 documentation for details on multiple-process support.
1103 The following commands are available:
1104 \\{inferior-tcl-mode-map}"
1105 (set (make-local-variable 'comint-prompt-regexp)
1106 (or tcl-prompt-regexp
1107 (concat "^" (regexp-quote tcl-application) ">")))
1108 (setq mode-line-process '(": %s"))
1109 (setq local-abbrev-table tcl-mode-abbrev-table)
1110 (set-syntax-table tcl-mode-syntax-table)
1111 (set (make-local-variable 'defun-prompt-regexp) tcl-omit-ws-regexp)
1112 (set (make-local-variable 'inferior-tcl-delete-prompt-marker) (make-marker))
1113 (set-process-filter (get-buffer-process (current-buffer)) 'tcl-filter))
1115 ;;;###autoload
1116 (defun inferior-tcl (cmd)
1117 "Run inferior Tcl process.
1118 Prefix arg means enter program name interactively.
1119 See documentation for function `inferior-tcl-mode' for more information."
1120 (interactive
1121 (list (if current-prefix-arg
1122 (read-string "Run Tcl: " tcl-application)
1123 tcl-application)))
1124 (if (not (comint-check-proc "*inferior-tcl*"))
1125 (progn
1126 (set-buffer (apply (function make-comint) "inferior-tcl" cmd nil
1127 tcl-command-switches))
1128 (inferior-tcl-mode)))
1129 (make-local-variable 'tcl-application)
1130 (setq tcl-application cmd)
1131 (setq inferior-tcl-buffer "*inferior-tcl*")
1132 (switch-to-buffer "*inferior-tcl*"))
1134 (defalias 'run-tcl 'inferior-tcl)
1139 ;; Auto-fill support.
1142 (defun tcl-real-command-p ()
1143 "Return nil if point is not at the beginning of a command.
1144 A command is the first word on an otherwise empty line, or the
1145 first word following a semicolon, opening brace, or opening bracket."
1146 (save-excursion
1147 (skip-chars-backward " \t")
1148 (cond
1149 ((bobp) t)
1150 ((bolp)
1151 (backward-char)
1152 ;; Note -- continued comments are not supported here. I
1153 ;; consider those to be a wart on the language.
1154 (not (eq ?\\ (preceding-char))))
1156 (memq (preceding-char) '(?\; ?{ ?\[))))))
1158 ;; FIXME doesn't actually return t. See last case.
1159 (defun tcl-real-comment-p ()
1160 "Return t if point is just after the `#' beginning a real comment.
1161 Does not check to see if previous char is actually `#'.
1162 A real comment is either at the beginning of the buffer,
1163 preceded only by whitespace on the line, or has a preceding
1164 semicolon, opening brace, or opening bracket on the same line."
1165 (save-excursion
1166 (backward-char)
1167 (tcl-real-command-p)))
1169 (defun tcl-hairy-scan-for-comment (state end always-stop)
1170 "Determine if point is in a comment.
1171 Returns a list of the form `(FLAG . STATE)'. STATE can be used
1172 as input to future invocations. FLAG is nil if not in comment,
1173 t otherwise. If in comment, leaves point at beginning of comment.
1175 This function does not work in Emacs 18.
1176 See also `tcl-simple-scan-for-comment', a
1177 simpler version that is often right, and works in Emacs 18."
1178 (let ((bol (save-excursion
1179 (goto-char end)
1180 (beginning-of-line)
1181 (point)))
1182 real-comment
1183 last-cstart)
1184 (while (and (not last-cstart) (< (point) end))
1185 (setq real-comment nil) ;In case we've looped around and it is set.
1186 (setq state (parse-partial-sexp (point) end nil nil state t))
1187 (if (nth 4 state)
1188 (progn
1189 ;; If ALWAYS-STOP is set, stop even if we don't have a
1190 ;; real comment, or if the comment isn't on the same line
1191 ;; as the end.
1192 (if always-stop (setq last-cstart (point)))
1193 ;; If we have a real comment, then set the comment
1194 ;; starting point if we are on the same line as the ending
1195 ;; location.
1196 (setq real-comment (tcl-real-comment-p))
1197 (if real-comment
1198 (progn
1199 (and (> (point) bol) (setq last-cstart (point)))
1200 ;; NOTE Emacs 19 has a misfeature whereby calling
1201 ;; parse-partial-sexp with COMMENTSTOP set and with
1202 ;; an initial list that says point is in a comment
1203 ;; will cause an immediate return. So we must skip
1204 ;; over the comment ourselves.
1205 (beginning-of-line 2)))
1206 ;; Frob the state to make it look like we aren't in a
1207 ;; comment.
1208 (setcar (nthcdr 4 state) nil))))
1209 (and last-cstart
1210 (goto-char last-cstart))
1211 (cons real-comment state)))
1213 (defun tcl-in-comment ()
1214 "Return t if point is in a comment, and leave point at beginning of comment."
1215 (let ((save (point)))
1216 (beginning-of-defun)
1217 (car (tcl-hairy-scan-for-comment nil save nil))))
1222 ;; Help-related code.
1225 (defvar tcl-help-saved-dirs nil
1226 "Saved help directories.
1227 If `tcl-help-directory-list' changes, this allows `tcl-help-on-word'
1228 to update the alist.")
1230 (defvar tcl-help-alist nil
1231 "Alist with command names as keys and filenames as values.")
1233 (defun tcl-files-alist (dir &optional alist)
1234 "Recursively add all pairs (FILE . PATH) under DIR to ALIST."
1235 (dolist (file (directory-files dir t) alist)
1236 (cond
1237 ((not (file-directory-p file))
1238 (push (cons (file-name-nondirectory file) file) alist))
1239 ((member (file-name-nondirectory file) '("." "..")))
1240 (t (setq alist (tcl-files-alist file alist))))))
1242 (defun tcl-help-snarf-commands (dirlist)
1243 "Return alist of commands and filenames."
1244 (let ((alist nil))
1245 (dolist (dir dirlist alist)
1246 (when (file-directory-p dir)
1247 (setq alist (tcl-files-alist dir alist))))))
1249 (defun tcl-reread-help-files ()
1250 "Set up to re-read files, and then do it."
1251 (interactive)
1252 (message "Building Tcl help file index...")
1253 (setq tcl-help-saved-dirs tcl-help-directory-list)
1254 (setq tcl-help-alist (tcl-help-snarf-commands tcl-help-directory-list))
1255 (message "Building Tcl help file index...done"))
1257 (defun tcl-word-no-props ()
1258 "Like `current-word', but strips properties."
1259 (let ((word (current-word)))
1260 (set-text-properties 0 (length word) nil word)
1261 word))
1263 (defun tcl-current-word (flag)
1264 "Return current command word, or nil.
1265 If FLAG is nil, just uses `current-word'.
1266 Otherwise scans backward for most likely Tcl command word."
1267 (if (and flag
1268 (memq major-mode '(tcl-mode inferior-tcl-mode)))
1269 (condition-case nil
1270 (save-excursion
1271 ;; Look backward for first word actually in alist.
1272 (if (bobp)
1274 (while (and (not (bobp))
1275 (not (tcl-real-command-p)))
1276 (backward-sexp)))
1277 (if (assoc (tcl-word-no-props) tcl-help-alist)
1278 (tcl-word-no-props)))
1279 (error nil))
1280 (tcl-word-no-props)))
1282 ;;;###autoload
1283 (defun tcl-help-on-word (command &optional arg)
1284 "Get help on Tcl command. Default is word at point.
1285 Prefix argument means invert sense of `tcl-use-smart-word-finder'."
1286 (interactive
1287 (list
1288 (progn
1289 (if (not (equal tcl-help-directory-list tcl-help-saved-dirs))
1290 (tcl-reread-help-files))
1291 (let ((word (tcl-current-word
1292 (if current-prefix-arg
1293 (not tcl-use-smart-word-finder)
1294 tcl-use-smart-word-finder))))
1295 (completing-read
1296 (if (or (null word) (string= word ""))
1297 "Help on Tcl command: "
1298 (format "Help on Tcl command (default %s): " word))
1299 tcl-help-alist nil t nil nil word)))
1300 current-prefix-arg))
1301 (if (not (equal tcl-help-directory-list tcl-help-saved-dirs))
1302 (tcl-reread-help-files))
1303 (if (string= command "")
1304 (setq command (tcl-current-word
1305 (if arg
1306 (not tcl-use-smart-word-finder)
1307 tcl-use-smart-word-finder))))
1308 (let* ((help (get-buffer-create "*Tcl help*"))
1309 (cell (assoc command tcl-help-alist))
1310 (file (and cell (cdr cell))))
1311 (set-buffer help)
1312 (delete-region (point-min) (point-max))
1313 (if file
1314 (progn
1315 (insert "*** " command "\n\n")
1316 (insert-file-contents file))
1317 (if (string= command "")
1318 (insert "Magical Pig!")
1319 (insert "Tcl command " command " not in help\n")))
1320 (set-buffer-modified-p nil)
1321 (goto-char (point-min))
1322 (display-buffer help)))
1327 ;; Other interactive stuff.
1330 (defvar tcl-previous-dir/file nil
1331 "Record last directory and file used in loading.
1332 This holds a cons cell of the form `(DIRECTORY . FILE)'
1333 describing the last `tcl-load-file' command.")
1335 (defun tcl-load-file (file &optional and-go)
1336 "Load a Tcl file into the inferior Tcl process.
1337 Prefix argument means switch to the Tcl buffer afterwards."
1338 (interactive
1339 (list
1340 ;; car because comint-get-source returns a list holding the
1341 ;; filename.
1342 (car (comint-get-source "Load Tcl file: "
1343 (or (and
1344 (eq major-mode 'tcl-mode)
1345 (buffer-file-name))
1346 tcl-previous-dir/file)
1347 '(tcl-mode) t))
1348 current-prefix-arg))
1349 (comint-check-source file)
1350 (setq tcl-previous-dir/file (cons (file-name-directory file)
1351 (file-name-nondirectory file)))
1352 (tcl-send-string (inferior-tcl-proc)
1353 (format inferior-tcl-source-command (tcl-quote file)))
1354 (if and-go (switch-to-tcl t)))
1356 (defun tcl-restart-with-file (file &optional and-go)
1357 "Restart inferior Tcl with file.
1358 If an inferior Tcl process exists, it is killed first.
1359 Prefix argument means switch to the Tcl buffer afterwards."
1360 (interactive
1361 (list
1362 (car (comint-get-source "Restart with Tcl file: "
1363 (or (and
1364 (eq major-mode 'tcl-mode)
1365 (buffer-file-name))
1366 tcl-previous-dir/file)
1367 '(tcl-mode) t))
1368 current-prefix-arg))
1369 (let* ((buf (if (eq major-mode 'inferior-tcl-mode)
1370 (current-buffer)
1371 inferior-tcl-buffer))
1372 (proc (and buf (get-process buf))))
1373 (cond
1374 ((not (and buf (get-buffer buf)))
1375 ;; I think this will be ok.
1376 (inferior-tcl tcl-application)
1377 (tcl-load-file file and-go))
1378 ((or
1379 (not (comint-check-proc buf))
1380 (yes-or-no-p
1381 "A Tcl process is running, are you sure you want to reset it? "))
1382 (save-excursion
1383 (comint-check-source file)
1384 (setq tcl-previous-dir/file (cons (file-name-directory file)
1385 (file-name-nondirectory file)))
1386 (comint-exec (get-buffer-create buf)
1387 (if proc
1388 (process-name proc)
1389 "inferior-tcl")
1390 tcl-application file tcl-command-switches)
1391 (if and-go (switch-to-tcl t)))))))
1393 (defun tcl-auto-fill-mode (&optional arg)
1394 "Like `auto-fill-mode', but sets `comment-auto-fill-only-comments'."
1395 (interactive "P")
1396 (auto-fill-mode arg)
1397 (if auto-fill-function
1398 (set (make-local-variable 'comment-auto-fill-only-comments) t)
1399 (kill-local-variable 'comment-auto-fill-only-comments)))
1401 (defun tcl-electric-hash (&optional count)
1402 "Insert a `#' and quote if it does not start a real comment.
1403 Prefix arg is number of `#'s to insert.
1404 See variable `tcl-electric-hash-style' for description of quoting
1405 styles."
1406 (interactive "p")
1407 (or count (setq count 1))
1408 (if (> count 0)
1409 (let ((type
1410 (if (eq tcl-electric-hash-style 'smart)
1411 (if (> count 3) ; FIXME what is "smart"?
1412 'quote
1413 'backslash)
1414 tcl-electric-hash-style))
1415 comment)
1416 (if type
1417 (progn
1418 (save-excursion
1419 (insert "#")
1420 (setq comment (tcl-in-comment)))
1421 (delete-char 1)
1422 (and tcl-explain-indentation (message "comment: %s" comment))
1423 (cond
1424 ((eq type 'quote)
1425 (if (not comment)
1426 (insert "\"")))
1427 ((eq type 'backslash)
1428 ;; The following will set count to 0, so the
1429 ;; insert-char can still be run.
1430 (if (not comment)
1431 (while (> count 0)
1432 (insert "\\#")
1433 (setq count (1- count)))))
1434 (t nil))))
1435 (insert-char ?# count))))
1437 (defun tcl-hashify-buffer ()
1438 "Quote all `#'s in current buffer that aren't Tcl comments."
1439 (interactive)
1440 (save-excursion
1441 (goto-char (point-min))
1442 (let (state
1443 result)
1444 (while (< (point) (point-max))
1445 (setq result (tcl-hairy-scan-for-comment state (point-max) t))
1446 (if (car result)
1447 (beginning-of-line 2)
1448 (backward-char)
1449 (if (eq ?# (following-char))
1450 (insert "\\"))
1451 (forward-char))
1452 (setq state (cdr result))))))
1454 (defun tcl-comment-indent ()
1455 "Return the desired indentation, but be careful to add a `;' if needed."
1456 (save-excursion
1457 ;; If line is not blank, make sure we insert a ";" first.
1458 (skip-chars-backward " \t")
1459 (unless (or (bolp) (tcl-real-command-p))
1460 (insert ";")
1461 ;; Try and erase a non-significant char to keep charpos identical.
1462 (if (memq (char-after) '(?\t ?\ )) (delete-char 1))))
1463 (funcall (default-value 'comment-indent-function)))
1465 ;; The following was inspired by the Tcl editing mode written by
1466 ;; Gregor Schmid <schmid@fb3-s7.math.TU-Berlin.DE>. His version also
1467 ;; attempts to snarf the command line options from the command line,
1468 ;; but I didn't think that would really be that helpful (doesn't seem
1469 ;; like it would be right enough. His version also looks for the
1470 ;; "#!/bin/csh ... exec" hack, but that seemed even less useful.
1471 ;; FIXME should make sure that the application mentioned actually
1472 ;; exists.
1473 (defun tcl-guess-application ()
1474 "Attempt to guess Tcl application by looking at first line.
1475 The first line is assumed to look like \"#!.../program ...\"."
1476 (save-excursion
1477 (goto-char (point-min))
1478 (if (looking-at "#![^ \t]*/\\([^ \t\n/]+\\)\\([ \t]\\|$\\)")
1479 (set (make-local-variable 'tcl-application) (match-string 1)))))
1484 ;; XEmacs menu support.
1485 ;; Taken from schmid@fb3-s7.math.TU-Berlin.DE (Gregor Schmid),
1486 ;; who wrote a different Tcl mode.
1487 ;; We also have support for menus in Emacs. We do this by
1488 ;; loading the XEmacs menu emulation code.
1491 (defun tcl-popup-menu (e)
1492 (interactive "@e")
1493 (popup-menu tcl-mode-menu))
1498 ;; Quoting and unquoting functions.
1501 ;; This quoting is sufficient to protect eg a filename from any sort
1502 ;; of expansion or splitting. Tcl quoting sure sucks.
1503 (defun tcl-quote (string)
1504 "Quote STRING according to Tcl rules."
1505 (mapconcat (lambda (char)
1506 (if (memq char '(?[ ?] ?{ ?} ?\\ ?\" ?$ ? ?\;))
1507 (concat "\\" (char-to-string char))
1508 (char-to-string char)))
1509 string ""))
1512 ;; Bug reporting.
1516 ;; These are relics kept "just in case".
1517 (defalias 'tcl-uncomment-region 'uncomment-region)
1518 (defalias 'tcl-indent-for-comment 'comment-indent)
1519 (defalias 'add-log-tcl-defun 'tcl-add-log-defun)
1520 (defalias 'indent-tcl-exp 'tcl-indent-exp)
1521 (defalias 'calculate-tcl-indent 'tcl-calculate-indent)
1522 (defalias 'tcl-beginning-of-defun 'beginning-of-defun)
1523 (defalias 'tcl-end-of-defun 'end-of-defun)
1524 (defalias 'tcl-mark-defun 'mark-defun)
1525 (defun tcl-mark () (mark t))
1527 (provide 'tcl)
1529 ;;; tcl.el ends here