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