1 ;;; cc-defs.el --- compile time definitions for CC Mode
3 ;; Copyright (C) 1985,1987,1992-2001 Free Software Foundation, Inc.
5 ;; Authors: 2000- Martin Stjernholm
6 ;; 1998-1999 Barry A. Warsaw and Martin Stjernholm
7 ;; 1992-1997 Barry A. Warsaw
8 ;; 1987 Dave Detlefs and Stewart Clamen
9 ;; 1985 Richard M. Stallman
10 ;; Maintainer: bug-cc-mode@gnu.org
11 ;; Created: 22-Apr-1997 (split from cc-mode.el)
12 ;; Version: See cc-mode.el
13 ;; Keywords: c languages oop
15 ;; This file is part of GNU Emacs.
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)
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.
27 ;; You should have received a copy of the GNU General Public License
28 ;; along with this program; see the file COPYING. If not, write to
29 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
30 ;; Boston, MA 02111-1307, USA.
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
)
38 (require 'cc-bytecomp
)))
40 ;; cc-mode-19.el contains compatibility macros that should be used if
43 (if (or (not (fboundp 'functionp
))
44 (not (condition-case nil
45 (progn (eval '(char-before)) t
)
47 (not (condition-case nil
48 (progn (eval '(char-after)) t
)
51 (not (fboundp 'unless
)))
52 (cc-load "cc-mode-19")))
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
67 ;;; Helpers for building regexps.
68 (defmacro c-paren-re
(re)
69 `(concat "\\(" ,re
"\\)"))
70 (defmacro c-identifier-re
(re)
71 `(concat "\\<\\(" ,re
"\\)\\>[^_]"))
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:
78 ;; bol -- beginning of line
80 ;; bod -- beginning of defun
81 ;; eod -- end of defun
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
88 ;; This function does not modify point or mark.
90 ,(if point
`(goto-char ,point
))
91 ,(if (and (eq (car-safe position
) 'quote
)
92 (symbolp (eval position
)))
93 (let ((position (eval position
)))
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
104 (back-to-indentation)))
105 ((eq position
'ionl
) `(progn
107 (back-to-indentation)))
108 (t (error "unknown buffer position requested: %s" position
))))
109 ;;(message "c-point long expansion")
110 `(let ((position ,position
))
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
121 (back-to-indentation)))
122 ((eq position
'ionl
) (progn
124 (back-to-indentation)))
125 (t (error "unknown buffer position requested: %s" position
)))))
128 (defmacro c-safe
(&rest body
)
129 ;; safely execute BODY, return nil if an error occurred
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
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
)
144 (if (> arg
0) `(point-max) `(point-min))
145 `(if (> ,arg
0) (point-max) (point-min))))))
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
))))
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
)))
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.
164 (let ((symbol ,symbol
)
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
))))))
176 (defmacro c-update-modeline
()
177 ;; set the c-auto-hungry-string for the correct designation on the modeline
179 (setq c-auto-hungry-string
181 (if c-hungry-delete-key
"/ah" "/a")
182 (if c-hungry-delete-key
"/h" nil
)))
183 (force-mode-line-update)))
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)))
191 (set-syntax-table ,table
)
193 (set-syntax-table c-with-syntax-table-orig-table
))))
194 (put 'c-with-syntax-table
'lisp-indent-function
1)
196 ;;; Inline functions.
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
203 (defsubst c-beginning-of-defun-1
()
204 ;; Wrapper around beginning-of-defun.
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.
221 (setq pos
(scan-lists (point) -
1
222 (buffer-syntactic-context-depth)
225 ((bobp) (setq pos
(point-min)))
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
)
233 (setq pos
(point)))))
235 ((not (eq (char-after 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
244 (and defun-prompt-regexp
245 (looking-at defun-prompt-regexp
)
246 (goto-char (match-end 0))))
248 (defsubst c-end-of-defun-1
()
249 ;; Replacement for end-of-defun that use c-beginning-of-defun-1.
250 (let ((start (point)))
251 ;; Skip forward into the next defun block. Don't bother to avoid
252 ;; comments, literals etc, since beginning-of-defun doesn't do that
254 (skip-chars-forward "^}")
255 (c-beginning-of-defun-1)
256 (if (eq (char-after) ?
{)
258 (if (< (point) start
)
259 (goto-char (point-max)))))
261 (defsubst c-forward-comment
(count)
262 ;; Insulation from various idiosyncrasies in implementations of
263 ;; `forward-comment'.
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. ;)
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. :\
274 (let ((here (point)))
276 (when (forward-comment count
)
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).
280 (if (and (eolp) (nth 7 (parse-partial-sexp here
(point))))
281 (condition-case nil
(forward-char 1)))
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")
292 ;; Some emacsen return t when moving backwards at bob.
294 (re-search-forward "[\n\r]" here t
)
295 (if (forward-comment count
)
296 (if (eolp) (forward-comment -
1) t
))))))
298 (defsubst c-intersect-lists
(list alist
)
299 ;; return the element of ALIST that matches the first element found
300 ;; in LIST. Uses assq.
303 (not (setq match
(assq (car list
) alist
))))
304 (setq list
(cdr list
)))
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
))
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.
316 (let ((here (point)))
317 (goto-char (cdr langelem
))
318 (prog1 (current-column)
324 (defsubst c-keep-region-active
()
325 ;; Do whatever is necessary to keep the region active in XEmacs.
326 ;; This is not needed for Emacs.
327 (and (boundp 'zmacs-region-stays
)
328 (setq zmacs-region-stays t
)))
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.
335 ((and (fboundp 'region-active-p
)
336 (boundp 'zmacs-regions
)
340 ((boundp 'mark-active
) mark-active
)
341 ;; fallback; shouldn't get here
344 (defsubst c-major-mode-is
(mode)
345 (eq (derived-mode-class major-mode
) mode
))
348 (cc-provide 'cc-defs
)
349 ;;; cc-defs.el ends here