Mercurial > emacs
annotate lisp/progmodes/cc-defs.el @ 37072:08152533da68
(${TIT}): Fix whitespace.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 30 Mar 2001 08:27:56 +0000 |
parents | 32a4317c6aa5 |
children | 7a94f1c588c4 |
rev | line source |
---|---|
21112
b113342cb7ad
(c-emacs-features): Var moved to cc-vars.el.
Richard M. Stallman <rms@gnu.org>
parents:
20913
diff
changeset
|
1 ;;; cc-defs.el --- compile time definitions for CC Mode |
18720 | 2 |
36920 | 3 ;; Copyright (C) 1985,1987,1992-2001 Free Software Foundation, Inc. |
18720 | 4 |
30404
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
5 ;; Authors: 2000- Martin Stjernholm |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
6 ;; 1998-1999 Barry A. Warsaw and Martin Stjernholm |
24282 | 7 ;; 1992-1997 Barry A. Warsaw |
18720 | 8 ;; 1987 Dave Detlefs and Stewart Clamen |
9 ;; 1985 Richard M. Stallman | |
24282 | 10 ;; Maintainer: bug-cc-mode@gnu.org |
18720 | 11 ;; Created: 22-Apr-1997 (split from cc-mode.el) |
20141 | 12 ;; Version: See cc-mode.el |
18720 | 13 ;; Keywords: c languages oop |
14 | |
15 ;; This file is part of GNU Emacs. | |
16 | |
17 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
18 ;; it under the terms of the GNU General Public License as published by | |
19 ;; the Free Software Foundation; either version 2, or (at your option) | |
20 ;; any later version. | |
21 | |
22 ;; GNU Emacs is distributed in the hope that it will be useful, | |
23 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
25 ;; GNU General Public License for more details. | |
26 | |
27 ;; You should have received a copy of the GNU General Public License | |
36920 | 28 ;; along with this program; see the file COPYING. If not, write to |
29 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
18720 | 30 ;; Boston, MA 02111-1307, USA. |
31 | |
36920 | 32 (eval-when-compile |
33 (let ((load-path | |
34 (if (and (boundp 'byte-compile-dest-file) | |
35 (stringp byte-compile-dest-file)) | |
36 (cons (file-name-directory byte-compile-dest-file) load-path) | |
37 load-path))) | |
38 (require 'cc-bytecomp))) | |
24282 | 39 |
36920 | 40 ;; cc-mode-19.el contains compatibility macros that should be used if |
41 ;; needed. | |
42 (eval-and-compile | |
43 (if (or (not (fboundp 'functionp)) | |
44 (not (condition-case nil | |
45 (progn (eval '(char-before)) t) | |
46 (error nil))) | |
47 (not (condition-case nil | |
48 (progn (eval '(char-after)) t) | |
49 (error nil))) | |
50 (not (fboundp 'when)) | |
51 (not (fboundp 'unless))) | |
52 (cc-load "cc-mode-19"))) | |
53 | |
54 ;; Silence the compiler. | |
55 (cc-bytecomp-defvar c-enable-xemacs-performance-kludge-p) ; In cc-vars.el | |
56 (cc-bytecomp-defun buffer-syntactic-context-depth) ; XEmacs | |
57 (cc-bytecomp-defun region-active-p) ; XEmacs | |
58 (cc-bytecomp-defvar zmacs-region-stays) ; XEmacs | |
59 (cc-bytecomp-defvar zmacs-regions) ; XEmacs | |
60 (cc-bytecomp-defvar mark-active) ; Emacs | |
61 (cc-bytecomp-defun scan-lists) ; 5 args in XEmacs, 3 in Emacs | |
62 (require 'derived) ; Only necessary in Emacs | |
24282 | 63 |
64 | |
36920 | 65 ;;; Macros. |
66 | |
67 ;;; Helpers for building regexps. | |
68 (defmacro c-paren-re (re) | |
69 `(concat "\\(" ,re "\\)")) | |
70 (defmacro c-identifier-re (re) | |
71 `(concat "\\<\\(" ,re "\\)\\>[^_]")) | |
72 | |
73 (defmacro c-point (position &optional point) | |
74 ;; Returns the value of certain commonly referenced POSITIONs | |
75 ;; relative to POINT. The current point is used if POINT isn't | |
76 ;; specified. POSITION can be one of the following symbols: | |
18720 | 77 ;; |
78 ;; bol -- beginning of line | |
79 ;; eol -- end of line | |
80 ;; bod -- beginning of defun | |
24282 | 81 ;; eod -- end of defun |
18720 | 82 ;; boi -- back to indentation |
83 ;; ionl -- indentation of next line | |
84 ;; iopl -- indentation of previous line | |
85 ;; bonl -- beginning of next line | |
86 ;; bopl -- beginning of previous line | |
87 ;; | |
88 ;; This function does not modify point or mark. | |
26817 | 89 `(save-excursion |
36920 | 90 ,(if point `(goto-char ,point)) |
26817 | 91 ,(if (and (eq (car-safe position) 'quote) |
92 (symbolp (eval position))) | |
93 (let ((position (eval position))) | |
94 (cond | |
95 ((eq position 'bol) `(beginning-of-line)) | |
96 ((eq position 'eol) `(end-of-line)) | |
97 ((eq position 'boi) `(back-to-indentation)) | |
98 ((eq position 'bonl) `(forward-line 1)) | |
99 ((eq position 'bopl) `(forward-line -1)) | |
100 ((eq position 'bod) `(c-beginning-of-defun-1)) | |
101 ((eq position 'eod) `(c-end-of-defun-1)) | |
102 ((eq position 'iopl) `(progn | |
103 (forward-line -1) | |
104 (back-to-indentation))) | |
105 ((eq position 'ionl) `(progn | |
106 (forward-line 1) | |
107 (back-to-indentation))) | |
108 (t (error "unknown buffer position requested: %s" position)))) | |
109 ;;(message "c-point long expansion") | |
110 `(let ((position ,position)) | |
111 (cond | |
112 ((eq position 'bol) (beginning-of-line)) | |
113 ((eq position 'eol) (end-of-line)) | |
114 ((eq position 'boi) (back-to-indentation)) | |
115 ((eq position 'bonl) (forward-line 1)) | |
116 ((eq position 'bopl) (forward-line -1)) | |
117 ((eq position 'bod) (c-beginning-of-defun-1)) | |
118 ((eq position 'eod) (c-end-of-defun-1)) | |
119 ((eq position 'iopl) (progn | |
120 (forward-line -1) | |
121 (back-to-indentation))) | |
122 ((eq position 'ionl) (progn | |
123 (forward-line 1) | |
124 (back-to-indentation))) | |
125 (t (error "unknown buffer position requested: %s" position))))) | |
126 (point))) | |
18720 | 127 |
128 (defmacro c-safe (&rest body) | |
129 ;; safely execute BODY, return nil if an error occurred | |
26817 | 130 `(condition-case nil |
131 (progn ,@body) | |
132 (error nil))) | |
133 | |
36920 | 134 (defmacro c-forward-sexp (&optional arg) |
135 ;; like forward-sexp except | |
136 ;; 1. this is much stripped down from the XEmacs version | |
137 ;; 2. this cannot be used as a command, so we're insulated from | |
138 ;; XEmacs' losing efforts to make forward-sexp more user | |
139 ;; friendly | |
140 ;; 3. Preserves the semantics most of CC Mode is based on | |
141 (or arg (setq arg 1)) | |
142 `(goto-char (or (scan-sexps (point) ,arg) | |
143 ,(if (numberp arg) | |
144 (if (> arg 0) `(point-max) `(point-min)) | |
145 `(if (> ,arg 0) (point-max) (point-min)))))) | |
146 | |
147 (defmacro c-backward-sexp (&optional arg) | |
148 ;; See c-forward-sexp and reverse directions | |
149 (or arg (setq arg 1)) | |
150 `(c-forward-sexp ,(if (numberp arg) (- arg) `(- ,arg)))) | |
151 | |
152 (defmacro c-add-syntax (symbol &optional relpos) | |
153 ;; a simple macro to append the syntax in symbol to the syntax list. | |
154 ;; try to increase performance by using this macro | |
155 `(setq syntax (cons (cons ,symbol ,relpos) syntax))) | |
156 | |
157 (defmacro c-add-class-syntax (symbol classkey) | |
158 ;; The inclass and class-close syntactic symbols are added in | |
159 ;; several places and some work is needed to fix everything. | |
160 ;; Therefore it's collected here. This is a macro mostly because | |
161 ;; c-add-syntax doesn't work otherwise. | |
162 `(save-restriction | |
163 (widen) | |
164 (let ((symbol ,symbol) | |
165 (classkey ,classkey) | |
166 inexpr) | |
167 (goto-char (aref classkey 1)) | |
168 (if (and (eq symbol 'inclass) (= (point) (c-point 'boi))) | |
169 (c-add-syntax symbol (point)) | |
170 (c-add-syntax symbol (aref classkey 0)) | |
171 (if (and c-inexpr-class-key | |
172 (setq inexpr (c-looking-at-inexpr-block)) | |
173 (/= (cdr inexpr) (c-point 'boi (cdr inexpr)))) | |
174 (c-add-syntax 'inexpr-class)))))) | |
175 | |
176 (defmacro c-update-modeline () | |
177 ;; set the c-auto-hungry-string for the correct designation on the modeline | |
178 `(progn | |
179 (setq c-auto-hungry-string | |
180 (if c-auto-newline | |
181 (if c-hungry-delete-key "/ah" "/a") | |
182 (if c-hungry-delete-key "/h" nil))) | |
183 (force-mode-line-update))) | |
184 | |
185 (defmacro c-with-syntax-table (table &rest code) | |
186 ;; Temporarily switches to the specified syntax table in a failsafe | |
187 ;; way to execute code. | |
188 `(let ((c-with-syntax-table-orig-table (syntax-table))) | |
189 (unwind-protect | |
190 (progn | |
191 (set-syntax-table ,table) | |
192 ,@code) | |
193 (set-syntax-table c-with-syntax-table-orig-table)))) | |
194 (put 'c-with-syntax-table 'lisp-indent-function 1) | |
195 | |
196 ;;; Inline functions. | |
197 | |
198 ;; Note: All these after the macros, to be on safe side in avoiding | |
199 ;; bugs where macros are defined too late. These bugs often only show | |
200 ;; when the files are compiled in a certain order within the same | |
201 ;; session. | |
202 | |
26817 | 203 (defsubst c-beginning-of-defun-1 () |
204 ;; Wrapper around beginning-of-defun. | |
205 ;; | |
206 ;; NOTE: This function should contain the only explicit use of | |
207 ;; beginning-of-defun in CC Mode. Eventually something better than | |
208 ;; b-o-d will be available and this should be the only place the | |
209 ;; code needs to change. Everything else should use | |
210 ;; (c-beginning-of-defun-1) | |
211 (if (and (fboundp 'buffer-syntactic-context-depth) | |
212 c-enable-xemacs-performance-kludge-p) | |
213 ;; XEmacs only. This can improve the performance of | |
214 ;; c-parse-state to between 3 and 60 times faster when | |
215 ;; braces are hung. It can also degrade performance by | |
216 ;; about as much when braces are not hung. | |
217 (let (pos) | |
218 (while (not pos) | |
219 (save-restriction | |
220 (widen) | |
221 (setq pos (scan-lists (point) -1 | |
222 (buffer-syntactic-context-depth) | |
223 nil t))) | |
224 (cond | |
225 ((bobp) (setq pos (point-min))) | |
226 ((not pos) | |
227 (let ((distance (skip-chars-backward "^{"))) | |
228 ;; unbalanced parenthesis, while illegal C code, | |
229 ;; shouldn't cause an infloop! See unbal.c | |
230 (when (zerop distance) | |
231 ;; Punt! | |
232 (beginning-of-defun) | |
233 (setq pos (point))))) | |
234 ((= pos 0)) | |
235 ((not (eq (char-after pos) ?{)) | |
236 (goto-char pos) | |
237 (setq pos nil)) | |
238 )) | |
239 (goto-char pos)) | |
240 ;; Emacs, which doesn't have buffer-syntactic-context-depth | |
241 (beginning-of-defun)) | |
242 ;; if defun-prompt-regexp is non-nil, b-o-d won't leave us at the | |
243 ;; open brace. | |
244 (and defun-prompt-regexp | |
245 (looking-at defun-prompt-regexp) | |
246 (goto-char (match-end 0)))) | |
247 | |
248 (defsubst c-end-of-defun-1 () | |
249 ;; Replacement for end-of-defun that use c-beginning-of-defun-1. | |
30404
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
250 (let ((start (point))) |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
251 ;; Skip forward into the next defun block. Don't bother to avoid |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
252 ;; comments, literals etc, since beginning-of-defun doesn't do that |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
253 ;; anyway. |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
254 (skip-chars-forward "^}") |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
255 (c-beginning-of-defun-1) |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
256 (if (eq (char-after) ?{) |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
257 (c-forward-sexp)) |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
258 (if (< (point) start) |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
259 (goto-char (point-max))))) |
18720 | 260 |
26817 | 261 (defsubst c-forward-comment (count) |
262 ;; Insulation from various idiosyncrasies in implementations of | |
36920 | 263 ;; `forward-comment'. |
264 ;; | |
265 ;; Note: Some emacsen considers incorrectly that any line comment | |
266 ;; ending with a backslash continues to the next line. I can't | |
267 ;; think of any way to work around that in a reliable way without | |
268 ;; changing the buffer though. Suggestions welcome. ;) | |
269 ;; | |
270 ;; Another note: When moving backwards over a block comment, there's | |
271 ;; a bug in forward-comment that can make it stop at "/*" inside a | |
272 ;; line comment. Haven't yet found a reasonably cheap way to kludge | |
273 ;; around that one either. :\ | |
26817 | 274 (let ((here (point))) |
275 (if (>= count 0) | |
276 (when (forward-comment count) | |
36920 | 277 ;; Emacs includes the ending newline in a b-style (c++) |
278 ;; comment, but XEmacs doesn't. We depend on the Emacs | |
279 ;; behavior (which also is symmetric). | |
26817 | 280 (if (and (eolp) (nth 7 (parse-partial-sexp here (point)))) |
281 (condition-case nil (forward-char 1))) | |
282 t) | |
283 ;; When we got newline terminated comments, | |
284 ;; forward-comment in all supported emacsen so far will | |
285 ;; stop at eol of each line not ending with a comment when | |
286 ;; moving backwards. The following corrects for it when | |
287 ;; count is -1. The other common case, when count is | |
288 ;; large and negative, works regardless. It's too much | |
289 ;; work to correct for the rest of the cases. | |
290 (skip-chars-backward " \t\n\r\f") | |
291 (if (bobp) | |
292 ;; Some emacsen return t when moving backwards at bob. | |
293 nil | |
294 (re-search-forward "[\n\r]" here t) | |
295 (if (forward-comment count) | |
296 (if (eolp) (forward-comment -1) t)))))) | |
297 | |
18720 | 298 (defsubst c-intersect-lists (list alist) |
299 ;; return the element of ALIST that matches the first element found | |
300 ;; in LIST. Uses assq. | |
301 (let (match) | |
302 (while (and list | |
303 (not (setq match (assq (car list) alist)))) | |
304 (setq list (cdr list))) | |
305 match)) | |
306 | |
307 (defsubst c-lookup-lists (list alist1 alist2) | |
308 ;; first, find the first entry from LIST that is present in ALIST1, | |
309 ;; then find the entry in ALIST2 for that entry. | |
310 (assq (car (c-intersect-lists list alist1)) alist2)) | |
311 | |
312 (defsubst c-langelem-col (langelem &optional preserve-point) | |
313 ;; convenience routine to return the column of langelem's relpos. | |
314 ;; Leaves point at the relpos unless preserve-point is non-nil. | |
30404
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
315 (if (cdr langelem) |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
316 (let ((here (point))) |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
317 (goto-char (cdr langelem)) |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
318 (prog1 (current-column) |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
319 (if preserve-point |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
320 (goto-char here)) |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
321 )) |
3393922ea102
(c-end-of-defun-1): Fixed forward scanning into
Gerd Moellmann <gerd@gnu.org>
parents:
26817
diff
changeset
|
322 0)) |
18720 | 323 |
324 (defsubst c-keep-region-active () | |
325 ;; Do whatever is necessary to keep the region active in XEmacs. | |
36920 | 326 ;; This is not needed for Emacs. |
18720 | 327 (and (boundp 'zmacs-region-stays) |
328 (setq zmacs-region-stays t))) | |
329 | |
24282 | 330 (defsubst c-region-is-active-p () |
331 ;; Return t when the region is active. The determination of region | |
332 ;; activeness is different in both Emacs and XEmacs. | |
333 (cond | |
334 ;; XEmacs | |
335 ((and (fboundp 'region-active-p) | |
26817 | 336 (boundp 'zmacs-regions) |
24282 | 337 zmacs-regions) |
338 (region-active-p)) | |
339 ;; Emacs | |
340 ((boundp 'mark-active) mark-active) | |
341 ;; fallback; shouldn't get here | |
342 (t (mark t)))) | |
343 | |
344 (defsubst c-major-mode-is (mode) | |
345 (eq (derived-mode-class major-mode) mode)) | |
346 | |
18720 | 347 |
36920 | 348 (cc-provide 'cc-defs) |
18720 | 349 ;;; cc-defs.el ends here |