Spelling fixes.
[bpt/emacs.git] / lisp / progmodes / cc-mode.el
1 ;;; cc-mode.el --- major mode for editing C and similar languages
2
3 ;; Copyright (C) 1985, 1987, 1992-2011 Free Software Foundation, Inc.
4
5 ;; Authors: 2003- Alan Mackenzie
6 ;; 1998- Martin Stjernholm
7 ;; 1992-1999 Barry A. Warsaw
8 ;; 1987 Dave Detlefs
9 ;; 1987 Stewart Clamen
10 ;; 1985 Richard M. Stallman
11 ;; Maintainer: bug-cc-mode@gnu.org
12 ;; Created: a long, long, time ago. adapted from the original c-mode.el
13 ;; Keywords: c languages
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 3 of the License, or
20 ;; (at your option) 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
28 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29
30 ;;; Commentary:
31
32 ;; NOTE: Read the commentary below for the right way to submit bug reports!
33 ;; NOTE: See the accompanying texinfo manual for details on using this mode!
34 ;; Note: The version string is in cc-defs.
35
36 ;; This package provides GNU Emacs major modes for editing C, C++,
37 ;; Objective-C, Java, CORBA's IDL, Pike and AWK code. As of the
38 ;; latest Emacs and XEmacs releases, it is the default package for
39 ;; editing these languages. This package is called "CC Mode", and
40 ;; should be spelled exactly this way.
41
42 ;; CC Mode supports K&R and ANSI C, ANSI C++, Objective-C, Java,
43 ;; CORBA's IDL, Pike and AWK with a consistent indentation model
44 ;; across all modes. This indentation model is intuitive and very
45 ;; flexible, so that almost any desired style of indentation can be
46 ;; supported. Installation, usage, and programming details are
47 ;; contained in an accompanying texinfo manual.
48
49 ;; CC Mode's immediate ancestors were, c++-mode.el, cplus-md.el, and
50 ;; cplus-md1.el..
51
52 ;; To submit bug reports, type "C-c C-b". These will be sent to
53 ;; bug-gnu-emacs@gnu.org (mirrored as the Usenet newsgroup
54 ;; gnu.emacs.bug) as well as bug-cc-mode@gnu.org, which directly
55 ;; contacts the CC Mode maintainers. Questions can sent to
56 ;; help-gnu-emacs@gnu.org (mirrored as gnu.emacs.help) and/or
57 ;; bug-cc-mode@gnu.org. Please do not send bugs or questions to our
58 ;; personal accounts; we reserve the right to ignore such email!
59
60 ;; Many, many thanks go out to all the folks on the beta test list.
61 ;; Without their patience, testing, insight, code contributions, and
62 ;; encouragement CC Mode would be a far inferior package.
63
64 ;; You can get the latest version of CC Mode, including PostScript
65 ;; documentation and separate individual files from:
66 ;;
67 ;; http://cc-mode.sourceforge.net/
68 ;;
69 ;; You can join a moderated CC Mode announcement-only mailing list by
70 ;; visiting
71 ;;
72 ;; http://lists.sourceforge.net/mailman/listinfo/cc-mode-announce
73
74 ;;; Code:
75
76 ;; For Emacs < 22.2.
77 (eval-and-compile
78 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
79
80 (eval-when-compile
81 (let ((load-path
82 (if (and (boundp 'byte-compile-dest-file)
83 (stringp byte-compile-dest-file))
84 (cons (file-name-directory byte-compile-dest-file) load-path)
85 load-path)))
86 (load "cc-bytecomp" nil t)))
87
88 (cc-require 'cc-defs)
89 (cc-require-when-compile 'cc-langs)
90 (cc-require 'cc-vars)
91 (cc-require 'cc-engine)
92 (cc-require 'cc-styles)
93 (cc-require 'cc-cmds)
94 (cc-require 'cc-align)
95 (cc-require 'cc-menus)
96 (cc-require 'cc-guess)
97
98 ;; Silence the compiler.
99 (cc-bytecomp-defvar adaptive-fill-first-line-regexp) ; Emacs
100 (cc-bytecomp-defun set-keymap-parents) ; XEmacs
101 (cc-bytecomp-defun run-mode-hooks) ; Emacs 21.1
102
103 ;; We set these variables during mode init, yet we don't require
104 ;; font-lock.
105 (cc-bytecomp-defvar font-lock-defaults)
106 (cc-bytecomp-defvar font-lock-syntactic-keywords)
107
108 ;; Menu support for both XEmacs and Emacs. If you don't have easymenu
109 ;; with your version of Emacs, you are incompatible!
110 (cc-external-require 'easymenu)
111
112 ;; Autoload directive for emacsen that doesn't have an older CC Mode
113 ;; version in the dist.
114 (autoload 'subword-mode "subword"
115 "Mode enabling subword movement and editing keys." t)
116
117 ;; Load cc-fonts first after font-lock is loaded, since it isn't
118 ;; necessary until font locking is requested.
119 ; (eval-after-load "font-lock" ; 2006-07-09: font-lock is now preloaded.
120 ; '
121 (require 'cc-fonts) ;)
122
123 \f
124 ;; Other modes and packages which depend on CC Mode should do the
125 ;; following to make sure everything is loaded and available for their
126 ;; use:
127 ;;
128 ;; (require 'cc-mode)
129 ;;
130 ;; And in the major mode function:
131 ;;
132 ;; (c-initialize-cc-mode t)
133 ;; (c-init-language-vars some-mode)
134 ;; (c-common-init 'some-mode) ; Or perhaps (c-basic-common-init 'some-mode)
135 ;;
136 ;; If you're not writing a derived mode using the language variable
137 ;; system, then some-mode is one of the language modes directly
138 ;; supported by CC Mode. You can then use (c-init-language-vars-for
139 ;; 'some-mode) instead of `c-init-language-vars'.
140 ;; `c-init-language-vars-for' is a function that avoids the rather
141 ;; large expansion of `c-init-language-vars'.
142 ;;
143 ;; If you use `c-basic-common-init' then you might want to call
144 ;; `c-font-lock-init' too to set up CC Mode's font lock support.
145 ;;
146 ;; See cc-langs.el for further info. A small example of a derived mode
147 ;; is also available at <http://cc-mode.sourceforge.net/
148 ;; derived-mode-ex.el>.
149
150 (defun c-leave-cc-mode-mode ()
151 (setq c-buffer-is-cc-mode nil))
152
153 (defun c-init-language-vars-for (mode)
154 "Initialize the language variables for one of the language modes
155 directly supported by CC Mode. This can be used instead of the
156 `c-init-language-vars' macro if the language you want to use is one of
157 those, rather than a derived language defined through the language
158 variable system (see \"cc-langs.el\")."
159 (cond ((eq mode 'c-mode) (c-init-language-vars c-mode))
160 ((eq mode 'c++-mode) (c-init-language-vars c++-mode))
161 ((eq mode 'objc-mode) (c-init-language-vars objc-mode))
162 ((eq mode 'java-mode) (c-init-language-vars java-mode))
163 ((eq mode 'idl-mode) (c-init-language-vars idl-mode))
164 ((eq mode 'pike-mode) (c-init-language-vars pike-mode))
165 ((eq mode 'awk-mode) (c-init-language-vars awk-mode))
166 (t (error "Unsupported mode %s" mode))))
167
168 ;;;###autoload
169 (defun c-initialize-cc-mode (&optional new-style-init)
170 "Initialize CC Mode for use in the current buffer.
171 If the optional NEW-STYLE-INIT is nil or left out then all necessary
172 initialization to run CC Mode for the C language is done. Otherwise
173 only some basic setup is done, and a call to `c-init-language-vars' or
174 `c-init-language-vars-for' is necessary too (which gives more
175 control). See \"cc-mode.el\" for more info."
176
177 (setq c-buffer-is-cc-mode t)
178
179 (let ((initprop 'cc-mode-is-initialized)
180 c-initialization-ok)
181 (unless (get 'c-initialize-cc-mode initprop)
182 (unwind-protect
183 (progn
184 (put 'c-initialize-cc-mode initprop t)
185 (c-initialize-builtin-style)
186 (run-hooks 'c-initialization-hook)
187 ;; Fix obsolete variables.
188 (if (boundp 'c-comment-continuation-stars)
189 (setq c-block-comment-prefix
190 (symbol-value 'c-comment-continuation-stars)))
191 (add-hook 'change-major-mode-hook 'c-leave-cc-mode-mode)
192 (setq c-initialization-ok t))
193 ;; Will try initialization hooks again if they failed.
194 (put 'c-initialize-cc-mode initprop c-initialization-ok))))
195
196 (unless new-style-init
197 (c-init-language-vars-for 'c-mode)))
198
199 \f
200 ;;; Common routines.
201
202 (defvar c-mode-base-map ()
203 "Keymap shared by all CC Mode related modes.")
204
205 (defun c-make-inherited-keymap ()
206 (let ((map (make-sparse-keymap)))
207 ;; Necessary to use `cc-bytecomp-fboundp' below since this
208 ;; function is called from top-level forms that are evaluated
209 ;; while cc-bytecomp is active when one does M-x eval-buffer.
210 (cond
211 ;; Emacs
212 ((cc-bytecomp-fboundp 'set-keymap-parent)
213 (set-keymap-parent map c-mode-base-map))
214 ;; XEmacs
215 ((cc-bytecomp-fboundp 'set-keymap-parents)
216 (set-keymap-parents map c-mode-base-map))
217 ;; incompatible
218 (t (error "CC Mode is incompatible with this version of Emacs")))
219 map))
220
221 (defun c-define-abbrev-table (name defs)
222 ;; Compatibility wrapper for `define-abbrev' which passes a non-nil
223 ;; sixth argument for SYSTEM-FLAG in emacsen that support it
224 ;; (currently only Emacs >= 21.2).
225 (let ((table (or (symbol-value name)
226 (progn (define-abbrev-table name nil)
227 (symbol-value name)))))
228 (while defs
229 (condition-case nil
230 (apply 'define-abbrev table (append (car defs) '(t)))
231 (wrong-number-of-arguments
232 (apply 'define-abbrev table (car defs))))
233 (setq defs (cdr defs)))))
234 (put 'c-define-abbrev-table 'lisp-indent-function 1)
235
236 (defun c-bind-special-erase-keys ()
237 ;; Only used in Emacs to bind C-c C-<delete> and C-c C-<backspace>
238 ;; to the proper keys depending on `normal-erase-is-backspace'.
239 (if normal-erase-is-backspace
240 (progn
241 (define-key c-mode-base-map (kbd "C-c C-<delete>")
242 'c-hungry-delete-forward)
243 (define-key c-mode-base-map (kbd "C-c C-<backspace>")
244 'c-hungry-delete-backwards))
245 (define-key c-mode-base-map (kbd "C-c C-<delete>")
246 'c-hungry-delete-backwards)
247 (define-key c-mode-base-map (kbd "C-c C-<backspace>")
248 'c-hungry-delete-forward)))
249
250 (if c-mode-base-map
251 nil
252
253 (setq c-mode-base-map (make-sparse-keymap))
254
255 ;; Separate M-BS from C-M-h. The former should remain
256 ;; backward-kill-word.
257 (define-key c-mode-base-map [(control meta h)] 'c-mark-function)
258 (define-key c-mode-base-map "\e\C-q" 'c-indent-exp)
259 (substitute-key-definition 'backward-sentence
260 'c-beginning-of-statement
261 c-mode-base-map global-map)
262 (substitute-key-definition 'forward-sentence
263 'c-end-of-statement
264 c-mode-base-map global-map)
265 (substitute-key-definition 'indent-new-comment-line
266 'c-indent-new-comment-line
267 c-mode-base-map global-map)
268 (substitute-key-definition 'indent-for-tab-command
269 ;; XXX Is this the right thing to do
270 ;; here?
271 'c-indent-line-or-region
272 c-mode-base-map global-map)
273 (when (fboundp 'comment-indent-new-line)
274 ;; indent-new-comment-line has changed name to
275 ;; comment-indent-new-line in Emacs 21.
276 (substitute-key-definition 'comment-indent-new-line
277 'c-indent-new-comment-line
278 c-mode-base-map global-map))
279
280 ;; RMS says don't make these the default.
281 ;; (April 2006): RMS has now approved these commands as defaults.
282 (unless (memq 'argumentative-bod-function c-emacs-features)
283 (define-key c-mode-base-map "\e\C-a" 'c-beginning-of-defun)
284 (define-key c-mode-base-map "\e\C-e" 'c-end-of-defun))
285
286 (define-key c-mode-base-map "\C-c\C-n" 'c-forward-conditional)
287 (define-key c-mode-base-map "\C-c\C-p" 'c-backward-conditional)
288 (define-key c-mode-base-map "\C-c\C-u" 'c-up-conditional)
289
290 ;; It doesn't suffice to put `c-fill-paragraph' on
291 ;; `fill-paragraph-function' since `c-fill-paragraph' must be called
292 ;; before any fill prefix adaption is done. E.g. `filladapt-mode'
293 ;; replaces `fill-paragraph' and does the adaption before calling
294 ;; `fill-paragraph-function', and we have to mask comments etc
295 ;; before that. Also, `c-fill-paragraph' chains on to
296 ;; `fill-paragraph' and the value on `fill-paragraph-function' to
297 ;; do the actual filling work.
298 (substitute-key-definition 'fill-paragraph 'c-fill-paragraph
299 c-mode-base-map global-map)
300 ;; In XEmacs the default fill function is called
301 ;; fill-paragraph-or-region.
302 (substitute-key-definition 'fill-paragraph-or-region 'c-fill-paragraph
303 c-mode-base-map global-map)
304
305 ;; We bind the forward deletion key and (implicitly) C-d to
306 ;; `c-electric-delete-forward', and the backward deletion key to
307 ;; `c-electric-backspace'. The hungry variants are bound to the
308 ;; same keys but prefixed with C-c. This implies that C-c C-d is
309 ;; `c-hungry-delete-forward'. For consistency, we bind not only C-c
310 ;; <backspace> to `c-hungry-delete-backwards' but also
311 ;; C-c C-<backspace>, so that the Ctrl key can be held down during
312 ;; the whole sequence regardless of the direction. This in turn
313 ;; implies that we bind C-c C-<delete> to `c-hungry-delete-forward',
314 ;; for the same reason.
315
316 ;; Bind the electric deletion functions to C-d and DEL. Emacs 21
317 ;; automatically maps the [delete] and [backspace] keys to these two
318 ;; depending on window system and user preferences. (In earlier
319 ;; versions it's possible to do the same by using `function-key-map'.)
320 (define-key c-mode-base-map "\C-d" 'c-electric-delete-forward)
321 (define-key c-mode-base-map "\177" 'c-electric-backspace)
322 (define-key c-mode-base-map "\C-c\C-d" 'c-hungry-delete-forward)
323 (define-key c-mode-base-map [?\C-c ?\d] 'c-hungry-delete-backwards)
324 (define-key c-mode-base-map [?\C-c ?\C-\d] 'c-hungry-delete-backwards)
325 (define-key c-mode-base-map [?\C-c deletechar] 'c-hungry-delete-forward) ; C-c <delete> on a tty.
326 (define-key c-mode-base-map [?\C-c (control deletechar)] ; C-c C-<delete> on a tty.
327 'c-hungry-delete-forward)
328 (when (boundp 'normal-erase-is-backspace)
329 ;; The automatic C-d and DEL mapping functionality doesn't extend
330 ;; to special combinations like C-c C-<delete>, so we have to hook
331 ;; into the `normal-erase-is-backspace' system to bind it directly
332 ;; as appropriate.
333 (add-hook 'normal-erase-is-backspace-hook 'c-bind-special-erase-keys)
334 (c-bind-special-erase-keys))
335
336 (when (fboundp 'delete-forward-p)
337 ;; In XEmacs we fix the forward and backward deletion behavior by
338 ;; binding the keysyms for the [delete] and [backspace] keys
339 ;; directly, and use `delete-forward-p' to decide what [delete]
340 ;; should do. That's done in the XEmacs specific
341 ;; `c-electric-delete' and `c-hungry-delete' functions.
342 (define-key c-mode-base-map [delete] 'c-electric-delete)
343 (define-key c-mode-base-map [backspace] 'c-electric-backspace)
344 (define-key c-mode-base-map (kbd "C-c <delete>") 'c-hungry-delete)
345 (define-key c-mode-base-map (kbd "C-c C-<delete>") 'c-hungry-delete)
346 (define-key c-mode-base-map (kbd "C-c <backspace>")
347 'c-hungry-delete-backwards)
348 (define-key c-mode-base-map (kbd "C-c C-<backspace>")
349 'c-hungry-delete-backwards))
350
351 (define-key c-mode-base-map "#" 'c-electric-pound)
352 (define-key c-mode-base-map "{" 'c-electric-brace)
353 (define-key c-mode-base-map "}" 'c-electric-brace)
354 (define-key c-mode-base-map "/" 'c-electric-slash)
355 (define-key c-mode-base-map "*" 'c-electric-star)
356 (define-key c-mode-base-map ";" 'c-electric-semi&comma)
357 (define-key c-mode-base-map "," 'c-electric-semi&comma)
358 (define-key c-mode-base-map ":" 'c-electric-colon)
359 (define-key c-mode-base-map "(" 'c-electric-paren)
360 (define-key c-mode-base-map ")" 'c-electric-paren)
361
362 (define-key c-mode-base-map "\C-c\C-\\" 'c-backslash-region)
363 (define-key c-mode-base-map "\C-c\C-a" 'c-toggle-auto-newline)
364 (define-key c-mode-base-map "\C-c\C-b" 'c-submit-bug-report)
365 (define-key c-mode-base-map "\C-c\C-c" 'comment-region)
366 (define-key c-mode-base-map "\C-c\C-l" 'c-toggle-electric-state)
367 (define-key c-mode-base-map "\C-c\C-o" 'c-set-offset)
368 (define-key c-mode-base-map "\C-c\C-q" 'c-indent-defun)
369 (define-key c-mode-base-map "\C-c\C-s" 'c-show-syntactic-information)
370 ;; (define-key c-mode-base-map "\C-c\C-t" 'c-toggle-auto-hungry-state) Commented out by ACM, 2005-03-05.
371 (define-key c-mode-base-map "\C-c." 'c-set-style)
372 ;; conflicts with OOBR
373 ;;(define-key c-mode-base-map "\C-c\C-v" 'c-version)
374 ;; (define-key c-mode-base-map "\C-c\C-y" 'c-toggle-hungry-state) Commented out by ACM, 2005-11-22.
375 (define-key c-mode-base-map "\C-c\C-w" 'subword-mode)
376 )
377
378 ;; We don't require the outline package, but we configure it a bit anyway.
379 (cc-bytecomp-defvar outline-level)
380
381 (defun c-mode-menu (modestr)
382 "Return a menu spec suitable for `easy-menu-define' that is exactly
383 like the C mode menu except that the menu bar item name is MODESTR
384 instead of \"C\".
385
386 This function is provided for compatibility only; derived modes should
387 preferably use the `c-mode-menu' language constant directly."
388 (cons modestr (c-lang-const c-mode-menu c)))
389
390 ;; Ugly hack to pull in the definition of `c-populate-syntax-table'
391 ;; from cc-langs to make it available at runtime. It's either this or
392 ;; moving the definition for it to cc-defs, but that would mean to
393 ;; break up the syntax table setup over two files.
394 (defalias 'c-populate-syntax-table
395 (cc-eval-when-compile
396 (let ((f (symbol-function 'c-populate-syntax-table)))
397 (if (byte-code-function-p f) f (byte-compile f)))))
398
399 ;; CAUTION: Try to avoid installing things on
400 ;; `before-change-functions'. The macro `combine-after-change-calls'
401 ;; is used and it doesn't work if there are things on that hook. That
402 ;; can cause font lock functions to run in inconvenient places during
403 ;; temporary changes in some font lock support modes, causing extra
404 ;; unnecessary work and font lock glitches due to interactions between
405 ;; various text properties.
406 ;;
407 ;; (2007-02-12): The macro `combine-after-change-calls' ISN'T used any
408 ;; more.
409
410 (defun c-unfind-enclosing-token (pos)
411 ;; If POS is wholly inside a token, remove that id from
412 ;; `c-found-types', should it be present. Return t if we were in an
413 ;; id, else nil.
414 (save-excursion
415 (let ((tok-beg (progn (goto-char pos)
416 (and (c-beginning-of-current-token) (point))))
417 (tok-end (progn (goto-char pos)
418 (and (c-end-of-current-token) (point)))))
419 (when (and tok-beg tok-end)
420 (c-unfind-type (buffer-substring-no-properties tok-beg tok-end))
421 t))))
422
423 (defun c-unfind-coalesced-tokens (beg end)
424 ;; unless the non-empty region (beg end) is entirely WS and there's at
425 ;; least one character of WS just before or after this region, remove
426 ;; the tokens which touch the region from `c-found-types' should they
427 ;; be present.
428 (or (c-partial-ws-p beg end)
429 (save-excursion
430 (progn
431 (goto-char beg)
432 (or (eq beg (point-min))
433 (c-skip-ws-backward (1- beg))
434 (/= (point) beg)
435 (= (c-backward-token-2) 1)
436 (c-unfind-type (buffer-substring-no-properties
437 (point) beg)))
438 (goto-char end)
439 (or (eq end (point-max))
440 (c-skip-ws-forward (1+ end))
441 (/= (point) end)
442 (progn (forward-char) (c-end-of-current-token) nil)
443 (c-unfind-type (buffer-substring-no-properties
444 end (point))))))))
445
446 ;; c-maybe-stale-found-type records a place near the region being
447 ;; changed where an element of `found-types' might become stale. It
448 ;; is set in c-before-change and is either nil, or has the form:
449 ;;
450 ;; (c-decl-id-start "foo" 97 107 " (* ooka) " "o"), where
451 ;;
452 ;; o - `c-decl-id-start' is the c-type text property value at buffer
453 ;; pos 96.
454 ;;
455 ;; o - 97 107 is the region potentially containing the stale type -
456 ;; this is delimited by a non-nil c-type text property at 96 and
457 ;; either another one or a ";", "{", or "}" at 107.
458 ;;
459 ;; o - " (* ooka) " is the (before change) buffer portion containing
460 ;; the suspect type (here "ooka").
461 ;;
462 ;; o - "o" is the buffer contents which is about to be deleted. This
463 ;; would be the empty string for an insertion.
464 (defvar c-maybe-stale-found-type nil)
465 (make-variable-buffer-local 'c-maybe-stale-found-type)
466
467 (defun c-basic-common-init (mode default-style)
468 "Do the necessary initialization for the syntax handling routines
469 and the line breaking/filling code. Intended to be used by other
470 packages that embed CC Mode.
471
472 MODE is the CC Mode flavor to set up, e.g. 'c-mode or 'java-mode.
473 DEFAULT-STYLE tells which indentation style to install. It has the
474 same format as `c-default-style'.
475
476 Note that `c-init-language-vars' must be called before this function.
477 This function cannot do that since `c-init-language-vars' is a macro
478 that requires a literal mode spec at compile time."
479
480 (setq c-buffer-is-cc-mode mode)
481
482 ;; these variables should always be buffer local; they do not affect
483 ;; indentation style.
484 (make-local-variable 'comment-start)
485 (make-local-variable 'comment-end)
486 (make-local-variable 'comment-start-skip)
487
488 (make-local-variable 'paragraph-start)
489 (make-local-variable 'paragraph-separate)
490 (make-local-variable 'paragraph-ignore-fill-prefix)
491 (make-local-variable 'adaptive-fill-mode)
492 (make-local-variable 'adaptive-fill-regexp)
493
494 ;; now set their values
495 (set (make-local-variable 'parse-sexp-ignore-comments) t)
496 (set (make-local-variable 'indent-line-function) 'c-indent-line)
497 (set (make-local-variable 'indent-region-function) 'c-indent-region)
498 (set (make-local-variable 'normal-auto-fill-function) 'c-do-auto-fill)
499 (set (make-local-variable 'comment-multi-line) t)
500 (set (make-local-variable 'comment-line-break-function)
501 'c-indent-new-comment-line)
502
503 ;; Install `c-fill-paragraph' on `fill-paragraph-function' so that a
504 ;; direct call to `fill-paragraph' behaves better. This still
505 ;; doesn't work with filladapt but it's better than nothing.
506 (set (make-local-variable 'fill-paragraph-function) 'c-fill-paragraph)
507
508 ;; Initialize the cache of brace pairs, and opening braces/brackets/parens.
509 (c-state-cache-init)
510
511 (when (or c-recognize-<>-arglists
512 (c-major-mode-is 'awk-mode)
513 (c-major-mode-is '(java-mode c-mode c++-mode objc-mode)))
514 ;; We'll use the syntax-table text property to change the syntax
515 ;; of some chars for this language, so do the necessary setup for
516 ;; that.
517 ;;
518 ;; Note to other package developers: It's ok to turn this on in CC
519 ;; Mode buffers when CC Mode doesn't, but it's not ok to turn it
520 ;; off if CC Mode has turned it on.
521
522 ;; Emacs.
523 (when (boundp 'parse-sexp-lookup-properties)
524 (set (make-local-variable 'parse-sexp-lookup-properties) t))
525
526 ;; Same as above for XEmacs.
527 (when (boundp 'lookup-syntax-properties)
528 (set (make-local-variable 'lookup-syntax-properties) t)))
529
530 ;; Use this in Emacs 21+ to avoid meddling with the rear-nonsticky
531 ;; property on each character.
532 (when (boundp 'text-property-default-nonsticky)
533 (mapc (lambda (tprop)
534 (unless (assq tprop text-property-default-nonsticky)
535 (set (make-local-variable 'text-property-default-nonsticky)
536 (cons `(,tprop . t) text-property-default-nonsticky))))
537 '(syntax-table category c-type)))
538
539 ;; In Emacs 21 and later it's possible to turn off the ad-hoc
540 ;; heuristic that open parens in column 0 are defun starters. Since
541 ;; we have c-state-cache, that heuristic isn't useful and only causes
542 ;; trouble, so turn it off.
543 ;; 2006/12/17: This facility is somewhat confused, and doesn't really seem
544 ;; helpful. Comment it out for now.
545 ;; (when (memq 'col-0-paren c-emacs-features)
546 ;; (make-local-variable 'open-paren-in-column-0-is-defun-start)
547 ;; (setq open-paren-in-column-0-is-defun-start nil))
548
549 (c-clear-found-types)
550
551 ;; now set the mode style based on default-style
552 (let ((style (cc-choose-style-for-mode mode default-style)))
553 ;; Override style variables if `c-old-style-variable-behavior' is
554 ;; set. Also override if we are using global style variables,
555 ;; have already initialized a style once, and are switching to a
556 ;; different style. (It's doubtful whether this is desirable, but
557 ;; the whole situation with nonlocal style variables is a bit
558 ;; awkward. It's at least the most compatible way with the old
559 ;; style init procedure.)
560 (c-set-style style (not (or c-old-style-variable-behavior
561 (and (not c-style-variables-are-local-p)
562 c-indentation-style
563 (not (string-equal c-indentation-style
564 style)))))))
565 (c-setup-paragraph-variables)
566
567 ;; we have to do something special for c-offsets-alist so that the
568 ;; buffer local value has its own alist structure.
569 (setq c-offsets-alist (copy-alist c-offsets-alist))
570
571 ;; setup the comment indent variable in a Emacs version portable way
572 (set (make-local-variable 'comment-indent-function) 'c-comment-indent)
573
574 ;; ;; Put submode indicators onto minor-mode-alist, but only once.
575 ;; (or (assq 'c-submode-indicators minor-mode-alist)
576 ;; (setq minor-mode-alist
577 ;; (cons '(c-submode-indicators c-submode-indicators)
578 ;; minor-mode-alist)))
579 (c-update-modeline)
580
581 ;; Install the functions that ensure that various internal caches
582 ;; don't become invalid due to buffer changes.
583 (when (featurep 'xemacs)
584 (make-local-hook 'before-change-functions)
585 (make-local-hook 'after-change-functions))
586 (add-hook 'before-change-functions 'c-before-change nil t)
587 (add-hook 'after-change-functions 'c-after-change nil t)
588 (set (make-local-variable 'font-lock-extend-after-change-region-function)
589 'c-extend-after-change-region)) ; Currently (2009-05) used by all
590 ; languages with #define (C, C++,; ObjC), and by AWK.
591
592 (defun c-setup-doc-comment-style ()
593 "Initialize the variables that depend on the value of `c-doc-comment-style'."
594 (when (and (featurep 'font-lock)
595 (symbol-value 'font-lock-mode))
596 ;; Force font lock mode to reinitialize itself.
597 (font-lock-mode 0)
598 (font-lock-mode 1)))
599
600 ;; Buffer local variables defining the region to be fontified by a font lock
601 ;; after-change function. They are set in c-after-change to
602 ;; after-change-function's BEG and END, and may be modified by a
603 ;; `c-before-font-lock-function'.
604 (defvar c-new-BEG 0)
605 (make-variable-buffer-local 'c-new-BEG)
606 (defvar c-new-END 0)
607 (make-variable-buffer-local 'c-new-END)
608
609 (defun c-common-init (&optional mode)
610 "Common initialization for all CC Mode modes.
611 In addition to the work done by `c-basic-common-init' and
612 `c-font-lock-init', this function sets up various other things as
613 customary in CC Mode modes but which aren't strictly necessary for CC
614 Mode to operate correctly.
615
616 MODE is the symbol for the mode to initialize, like 'c-mode. See
617 `c-basic-common-init' for details. It's only optional to be
618 compatible with old code; callers should always specify it."
619
620 (unless mode
621 ;; Called from an old third party package. The fallback is to
622 ;; initialize for C.
623 (c-init-language-vars-for 'c-mode))
624
625 (c-basic-common-init mode c-default-style)
626 (when mode
627 ;; Only initialize font locking if we aren't called from an old package.
628 (c-font-lock-init))
629
630 ;; Starting a mode is a sort of "change". So call the change functions...
631 (save-restriction
632 (widen)
633 (setq c-new-BEG (point-min))
634 (setq c-new-END (point-max))
635 (save-excursion
636 (if c-get-state-before-change-functions
637 (mapc (lambda (fn)
638 (funcall fn (point-min) (point-max)))
639 c-get-state-before-change-functions))
640 (if c-before-font-lock-function
641 (funcall c-before-font-lock-function (point-min) (point-max)
642 (- (point-max) (point-min))))))
643
644 (set (make-local-variable 'outline-regexp) "[^#\n\^M]")
645 (set (make-local-variable 'outline-level) 'c-outline-level)
646
647 (let ((rfn (assq mode c-require-final-newline)))
648 (when rfn
649 (and (cdr rfn)
650 (set (make-local-variable 'require-final-newline)
651 mode-require-final-newline)))))
652
653 (defun c-count-cfss (lv-alist)
654 ;; LV-ALIST is an alist like `file-local-variables-alist'. Count how many
655 ;; elements with the key `c-file-style' there are in it.
656 (let ((elt-ptr lv-alist) elt (cownt 0))
657 (while elt-ptr
658 (setq elt (car elt-ptr)
659 elt-ptr (cdr elt-ptr))
660 (when (eq (car elt) 'c-file-style)
661 (setq cownt (1+ cownt))))
662 cownt))
663
664 (defun c-before-hack-hook ()
665 "Set the CC Mode style and \"offsets\" when in the buffer's local variables.
666 They are set only when, respectively, the pseudo variables
667 `c-file-style' and `c-file-offsets' are present in the list.
668
669 This function is called from the hook `before-hack-local-variables-hook'."
670 (when c-buffer-is-cc-mode
671 (let ((mode-cons (assq 'mode file-local-variables-alist))
672 (stile (cdr (assq 'c-file-style file-local-variables-alist)))
673 (offsets (cdr (assq 'c-file-offsets file-local-variables-alist))))
674 (when mode-cons
675 (hack-one-local-variable (car mode-cons) (cdr mode-cons))
676 (setq file-local-variables-alist
677 (delq mode-cons file-local-variables-alist)))
678 (when stile
679 (or (stringp stile) (error "c-file-style is not a string"))
680 (if (boundp 'dir-local-variables-alist)
681 ;; Determine whether `c-file-style' was set in the file's local
682 ;; variables or in a .dir-locals.el (a directory setting).
683 (let ((cfs-in-file-and-dir-count
684 (c-count-cfss file-local-variables-alist))
685 (cfs-in-dir-count (c-count-cfss dir-local-variables-alist)))
686 (c-set-style stile
687 (and (= cfs-in-file-and-dir-count cfs-in-dir-count)
688 'keep-defaults)))
689 (c-set-style stile)))
690 (when offsets
691 (mapc
692 (lambda (langentry)
693 (let ((langelem (car langentry))
694 (offset (cdr langentry)))
695 (c-set-offset langelem offset)))
696 offsets)))))
697
698 (defun c-remove-any-local-eval-or-mode-variables ()
699 ;; If the buffer specifies `mode' or `eval' in its File Local Variable list
700 ;; or on the first line, remove all occurrences. See
701 ;; `c-postprocess-file-styles' for justification. There is no need to save
702 ;; point here, or even bother too much about the buffer contents. However,
703 ;; DON'T mess up the kill-ring.
704 ;;
705 ;; Most of the code here is derived from Emacs 21.3's `hack-local-variables'
706 ;; in files.el.
707 (goto-char (point-max))
708 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move)
709 (let (lv-point (prefix "") (suffix ""))
710 (when (let ((case-fold-search t))
711 (search-forward "Local Variables:" nil t))
712 (setq lv-point (point))
713 ;; The prefix is what comes before "local variables:" in its line.
714 ;; The suffix is what comes after "local variables:" in its line.
715 (skip-chars-forward " \t")
716 (or (eolp)
717 (setq suffix (buffer-substring (point)
718 (progn (end-of-line) (point)))))
719 (goto-char (match-beginning 0))
720 (or (bolp)
721 (setq prefix
722 (buffer-substring (point)
723 (progn (beginning-of-line) (point)))))
724
725 (while (search-forward-regexp
726 (concat "^[ \t]*"
727 (regexp-quote prefix)
728 "\\(mode\\|eval\\):.*"
729 (regexp-quote suffix)
730 "$")
731 nil t)
732 (forward-line 0)
733 (delete-region (point) (progn (forward-line) (point)))))
734
735 ;; Delete the first line, if we've got one, in case it contains a mode spec.
736 (unless (and lv-point
737 (progn (goto-char lv-point)
738 (forward-line 0)
739 (bobp)))
740 (goto-char (point-min))
741 (unless (eobp)
742 (delete-region (point) (progn (forward-line) (point)))))))
743
744 (defun c-postprocess-file-styles ()
745 "Function that post processes relevant file local variables in CC Mode.
746 Currently, this function simply applies any style and offset settings
747 found in the file's Local Variable list. It first applies any style
748 setting found in `c-file-style', then it applies any offset settings
749 it finds in `c-file-offsets'.
750
751 Note that the style variables are always made local to the buffer."
752
753 ;; apply file styles and offsets
754 (when c-buffer-is-cc-mode
755 (if (or c-file-style c-file-offsets)
756 (c-make-styles-buffer-local t))
757 (when c-file-style
758 (or (stringp c-file-style)
759 (error "c-file-style is not a string"))
760 (c-set-style c-file-style))
761
762 (and c-file-offsets
763 (mapc
764 (lambda (langentry)
765 (let ((langelem (car langentry))
766 (offset (cdr langentry)))
767 (c-set-offset langelem offset)))
768 c-file-offsets))
769 ;; Problem: The file local variable block might have explicitly set a
770 ;; style variable. The `c-set-style' or `mapcar' call might have
771 ;; overwritten this. So we run `hack-local-variables' again to remedy
772 ;; this. There are no guarantees this will work properly, particularly as
773 ;; we have no control over what the other hook functions on
774 ;; `hack-local-variables-hook' would have done. We now (2006/2/1) remove
775 ;; any `eval' or `mode' expressions before we evaluate again (see below).
776 ;; ACM, 2005/11/2.
777 ;;
778 ;; Problem (bug reported by Gustav Broberg): if one of the variables is
779 ;; `mode', this will invoke c-mode (etc.) again, setting up the style etc.
780 ;; We prevent this by temporarily removing `mode' from the Local Variables
781 ;; section.
782 (if (or c-file-style c-file-offsets)
783 (let ((hack-local-variables-hook nil) (inhibit-read-only t))
784 (c-tentative-buffer-changes
785 (c-remove-any-local-eval-or-mode-variables)
786 (hack-local-variables))
787 nil))))
788
789 (if (boundp 'before-hack-local-variables-hook)
790 (add-hook 'before-hack-local-variables-hook 'c-before-hack-hook)
791 (add-hook 'hack-local-variables-hook 'c-postprocess-file-styles))
792
793 (defmacro c-run-mode-hooks (&rest hooks)
794 ;; Emacs 21.1 has introduced a system with delayed mode hooks that
795 ;; requires the use of the new function `run-mode-hooks'.
796 (if (cc-bytecomp-fboundp 'run-mode-hooks)
797 `(run-mode-hooks ,@hooks)
798 `(progn ,@(mapcar (lambda (hook) `(run-hooks ,hook)) hooks))))
799
800 \f
801 ;;; Change hooks, linking with Font Lock.
802
803 ;; Buffer local variables recording Beginning/End-of-Macro position before a
804 ;; change, when a macro straddles, respectively, the BEG or END (or both) of
805 ;; the change region. Otherwise these have the values BEG/END.
806 (defvar c-old-BOM 0)
807 (make-variable-buffer-local 'c-old-BOM)
808 (defvar c-old-EOM 0)
809 (make-variable-buffer-local 'c-old-EOM)
810
811 (defun c-extend-region-for-CPP (beg end)
812 ;; Set c-old-BOM or c-old-EOM respectively to BEG, END, each extended to the
813 ;; beginning/end of any preprocessor construct they may be in.
814 ;;
815 ;; Point is undefined both before and after this function call; the buffer
816 ;; has already been widened, and match-data saved. The return value is
817 ;; meaningless.
818 ;;
819 ;; This function is in the C/C++/ObjC values of
820 ;; `c-get-state-before-change-functions' and is called exclusively as a
821 ;; before change function.
822 (goto-char beg)
823 (c-beginning-of-macro)
824 (setq c-old-BOM (point))
825
826 (goto-char end)
827 (when (c-beginning-of-macro)
828 (c-end-of-macro)
829 (or (eobp) (forward-char))) ; Over the terminating NL which may be marked
830 ; with a c-cpp-delimiter category property
831 (setq c-old-EOM (point)))
832
833 (defun c-neutralize-CPP-line (beg end)
834 ;; BEG and END bound a region, typically a preprocessor line. Put a
835 ;; "punctuation" syntax-table property on syntactically obtrusive
836 ;; characters, ones which would interact syntactically with stuff outside
837 ;; this region.
838 ;;
839 ;; These are unmatched string delimiters, or unmatched
840 ;; parens/brackets/braces. An unclosed comment is regarded as valid, NOT
841 ;; obtrusive.
842 (save-excursion
843 (let (s)
844 (while
845 (progn
846 (setq s (parse-partial-sexp beg end -1))
847 (cond
848 ((< (nth 0 s) 0) ; found an unmated ),},]
849 (c-put-char-property (1- (point)) 'syntax-table '(1))
850 t)
851 ((nth 3 s) ; In a string
852 (c-put-char-property (nth 8 s) 'syntax-table '(1))
853 t)
854 ((> (nth 0 s) 0) ; In a (,{,[
855 (c-put-char-property (nth 1 s) 'syntax-table '(1))
856 t)
857 (t nil)))))))
858
859 (defun c-neutralize-syntax-in-and-mark-CPP (begg endd old-len)
860 ;; (i) Extend the font lock region to cover all changed preprocessor
861 ;; regions; it does this by setting the variables `c-new-BEG' and
862 ;; `c-new-END' to the new boundaries.
863 ;;
864 ;; (ii) "Neutralize" every preprocessor line wholly or partially in the
865 ;; extended changed region. "Restore" lines which were CPP lines before the
866 ;; change and are no longer so; these can be located from the Buffer local
867 ;; variables `c-old-BOM' and `c-old-EOM'.
868 ;;
869 ;; (iii) Mark every CPP construct by placing a `category' property value
870 ;; `c-cpp-delimiter' at its start and end. The marked characters are the
871 ;; opening # and usually the terminating EOL, but sometimes the character
872 ;; before a comment/string delimiter.
873 ;;
874 ;; That is, set syntax-table properties on characters that would otherwise
875 ;; interact syntactically with those outside the CPP line(s).
876 ;;
877 ;; This function is called from an after-change function, BEGG ENDD and
878 ;; OLD-LEN being the standard parameters. It prepares the buffer for font
879 ;; locking, hence must get called before `font-lock-after-change-function'.
880 ;;
881 ;; Point is undefined both before and after this function call, the buffer
882 ;; has been widened, and match-data saved. The return value is ignored.
883 ;;
884 ;; This function is the C/C++/ObjC value of `c-before-font-lock-function'.
885 ;;
886 ;; Note: SPEED _MATTERS_ IN THIS FUNCTION!!!
887 ;;
888 ;; This function might make hidden buffer changes.
889 (c-save-buffer-state (limits)
890 ;; First determine the region, (c-new-BEG c-new-END), which will get font
891 ;; locked. It might need "neutralizing". This region may not start
892 ;; inside a string, comment, or macro.
893 (goto-char c-old-BOM) ; already set to old start of macro or begg.
894 (setq c-new-BEG
895 (min c-new-BEG
896 (if (setq limits (c-state-literal-at (point)))
897 (cdr limits) ; go forward out of any string or comment.
898 (point))))
899
900 (goto-char endd)
901 (if (setq limits (c-state-literal-at (point)))
902 (goto-char (car limits))) ; go backward out of any string or comment.
903 (if (c-beginning-of-macro)
904 (c-end-of-macro))
905 (setq c-new-END (max c-new-END
906 (+ (- c-old-EOM old-len) (- endd begg))
907 (point)))
908
909 ;; Clear all old relevant properties.
910 (c-clear-char-property-with-value c-new-BEG c-new-END 'syntax-table '(1))
911 (c-clear-char-property-with-value c-new-BEG c-new-END 'category 'c-cpp-delimiter)
912 ;; FIXME!!! What about the "<" and ">" category properties? 2009-11-16
913
914 ;; Add needed properties to each CPP construct in the region.
915 (goto-char c-new-BEG)
916 (let ((pps-position c-new-BEG) pps-state mbeg)
917 (while (and (< (point) c-new-END)
918 (search-forward-regexp c-anchored-cpp-prefix c-new-END t))
919 ;; If we've found a "#" inside a string/comment, ignore it.
920 (setq pps-state
921 (parse-partial-sexp pps-position (point) nil nil pps-state)
922 pps-position (point))
923 (unless (or (nth 3 pps-state) ; in a string?
924 (nth 4 pps-state)) ; in a comment?
925 (goto-char (match-beginning 0))
926 (setq mbeg (point))
927 (if (> (c-syntactic-end-of-macro) mbeg)
928 (progn
929 (c-neutralize-CPP-line mbeg (point))
930 (c-set-cpp-delimiters mbeg (point))
931 ;(setq pps-position (point))
932 )
933 (forward-line)) ; no infinite loop with, e.g., "#//"
934 )))))
935
936 (defun c-before-change (beg end)
937 ;; Function to be put on `before-change-functions'. Primarily, this calls
938 ;; the language dependent `c-get-state-before-change-functions'. It is
939 ;; otherwise used only to remove stale entries from the `c-found-types'
940 ;; cache, and to record entries which a `c-after-change' function might
941 ;; confirm as stale.
942 ;;
943 ;; Note that this function must be FAST rather than accurate. Note
944 ;; also that it only has any effect when font locking is enabled.
945 ;; We exploit this by checking for font-lock-*-face instead of doing
946 ;; rigorous syntactic analysis.
947
948 ;; If either change boundary is wholly inside an identifier, delete
949 ;; it/them from the cache. Don't worry about being inside a string
950 ;; or a comment - "wrongly" removing a symbol from `c-found-types'
951 ;; isn't critical.
952 (setq c-maybe-stale-found-type nil)
953 (save-restriction
954 (save-match-data
955 (widen)
956 (save-excursion
957 ;; Are we inserting/deleting stuff in the middle of an identifier?
958 (c-unfind-enclosing-token beg)
959 (c-unfind-enclosing-token end)
960 ;; Are we coalescing two tokens together, e.g. "fo o" -> "foo"?
961 (when (< beg end)
962 (c-unfind-coalesced-tokens beg end))
963 ;; Are we (potentially) disrupting the syntactic context which
964 ;; makes a type a type? E.g. by inserting stuff after "foo" in
965 ;; "foo bar;", or before "foo" in "typedef foo *bar;"?
966 ;;
967 ;; We search for appropriate c-type properties "near" the change.
968 ;; First, find an appropriate boundary for this property search.
969 (let (lim
970 type type-pos
971 marked-id term-pos
972 (end1
973 (or (and (eq (get-text-property end 'face) 'font-lock-comment-face)
974 (previous-single-property-change end 'face))
975 end)))
976 (when (>= end1 beg) ; Don't hassle about changes entirely in comments.
977 ;; Find a limit for the search for a `c-type' property
978 (while
979 (and (/= (skip-chars-backward "^;{}") 0)
980 (> (point) (point-min))
981 (memq (c-get-char-property (1- (point)) 'face)
982 '(font-lock-comment-face font-lock-string-face))))
983 (setq lim (max (point-min) (1- (point))))
984
985 ;; Look for the latest `c-type' property before end1
986 (when (and (> end1 (point-min))
987 (setq type-pos
988 (if (get-text-property (1- end1) 'c-type)
989 end1
990 (previous-single-property-change end1 'c-type nil lim))))
991 (setq type (get-text-property (max (1- type-pos) lim) 'c-type))
992
993 (when (memq type '(c-decl-id-start c-decl-type-start))
994 ;; Get the identifier, if any, that the property is on.
995 (goto-char (1- type-pos))
996 (setq marked-id
997 (when (looking-at "\\(\\sw\\|\\s_\\)")
998 (c-beginning-of-current-token)
999 (buffer-substring-no-properties (point) type-pos)))
1000
1001 (goto-char end1)
1002 (skip-chars-forward "^;{}") ; FIXME!!! loop for comment, maybe
1003 (setq lim (point))
1004 (setq term-pos
1005 (or (next-single-property-change end 'c-type nil lim) lim))
1006 (setq c-maybe-stale-found-type
1007 (list type marked-id
1008 type-pos term-pos
1009 (buffer-substring-no-properties type-pos term-pos)
1010 (buffer-substring-no-properties beg end)))))))
1011
1012 (if c-get-state-before-change-functions
1013 (mapc (lambda (fn)
1014 (funcall fn beg end))
1015 c-get-state-before-change-functions))
1016 ))))
1017
1018 (defun c-after-change (beg end old-len)
1019 ;; Function put on `after-change-functions' to adjust various caches
1020 ;; etc. Prefer speed to finesse here, since there will be an order
1021 ;; of magnitude more calls to this function than any of the
1022 ;; functions that use the caches.
1023 ;;
1024 ;; Note that care must be taken so that this is called before any
1025 ;; font-lock callbacks since we might get calls to functions using
1026 ;; these caches from inside them, and we must thus be sure that this
1027 ;; has already been executed.
1028 ;;
1029 ;; This calls the language variable c-before-font-lock-function, if non nil.
1030 ;; This typically sets `syntax-table' properties.
1031
1032 (c-save-buffer-state ()
1033 ;; When `combine-after-change-calls' is used we might get calls
1034 ;; with regions outside the current narrowing. This has been
1035 ;; observed in Emacs 20.7.
1036 (save-restriction
1037 (save-match-data ; c-recognize-<>-arglists changes match-data
1038 (widen)
1039
1040 (when (> end (point-max))
1041 ;; Some emacsen might return positions past the end. This has been
1042 ;; observed in Emacs 20.7 when rereading a buffer changed on disk
1043 ;; (haven't been able to minimize it, but Emacs 21.3 appears to
1044 ;; work).
1045 (setq end (point-max))
1046 (when (> beg end)
1047 (setq beg end)))
1048
1049 ;; C-y is capable of spuriously converting category properties
1050 ;; c-</>-as-paren-syntax into hard syntax-table properties. Remove
1051 ;; these when it happens.
1052 (c-clear-char-property-with-value beg end 'syntax-table
1053 c-<-as-paren-syntax)
1054 (c-clear-char-property-with-value beg end 'syntax-table
1055 c->-as-paren-syntax)
1056
1057 (c-trim-found-types beg end old-len) ; maybe we don't need all of these.
1058 (c-invalidate-sws-region-after beg end)
1059 (c-invalidate-state-cache beg)
1060 (c-invalidate-find-decl-cache beg)
1061
1062 (when c-recognize-<>-arglists
1063 (c-after-change-check-<>-operators beg end))
1064
1065 ;; (c-new-BEG c-new-END) will be the region to fontify. It may become
1066 ;; larger than (beg end).
1067 (setq c-new-BEG beg
1068 c-new-END end)
1069 (if c-before-font-lock-function
1070 (save-excursion
1071 (funcall c-before-font-lock-function beg end old-len)))))))
1072
1073 (defun c-after-font-lock-init ()
1074 ;; Put on `font-lock-mode-hook'.
1075 (remove-hook 'after-change-functions 'c-after-change t)
1076 (add-hook 'after-change-functions 'c-after-change nil t))
1077
1078 (defun c-font-lock-init ()
1079 "Set up the font-lock variables for using the font-lock support in CC Mode.
1080 This does not load the font-lock package. Use after
1081 `c-basic-common-init' and after cc-fonts has been loaded."
1082
1083 (set (make-local-variable 'font-lock-defaults)
1084 `(,(if (c-major-mode-is 'awk-mode)
1085 ;; awk-mode currently has only one font lock level.
1086 'awk-font-lock-keywords
1087 (mapcar 'c-mode-symbol
1088 '("font-lock-keywords" "font-lock-keywords-1"
1089 "font-lock-keywords-2" "font-lock-keywords-3")))
1090 nil nil
1091 ,c-identifier-syntax-modifications
1092 c-beginning-of-syntax
1093 (font-lock-mark-block-function
1094 . c-mark-function)))
1095 (if (featurep 'xemacs)
1096 (make-local-hook 'font-lock-mode-hook))
1097 (add-hook 'font-lock-mode-hook 'c-after-font-lock-init nil t))
1098
1099 (defun c-extend-after-change-region (beg end old-len)
1100 "Extend the region to be fontified, if necessary."
1101 ;; Note: the parameters are ignored here. This somewhat indirect
1102 ;; implementation exists because it is minimally different from the
1103 ;; stand-alone CC Mode which, lacking
1104 ;; font-lock-extend-after-change-region-function, is forced to use advice
1105 ;; instead.
1106 ;;
1107 ;; Of the seven CC Mode languages, currently (2009-05) only C, C++, Objc
1108 ;; (the languages with #define) and AWK Mode make non-null use of this
1109 ;; function.
1110 (cons c-new-BEG c-new-END))
1111
1112 \f
1113 ;; Support for C
1114
1115 ;;;###autoload
1116 (defvar c-mode-syntax-table nil
1117 "Syntax table used in c-mode buffers.")
1118 (or c-mode-syntax-table
1119 (setq c-mode-syntax-table
1120 (funcall (c-lang-const c-make-mode-syntax-table c))))
1121
1122 (defvar c-mode-abbrev-table nil
1123 "Abbreviation table used in c-mode buffers.")
1124 (c-define-abbrev-table 'c-mode-abbrev-table
1125 '(("else" "else" c-electric-continued-statement 0)
1126 ("while" "while" c-electric-continued-statement 0)))
1127
1128 (defvar c-mode-map ()
1129 "Keymap used in c-mode buffers.")
1130 (if c-mode-map
1131 nil
1132 (setq c-mode-map (c-make-inherited-keymap))
1133 ;; add bindings which are only useful for C
1134 (define-key c-mode-map "\C-c\C-e" 'c-macro-expand)
1135 )
1136
1137 (easy-menu-define c-c-menu c-mode-map "C Mode Commands"
1138 (cons "C" (c-lang-const c-mode-menu c)))
1139
1140 ;; In XEmacs >= 21.5 modes should add their own entries to
1141 ;; `auto-mode-alist'. The comment form of autoload is used to avoid
1142 ;; doing this on load. That since `add-to-list' prepends the value
1143 ;; which could cause it to clobber user settings. Later emacsen have
1144 ;; an append option, but it's not safe to use.
1145
1146 ;; The extension ".C" is associated with C++ while the lowercase
1147 ;; variant goes with C. On case insensitive file systems, this means
1148 ;; that ".c" files also might open C++ mode if the C++ entry comes
1149 ;; first on `auto-mode-alist'. Thus we try to ensure that ".C" comes
1150 ;; after ".c", and since `add-to-list' adds the entry first we have to
1151 ;; add the ".C" entry first.
1152 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.\\(cc\\|hh\\)\\'" . c++-mode))
1153 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.[ch]\\(pp\\|xx\\|\\+\\+\\)\\'" . c++-mode))
1154 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.\\(CC?\\|HH?\\)\\'" . c++-mode))
1155
1156 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.[ch]\\'" . c-mode))
1157
1158 ;; NB: The following two associate yacc and lex files to C Mode, which
1159 ;; is not really suitable for those formats. Anyway, afaik there's
1160 ;; currently no better mode for them, and besides this is legacy.
1161 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.y\\(acc\\)?\\'" . c-mode))
1162 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.lex\\'" . c-mode))
1163
1164 ;; Preprocessed files generated by C and C++ compilers.
1165 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.i\\'" . c-mode))
1166 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.ii\\'" . c++-mode))
1167
1168
1169 ;;;###autoload
1170 (define-derived-mode c-mode prog-mode "C"
1171 "Major mode for editing K&R and ANSI C code.
1172 To submit a problem report, enter `\\[c-submit-bug-report]' from a
1173 c-mode buffer. This automatically sets up a mail buffer with version
1174 information already added. You just need to add a description of the
1175 problem, including a reproducible test case, and send the message.
1176
1177 To see what version of CC Mode you are running, enter `\\[c-version]'.
1178
1179 The hook `c-mode-common-hook' is run with no args at mode
1180 initialization, then `c-mode-hook'.
1181
1182 Key bindings:
1183 \\{c-mode-map}"
1184 (c-initialize-cc-mode t)
1185 (set-syntax-table c-mode-syntax-table)
1186 (setq local-abbrev-table c-mode-abbrev-table
1187 abbrev-mode t)
1188 (use-local-map c-mode-map)
1189 (c-init-language-vars-for 'c-mode)
1190 (c-make-macro-with-semi-re) ; matches macro names whose expansion ends with ;
1191 (c-common-init 'c-mode)
1192 (easy-menu-add c-c-menu)
1193 (cc-imenu-init cc-imenu-c-generic-expression)
1194 (c-run-mode-hooks 'c-mode-common-hook 'c-mode-hook)
1195 (c-update-modeline))
1196
1197 \f
1198 ;; Support for C++
1199
1200 ;;;###autoload
1201 (defvar c++-mode-syntax-table nil
1202 "Syntax table used in c++-mode buffers.")
1203 (or c++-mode-syntax-table
1204 (setq c++-mode-syntax-table
1205 (funcall (c-lang-const c-make-mode-syntax-table c++))))
1206
1207 (defvar c++-mode-abbrev-table nil
1208 "Abbreviation table used in c++-mode buffers.")
1209 (c-define-abbrev-table 'c++-mode-abbrev-table
1210 '(("else" "else" c-electric-continued-statement 0)
1211 ("while" "while" c-electric-continued-statement 0)
1212 ("catch" "catch" c-electric-continued-statement 0)))
1213
1214 (defvar c++-mode-map ()
1215 "Keymap used in c++-mode buffers.")
1216 (if c++-mode-map
1217 nil
1218 (setq c++-mode-map (c-make-inherited-keymap))
1219 ;; add bindings which are only useful for C++
1220 (define-key c++-mode-map "\C-c\C-e" 'c-macro-expand)
1221 (define-key c++-mode-map "\C-c:" 'c-scope-operator)
1222 (define-key c++-mode-map "<" 'c-electric-lt-gt)
1223 (define-key c++-mode-map ">" 'c-electric-lt-gt))
1224
1225 (easy-menu-define c-c++-menu c++-mode-map "C++ Mode Commands"
1226 (cons "C++" (c-lang-const c-mode-menu c++)))
1227
1228 ;;;###autoload
1229 (define-derived-mode c++-mode prog-mode "C++"
1230 "Major mode for editing C++ code.
1231 To submit a problem report, enter `\\[c-submit-bug-report]' from a
1232 c++-mode buffer. This automatically sets up a mail buffer with
1233 version information already added. You just need to add a description
1234 of the problem, including a reproducible test case, and send the
1235 message.
1236
1237 To see what version of CC Mode you are running, enter `\\[c-version]'.
1238
1239 The hook `c-mode-common-hook' is run with no args at mode
1240 initialization, then `c++-mode-hook'.
1241
1242 Key bindings:
1243 \\{c++-mode-map}"
1244 (c-initialize-cc-mode t)
1245 (set-syntax-table c++-mode-syntax-table)
1246 (setq local-abbrev-table c++-mode-abbrev-table
1247 abbrev-mode t)
1248 (use-local-map c++-mode-map)
1249 (c-init-language-vars-for 'c++-mode)
1250 (c-make-macro-with-semi-re) ; matches macro names whose expansion ends with ;
1251 (c-common-init 'c++-mode)
1252 (easy-menu-add c-c++-menu)
1253 (cc-imenu-init cc-imenu-c++-generic-expression)
1254 (c-run-mode-hooks 'c-mode-common-hook 'c++-mode-hook)
1255 (c-update-modeline))
1256
1257 \f
1258 ;; Support for Objective-C
1259
1260 ;;;###autoload
1261 (defvar objc-mode-syntax-table nil
1262 "Syntax table used in objc-mode buffers.")
1263 (or objc-mode-syntax-table
1264 (setq objc-mode-syntax-table
1265 (funcall (c-lang-const c-make-mode-syntax-table objc))))
1266
1267 (defvar objc-mode-abbrev-table nil
1268 "Abbreviation table used in objc-mode buffers.")
1269 (c-define-abbrev-table 'objc-mode-abbrev-table
1270 '(("else" "else" c-electric-continued-statement 0)
1271 ("while" "while" c-electric-continued-statement 0)))
1272
1273 (defvar objc-mode-map ()
1274 "Keymap used in objc-mode buffers.")
1275 (if objc-mode-map
1276 nil
1277 (setq objc-mode-map (c-make-inherited-keymap))
1278 ;; add bindings which are only useful for Objective-C
1279 (define-key objc-mode-map "\C-c\C-e" 'c-macro-expand))
1280
1281 (easy-menu-define c-objc-menu objc-mode-map "ObjC Mode Commands"
1282 (cons "ObjC" (c-lang-const c-mode-menu objc)))
1283
1284 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.m\\'" . objc-mode))
1285
1286 ;;;###autoload
1287 (define-derived-mode objc-mode prog-mode "ObjC"
1288 "Major mode for editing Objective C code.
1289 To submit a problem report, enter `\\[c-submit-bug-report]' from an
1290 objc-mode buffer. This automatically sets up a mail buffer with
1291 version information already added. You just need to add a description
1292 of the problem, including a reproducible test case, and send the
1293 message.
1294
1295 To see what version of CC Mode you are running, enter `\\[c-version]'.
1296
1297 The hook `c-mode-common-hook' is run with no args at mode
1298 initialization, then `objc-mode-hook'.
1299
1300 Key bindings:
1301 \\{objc-mode-map}"
1302 (c-initialize-cc-mode t)
1303 (set-syntax-table objc-mode-syntax-table)
1304 (setq local-abbrev-table objc-mode-abbrev-table
1305 abbrev-mode t)
1306 (use-local-map objc-mode-map)
1307 (c-init-language-vars-for 'objc-mode)
1308 (c-make-macro-with-semi-re) ; matches macro names whose expansion ends with ;
1309 (c-common-init 'objc-mode)
1310 (easy-menu-add c-objc-menu)
1311 (cc-imenu-init nil 'cc-imenu-objc-function)
1312 (c-run-mode-hooks 'c-mode-common-hook 'objc-mode-hook)
1313 (c-update-modeline))
1314
1315 \f
1316 ;; Support for Java
1317
1318 ;;;###autoload
1319 (defvar java-mode-syntax-table nil
1320 "Syntax table used in java-mode buffers.")
1321 (or java-mode-syntax-table
1322 (setq java-mode-syntax-table
1323 (funcall (c-lang-const c-make-mode-syntax-table java))))
1324
1325 (defvar java-mode-abbrev-table nil
1326 "Abbreviation table used in java-mode buffers.")
1327 (c-define-abbrev-table 'java-mode-abbrev-table
1328 '(("else" "else" c-electric-continued-statement 0)
1329 ("while" "while" c-electric-continued-statement 0)
1330 ("catch" "catch" c-electric-continued-statement 0)
1331 ("finally" "finally" c-electric-continued-statement 0)))
1332
1333 (defvar java-mode-map ()
1334 "Keymap used in java-mode buffers.")
1335 (if java-mode-map
1336 nil
1337 (setq java-mode-map (c-make-inherited-keymap))
1338 ;; add bindings which are only useful for Java
1339 )
1340
1341 ;; Regexp trying to describe the beginning of a Java top-level
1342 ;; definition. This is not used by CC Mode, nor is it maintained
1343 ;; since it's practically impossible to write a regexp that reliably
1344 ;; matches such a construct. Other tools are necessary.
1345 (defconst c-Java-defun-prompt-regexp
1346 "^[ \t]*\\(\\(\\(public\\|protected\\|private\\|const\\|abstract\\|synchronized\\|final\\|static\\|threadsafe\\|transient\\|native\\|volatile\\)\\s-+\\)*\\(\\(\\([[a-zA-Z][][_$.a-zA-Z0-9]*[][_$.a-zA-Z0-9]+\\|[[a-zA-Z]\\)\\s-*\\)\\s-+\\)\\)?\\(\\([[a-zA-Z][][_$.a-zA-Z0-9]*\\s-+\\)\\s-*\\)?\\([_a-zA-Z][^][ \t:;.,{}()\7f=]*\\|\\([_$a-zA-Z][_$.a-zA-Z0-9]*\\)\\)\\s-*\\(([^);{}]*)\\)?\\([] \t]*\\)\\(\\s-*\\<throws\\>\\s-*\\(\\([_$a-zA-Z][_$.a-zA-Z0-9]*\\)[, \t\n\r\f\v]*\\)+\\)?\\s-*")
1347
1348 (easy-menu-define c-java-menu java-mode-map "Java Mode Commands"
1349 (cons "Java" (c-lang-const c-mode-menu java)))
1350
1351 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.java\\'" . java-mode))
1352
1353 ;;;###autoload
1354 (define-derived-mode java-mode prog-mode "Java"
1355 "Major mode for editing Java code.
1356 To submit a problem report, enter `\\[c-submit-bug-report]' from a
1357 java-mode buffer. This automatically sets up a mail buffer with
1358 version information already added. You just need to add a description
1359 of the problem, including a reproducible test case, and send the
1360 message.
1361
1362 To see what version of CC Mode you are running, enter `\\[c-version]'.
1363
1364 The hook `c-mode-common-hook' is run with no args at mode
1365 initialization, then `java-mode-hook'.
1366
1367 Key bindings:
1368 \\{java-mode-map}"
1369 (c-initialize-cc-mode t)
1370 (set-syntax-table java-mode-syntax-table)
1371 (setq local-abbrev-table java-mode-abbrev-table
1372 abbrev-mode t)
1373 (use-local-map java-mode-map)
1374 (c-init-language-vars-for 'java-mode)
1375 (c-common-init 'java-mode)
1376 (easy-menu-add c-java-menu)
1377 (cc-imenu-init cc-imenu-java-generic-expression)
1378 (c-run-mode-hooks 'c-mode-common-hook 'java-mode-hook)
1379 (c-update-modeline))
1380
1381 \f
1382 ;; Support for CORBA's IDL language
1383
1384 ;;;###autoload
1385 (defvar idl-mode-syntax-table nil
1386 "Syntax table used in idl-mode buffers.")
1387 (or idl-mode-syntax-table
1388 (setq idl-mode-syntax-table
1389 (funcall (c-lang-const c-make-mode-syntax-table idl))))
1390
1391 (defvar idl-mode-abbrev-table nil
1392 "Abbreviation table used in idl-mode buffers.")
1393 (c-define-abbrev-table 'idl-mode-abbrev-table nil)
1394
1395 (defvar idl-mode-map ()
1396 "Keymap used in idl-mode buffers.")
1397 (if idl-mode-map
1398 nil
1399 (setq idl-mode-map (c-make-inherited-keymap))
1400 ;; add bindings which are only useful for IDL
1401 )
1402
1403 (easy-menu-define c-idl-menu idl-mode-map "IDL Mode Commands"
1404 (cons "IDL" (c-lang-const c-mode-menu idl)))
1405
1406 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.idl\\'" . idl-mode))
1407
1408 ;;;###autoload
1409 (define-derived-mode idl-mode prog-mode "IDL"
1410 "Major mode for editing CORBA's IDL, PSDL and CIDL code.
1411 To submit a problem report, enter `\\[c-submit-bug-report]' from an
1412 idl-mode buffer. This automatically sets up a mail buffer with
1413 version information already added. You just need to add a description
1414 of the problem, including a reproducible test case, and send the
1415 message.
1416
1417 To see what version of CC Mode you are running, enter `\\[c-version]'.
1418
1419 The hook `c-mode-common-hook' is run with no args at mode
1420 initialization, then `idl-mode-hook'.
1421
1422 Key bindings:
1423 \\{idl-mode-map}"
1424 (c-initialize-cc-mode t)
1425 (set-syntax-table idl-mode-syntax-table)
1426 (setq local-abbrev-table idl-mode-abbrev-table)
1427 (use-local-map idl-mode-map)
1428 (c-init-language-vars-for 'idl-mode)
1429 (c-common-init 'idl-mode)
1430 (easy-menu-add c-idl-menu)
1431 ;;(cc-imenu-init cc-imenu-idl-generic-expression) ;TODO
1432 (c-run-mode-hooks 'c-mode-common-hook 'idl-mode-hook)
1433 (c-update-modeline))
1434
1435 \f
1436 ;; Support for Pike
1437
1438 ;;;###autoload
1439 (defvar pike-mode-syntax-table nil
1440 "Syntax table used in pike-mode buffers.")
1441 (or pike-mode-syntax-table
1442 (setq pike-mode-syntax-table
1443 (funcall (c-lang-const c-make-mode-syntax-table pike))))
1444
1445 (defvar pike-mode-abbrev-table nil
1446 "Abbreviation table used in pike-mode buffers.")
1447 (c-define-abbrev-table 'pike-mode-abbrev-table
1448 '(("else" "else" c-electric-continued-statement 0)
1449 ("while" "while" c-electric-continued-statement 0)))
1450
1451 (defvar pike-mode-map ()
1452 "Keymap used in pike-mode buffers.")
1453 (if pike-mode-map
1454 nil
1455 (setq pike-mode-map (c-make-inherited-keymap))
1456 ;; additional bindings
1457 (define-key pike-mode-map "\C-c\C-e" 'c-macro-expand))
1458
1459 (easy-menu-define c-pike-menu pike-mode-map "Pike Mode Commands"
1460 (cons "Pike" (c-lang-const c-mode-menu pike)))
1461
1462 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.\\(u?lpc\\|pike\\|pmod\\(.in\\)?\\)\\'" . pike-mode))
1463 ;;;###autoload (add-to-list 'interpreter-mode-alist '("pike" . pike-mode))
1464
1465 ;;;###autoload
1466 (define-derived-mode pike-mode prog-mode "Pike"
1467 "Major mode for editing Pike code.
1468 To submit a problem report, enter `\\[c-submit-bug-report]' from a
1469 pike-mode buffer. This automatically sets up a mail buffer with
1470 version information already added. You just need to add a description
1471 of the problem, including a reproducible test case, and send the
1472 message.
1473
1474 To see what version of CC Mode you are running, enter `\\[c-version]'.
1475
1476 The hook `c-mode-common-hook' is run with no args at mode
1477 initialization, then `pike-mode-hook'.
1478
1479 Key bindings:
1480 \\{pike-mode-map}"
1481 (c-initialize-cc-mode t)
1482 (set-syntax-table pike-mode-syntax-table)
1483 (setq local-abbrev-table pike-mode-abbrev-table
1484 abbrev-mode t)
1485 (use-local-map pike-mode-map)
1486 (c-init-language-vars-for 'pike-mode)
1487 (c-common-init 'pike-mode)
1488 (easy-menu-add c-pike-menu)
1489 ;;(cc-imenu-init cc-imenu-pike-generic-expression) ;TODO
1490 (c-run-mode-hooks 'c-mode-common-hook 'pike-mode-hook)
1491 (c-update-modeline))
1492
1493 \f
1494 ;; Support for AWK
1495
1496 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.awk\\'" . awk-mode))
1497 ;;;###autoload (add-to-list 'interpreter-mode-alist '("awk" . awk-mode))
1498 ;;;###autoload (add-to-list 'interpreter-mode-alist '("mawk" . awk-mode))
1499 ;;;###autoload (add-to-list 'interpreter-mode-alist '("nawk" . awk-mode))
1500 ;;;###autoload (add-to-list 'interpreter-mode-alist '("gawk" . awk-mode))
1501
1502 ;;; Autoload directives must be on the top level, so we construct an
1503 ;;; autoload form instead.
1504 ;;;###autoload (autoload 'awk-mode "cc-mode" "Major mode for editing AWK code." t)
1505
1506 (defvar awk-mode-abbrev-table nil
1507 "Abbreviation table used in awk-mode buffers.")
1508 (c-define-abbrev-table 'awk-mode-abbrev-table
1509 '(("else" "else" c-electric-continued-statement 0)
1510 ("while" "while" c-electric-continued-statement 0)))
1511
1512 (defvar awk-mode-map ()
1513 "Keymap used in awk-mode buffers.")
1514 (if awk-mode-map
1515 nil
1516 (setq awk-mode-map (c-make-inherited-keymap))
1517 ;; add bindings which are only useful for awk.
1518 (define-key awk-mode-map "#" 'self-insert-command)
1519 (define-key awk-mode-map "/" 'self-insert-command)
1520 (define-key awk-mode-map "*" 'self-insert-command)
1521 (define-key awk-mode-map "\C-c\C-n" 'undefined) ; #if doesn't exist in awk.
1522 (define-key awk-mode-map "\C-c\C-p" 'undefined)
1523 (define-key awk-mode-map "\C-c\C-u" 'undefined)
1524 (define-key awk-mode-map "\M-a" 'c-beginning-of-statement) ; 2003/10/7
1525 (define-key awk-mode-map "\M-e" 'c-end-of-statement) ; 2003/10/7
1526 (define-key awk-mode-map "\C-\M-a" 'c-awk-beginning-of-defun)
1527 (define-key awk-mode-map "\C-\M-e" 'c-awk-end-of-defun))
1528
1529 (easy-menu-define c-awk-menu awk-mode-map "AWK Mode Commands"
1530 (cons "AWK" (c-lang-const c-mode-menu awk)))
1531
1532 ;; (require 'cc-awk) brings these in.
1533 (defvar awk-mode-syntax-table)
1534 (declare-function c-awk-unstick-NL-prop "cc-awk" ())
1535
1536 ;;;###autoload
1537 (define-derived-mode awk-mode prog-mode "AWK"
1538 "Major mode for editing AWK code.
1539 To submit a problem report, enter `\\[c-submit-bug-report]' from an
1540 awk-mode buffer. This automatically sets up a mail buffer with version
1541 information already added. You just need to add a description of the
1542 problem, including a reproducible test case, and send the message.
1543
1544 To see what version of CC Mode you are running, enter `\\[c-version]'.
1545
1546 The hook `c-mode-common-hook' is run with no args at mode
1547 initialization, then `awk-mode-hook'.
1548
1549 Key bindings:
1550 \\{awk-mode-map}"
1551 ;; We need the next line to stop the macro defining
1552 ;; `awk-mode-syntax-table'. This would mask the real table which is
1553 ;; declared in cc-awk.el and hasn't yet been loaded.
1554 :syntax-table nil
1555 (require 'cc-awk) ; Added 2003/6/10.
1556 (c-initialize-cc-mode t)
1557 (set-syntax-table awk-mode-syntax-table)
1558 (setq local-abbrev-table awk-mode-abbrev-table
1559 abbrev-mode t)
1560 (use-local-map awk-mode-map)
1561 (c-init-language-vars-for 'awk-mode)
1562 (c-common-init 'awk-mode)
1563 (c-awk-unstick-NL-prop)
1564
1565 ;; Prevent XEmacs's buffer-syntactic-context being used. See the comment
1566 ;; in cc-engine.el, just before (defun c-fast-in-literal ...
1567 (defalias 'c-in-literal 'c-slow-in-literal)
1568
1569 (c-run-mode-hooks 'c-mode-common-hook 'awk-mode-hook)
1570 (c-update-modeline))
1571
1572 \f
1573 ;; bug reporting
1574
1575 (defconst c-mode-help-address
1576 "bug-cc-mode@gnu.org"
1577 "Address(es) for CC Mode bug reports.")
1578
1579 (defun c-version ()
1580 "Echo the current version of CC Mode in the minibuffer."
1581 (interactive)
1582 (message "Using CC Mode version %s" c-version)
1583 (c-keep-region-active))
1584
1585 (defvar c-prepare-bug-report-hooks nil)
1586
1587 ;; Dynamic variables used by reporter.
1588 (defvar reporter-prompt-for-summary-p)
1589 (defvar reporter-dont-compact-list)
1590
1591 (defun c-submit-bug-report ()
1592 "Submit via mail a bug report on CC Mode."
1593 (interactive)
1594 (require 'reporter)
1595 ;; load in reporter
1596 (let ((reporter-prompt-for-summary-p t)
1597 (reporter-dont-compact-list '(c-offsets-alist))
1598 (style c-indentation-style)
1599 (c-features c-emacs-features))
1600 (and
1601 (if (y-or-n-p "Do you want to submit a report on CC Mode? ")
1602 t (message "") nil)
1603 (reporter-submit-bug-report
1604 c-mode-help-address
1605 (concat "CC Mode " c-version " (" mode-name ")")
1606 (let ((vars (append
1607 c-style-variables
1608 '(c-buffer-is-cc-mode
1609 c-tab-always-indent
1610 c-syntactic-indentation
1611 c-syntactic-indentation-in-macros
1612 c-ignore-auto-fill
1613 c-auto-align-backslashes
1614 c-backspace-function
1615 c-delete-function
1616 c-electric-pound-behavior
1617 c-default-style
1618 c-enable-xemacs-performance-kludge-p
1619 c-old-style-variable-behavior
1620 defun-prompt-regexp
1621 tab-width
1622 comment-column
1623 parse-sexp-ignore-comments
1624 parse-sexp-lookup-properties
1625 lookup-syntax-properties
1626 ;; A brain-damaged XEmacs only variable that, if
1627 ;; set to nil can cause all kinds of chaos.
1628 signal-error-on-buffer-boundary
1629 ;; Variables that affect line breaking and comments.
1630 auto-fill-mode
1631 auto-fill-function
1632 filladapt-mode
1633 comment-multi-line
1634 comment-start-skip
1635 fill-prefix
1636 fill-column
1637 paragraph-start
1638 adaptive-fill-mode
1639 adaptive-fill-regexp)
1640 nil)))
1641 (mapc (lambda (var) (unless (boundp var)
1642 (setq vars (delq var vars))))
1643 '(signal-error-on-buffer-boundary
1644 filladapt-mode
1645 defun-prompt-regexp
1646 font-lock-mode
1647 font-lock-maximum-decoration
1648 parse-sexp-lookup-properties
1649 lookup-syntax-properties))
1650 vars)
1651 (lambda ()
1652 (run-hooks 'c-prepare-bug-report-hooks)
1653 (insert (format "Buffer Style: %s\nc-emacs-features: %s\n"
1654 style c-features)))))))
1655
1656 \f
1657 (cc-provide 'cc-mode)
1658
1659 ;;; cc-mode.el ends here