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