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