]> code.delx.au - gnu-emacs/blob - lisp/progmodes/cc-mode.el
Merge from emacs--rel--22
[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, 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 ;; XEmacs
218 ((cc-bytecomp-fboundp 'set-keymap-parents)
219 (set-keymap-parents map c-mode-base-map))
220 ;; Emacs
221 ((cc-bytecomp-fboundp 'set-keymap-parent)
222 (set-keymap-parent 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 (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" 'c-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 'parse-sexp-ignore-comments)
490 (make-local-variable 'indent-line-function)
491 (make-local-variable 'indent-region-function)
492 (make-local-variable 'normal-auto-fill-function)
493 (make-local-variable 'comment-start)
494 (make-local-variable 'comment-end)
495 (make-local-variable 'comment-start-skip)
496 (make-local-variable 'comment-multi-line)
497 (make-local-variable 'comment-line-break-function)
498 (make-local-variable 'paragraph-start)
499 (make-local-variable 'paragraph-separate)
500 (make-local-variable 'paragraph-ignore-fill-prefix)
501 (make-local-variable 'adaptive-fill-mode)
502 (make-local-variable 'adaptive-fill-regexp)
503
504 ;; now set their values
505 (setq parse-sexp-ignore-comments t
506 indent-line-function 'c-indent-line
507 indent-region-function 'c-indent-region
508 normal-auto-fill-function 'c-do-auto-fill
509 comment-multi-line t
510 comment-line-break-function 'c-indent-new-comment-line)
511
512 ;; Install `c-fill-paragraph' on `fill-paragraph-function' so that a
513 ;; direct call to `fill-paragraph' behaves better. This still
514 ;; doesn't work with filladapt but it's better than nothing.
515 (make-local-variable 'fill-paragraph-function)
516 (setq fill-paragraph-function 'c-fill-paragraph)
517
518 (when (or c-recognize-<>-arglists
519 (c-major-mode-is 'awk-mode)
520 (c-major-mode-is '(c-mode c++-mode objc-mode)))
521 ;; We'll use the syntax-table text property to change the syntax
522 ;; of some chars for this language, so do the necessary setup for
523 ;; that.
524 ;;
525 ;; Note to other package developers: It's ok to turn this on in CC
526 ;; Mode buffers when CC Mode doesn't, but it's not ok to turn it
527 ;; off if CC Mode has turned it on.
528
529 ;; Emacs.
530 (when (boundp 'parse-sexp-lookup-properties)
531 (make-local-variable 'parse-sexp-lookup-properties)
532 (setq parse-sexp-lookup-properties t))
533
534 ;; Same as above for XEmacs.
535 (when (boundp 'lookup-syntax-properties)
536 (make-local-variable 'lookup-syntax-properties)
537 (setq lookup-syntax-properties t)))
538
539 ;; Use this in Emacs 21 to avoid meddling with the rear-nonsticky
540 ;; property on each character.
541 (when (boundp 'text-property-default-nonsticky)
542 (make-local-variable 'text-property-default-nonsticky)
543 (let ((elem (assq 'syntax-table text-property-default-nonsticky)))
544 (if elem
545 (setcdr elem t)
546 (setq text-property-default-nonsticky
547 (cons '(syntax-table . t)
548 text-property-default-nonsticky))))
549 (setq text-property-default-nonsticky
550 (cons '(c-type . t)
551 text-property-default-nonsticky)))
552
553 ;; In Emacs 21 and later it's possible to turn off the ad-hoc
554 ;; heuristic that open parens in column 0 are defun starters. Since
555 ;; we have c-state-cache, that heuristic isn't useful and only causes
556 ;; trouble, so turn it off.
557 ;; 2006/12/17: This facility is somewhat confused, and doesn't really seem
558 ;; helpful. Comment it out for now.
559 ;; (when (memq 'col-0-paren c-emacs-features)
560 ;; (make-local-variable 'open-paren-in-column-0-is-defun-start)
561 ;; (setq open-paren-in-column-0-is-defun-start nil))
562
563 (c-clear-found-types)
564
565 ;; now set the mode style based on default-style
566 (let ((style (if (stringp default-style)
567 default-style
568 (or (cdr (assq mode default-style))
569 (cdr (assq 'other default-style))
570 "gnu"))))
571 ;; Override style variables if `c-old-style-variable-behavior' is
572 ;; set. Also override if we are using global style variables,
573 ;; have already initialized a style once, and are switching to a
574 ;; different style. (It's doubtful whether this is desirable, but
575 ;; the whole situation with nonlocal style variables is a bit
576 ;; awkward. It's at least the most compatible way with the old
577 ;; style init procedure.)
578 (c-set-style style (not (or c-old-style-variable-behavior
579 (and (not c-style-variables-are-local-p)
580 c-indentation-style
581 (not (string-equal c-indentation-style
582 style)))))))
583 (c-setup-paragraph-variables)
584
585 ;; we have to do something special for c-offsets-alist so that the
586 ;; buffer local value has its own alist structure.
587 (setq c-offsets-alist (copy-alist c-offsets-alist))
588
589 ;; setup the comment indent variable in a Emacs version portable way
590 (make-local-variable 'comment-indent-function)
591 (setq comment-indent-function 'c-comment-indent)
592
593 ;; ;; Put submode indicators onto minor-mode-alist, but only once.
594 ;; (or (assq 'c-submode-indicators minor-mode-alist)
595 ;; (setq minor-mode-alist
596 ;; (cons '(c-submode-indicators c-submode-indicators)
597 ;; minor-mode-alist)))
598 (c-update-modeline)
599
600 ;; Install the functions that ensure that various internal caches
601 ;; don't become invalid due to buffer changes.
602 (make-local-hook 'before-change-functions)
603 (add-hook 'before-change-functions 'c-before-change nil t)
604 (make-local-hook 'after-change-functions)
605 (add-hook 'after-change-functions 'c-after-change nil t)
606 (set (make-local-variable 'font-lock-extend-after-change-region-function)
607 'c-extend-after-change-region)) ; Currently (2008-04), only used by AWK.
608
609 (defun c-setup-doc-comment-style ()
610 "Initialize the variables that depend on the value of `c-doc-comment-style'."
611 (when (and (featurep 'font-lock)
612 (symbol-value 'font-lock-mode))
613 ;; Force font lock mode to reinitialize itself.
614 (font-lock-mode 0)
615 (font-lock-mode 1)))
616
617 (defun c-common-init (&optional mode)
618 "Common initialization for all CC Mode modes.
619 In addition to the work done by `c-basic-common-init' and
620 `c-font-lock-init', this function sets up various other things as
621 customary in CC Mode modes but which aren't strictly necessary for CC
622 Mode to operate correctly.
623
624 MODE is the symbol for the mode to initialize, like 'c-mode. See
625 `c-basic-common-init' for details. It's only optional to be
626 compatible with old code; callers should always specify it."
627
628 (unless mode
629 ;; Called from an old third party package. The fallback is to
630 ;; initialize for C.
631 (c-init-language-vars-for 'c-mode))
632
633 (c-basic-common-init mode c-default-style)
634 (when mode
635 ;; Only initialize font locking if we aren't called from an old package.
636 (c-font-lock-init))
637
638 ;; Starting a mode is a sort of "change". So call the change functions...
639 (save-restriction
640 (widen)
641 (save-excursion
642 (if c-get-state-before-change-function
643 (funcall c-get-state-before-change-function (point-min) (point-max)))
644 (if c-before-font-lock-function
645 (funcall c-before-font-lock-function (point-min) (point-max)
646 (- (point-max) (point-min))))))
647
648 (make-local-variable 'outline-regexp)
649 (make-local-variable 'outline-level)
650 (setq outline-regexp "[^#\n\^M]"
651 outline-level 'c-outline-level)
652
653 (let ((rfn (assq mode c-require-final-newline)))
654 (when rfn
655 (make-local-variable 'require-final-newline)
656 (and (cdr rfn)
657 (setq require-final-newline mode-require-final-newline)))))
658
659 (defun c-remove-any-local-eval-or-mode-variables ()
660 ;; If the buffer specifies `mode' or `eval' in its File Local Variable list
661 ;; or on the first line, remove all occurrences. See
662 ;; `c-postprocess-file-styles' for justification. There is no need to save
663 ;; point here, or even bother too much about the buffer contents. However,
664 ;; DON'T mess up the kill-ring.
665 ;;
666 ;; Most of the code here is derived from Emacs 21.3's `hack-local-variables'
667 ;; in files.el.
668 (goto-char (point-max))
669 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move)
670 (let (lv-point (prefix "") (suffix ""))
671 (when (let ((case-fold-search t))
672 (search-forward "Local Variables:" nil t))
673 (setq lv-point (point))
674 ;; The prefix is what comes before "local variables:" in its line.
675 ;; The suffix is what comes after "local variables:" in its line.
676 (skip-chars-forward " \t")
677 (or (eolp)
678 (setq suffix (buffer-substring (point)
679 (progn (end-of-line) (point)))))
680 (goto-char (match-beginning 0))
681 (or (bolp)
682 (setq prefix
683 (buffer-substring (point)
684 (progn (beginning-of-line) (point)))))
685
686 (while (search-forward-regexp
687 (concat "^[ \t]*"
688 (regexp-quote prefix)
689 "\\(mode\\|eval\\):.*"
690 (regexp-quote suffix)
691 "$")
692 nil t)
693 (forward-line 0)
694 (delete-region (point) (progn (forward-line) (point)))))
695
696 ;; Delete the first line, if we've got one, in case it contains a mode spec.
697 (unless (and lv-point
698 (progn (goto-char lv-point)
699 (forward-line 0)
700 (bobp)))
701 (goto-char (point-min))
702 (unless (eobp)
703 (delete-region (point) (progn (forward-line) (point)))))))
704
705 (defun c-postprocess-file-styles ()
706 "Function that post processes relevant file local variables in CC Mode.
707 Currently, this function simply applies any style and offset settings
708 found in the file's Local Variable list. It first applies any style
709 setting found in `c-file-style', then it applies any offset settings
710 it finds in `c-file-offsets'.
711
712 Note that the style variables are always made local to the buffer."
713
714 ;; apply file styles and offsets
715 (when c-buffer-is-cc-mode
716 (if (or c-file-style c-file-offsets)
717 (c-make-styles-buffer-local t))
718 (when c-file-style
719 (or (stringp c-file-style)
720 (error "c-file-style is not a string"))
721 (c-set-style c-file-style))
722
723 (and c-file-offsets
724 (mapc
725 (lambda (langentry)
726 (let ((langelem (car langentry))
727 (offset (cdr langentry)))
728 (c-set-offset langelem offset)))
729 c-file-offsets))
730 ;; Problem: The file local variable block might have explicitly set a
731 ;; style variable. The `c-set-style' or `mapcar' call might have
732 ;; overwritten this. So we run `hack-local-variables' again to remedy
733 ;; this. There are no guarantees this will work properly, particularly as
734 ;; we have no control over what the other hook functions on
735 ;; `hack-local-variables-hook' would have done. We now (2006/2/1) remove
736 ;; any `eval' or `mode' expressions before we evaluate again (see below).
737 ;; ACM, 2005/11/2.
738 ;;
739 ;; Problem (bug reported by Gustav Broberg): if one of the variables is
740 ;; `mode', this will invoke c-mode (etc.) again, setting up the style etc.
741 ;; We prevent this by temporarily removing `mode' from the Local Variables
742 ;; section.
743 (if (or c-file-style c-file-offsets)
744 (let ((hack-local-variables-hook nil) (inhibit-read-only t))
745 (c-tentative-buffer-changes
746 (c-remove-any-local-eval-or-mode-variables)
747 (hack-local-variables))
748 nil))))
749
750 (add-hook 'hack-local-variables-hook 'c-postprocess-file-styles)
751
752 (defmacro c-run-mode-hooks (&rest hooks)
753 ;; Emacs 21.1 has introduced a system with delayed mode hooks that
754 ;; require the use of the new function `run-mode-hooks'.
755 (if (cc-bytecomp-fboundp 'run-mode-hooks)
756 `(run-mode-hooks ,@hooks)
757 `(progn ,@(mapcar (lambda (hook) `(run-hooks ,hook)) hooks))))
758
759 \f
760 ;;; Change hooks, linking with Font Lock.
761
762 ;; Buffer local variables defining the region to be fontified by a font lock
763 ;; after-change function. They are set in c-after-change to
764 ;; after-change-function's BEG and END, and may be modified by a
765 ;; `c-before-font-lock-function'.
766 (defvar c-new-BEG 0)
767 (make-variable-buffer-local 'c-new-BEG)
768 (defvar c-new-END 0)
769 (make-variable-buffer-local 'c-new-END)
770
771 ;; Buffer local variables recording Beginning/End-of-Macro position before a
772 ;; change, when a macro straddles, respectively, the BEG or END (or both) of
773 ;; the change region. Otherwise these have the values BEG/END.
774 (defvar c-old-BOM 0)
775 (make-variable-buffer-local 'c-old-BOM)
776 (defvar c-old-EOM 0)
777 (make-variable-buffer-local 'c-old-EOM)
778
779 (defun c-extend-region-for-CPP (beg end)
780 ;; Set c-old-BOM or c-old-EOM respectively to BEG, END, each extended to the
781 ;; beginning/end of any preprocessor construct they may be in.
782 ;;
783 ;; Point is undefined both before and after this function call; the buffer
784 ;; has already been widened, and match-data saved. The return value is
785 ;; meaningless.
786 ;;
787 ;; This function is the C/C++/ObjC value of
788 ;; `c-get-state-before-change-function' and is called exclusively as a
789 ;; before change function.
790 (goto-char beg)
791 (c-beginning-of-macro)
792 (setq c-old-BOM (point))
793
794 (goto-char end)
795 (if (c-beginning-of-macro)
796 (c-end-of-macro))
797 (setq c-old-EOM (point)))
798
799 (defun c-neutralize-CPP-line (beg end)
800 ;; BEG and END bound a region, typically a preprocessor line. Put a
801 ;; "punctuation" syntax-table property on syntactically obtrusive
802 ;; characters, ones which would interact syntactically with stuff outside
803 ;; this region.
804 ;;
805 ;; These are unmatched string delimiters, or unmatched
806 ;; parens/brackets/braces. An unclosed comment is regarded as valid, NOT
807 ;; obtrusive.
808 (save-excursion
809 (let (s)
810 (while
811 (progn
812 (setq s (parse-partial-sexp beg end -1))
813 (cond
814 ((< (nth 0 s) 0) ; found an unmated ),},]
815 (c-put-char-property (1- (point)) 'syntax-table '(1))
816 t)
817 ((nth 3 s) ; In a string
818 (c-put-char-property (nth 8 s) 'syntax-table '(1))
819 t)
820 ((> (nth 0 s) 0) ; In a (,{,[
821 (c-put-char-property (nth 1 s) 'syntax-table '(1))
822 t)
823 (t nil)))))))
824
825 (defun c-neutralize-syntax-in-CPP (begg endd old-len)
826 ;; "Neutralize" every preprocessor line wholly or partially in the changed
827 ;; region. "Restore" lines which were CPP lines before the change and are
828 ;; no longer so; these can be located from the Buffer local variables
829 ;; c-old-[EB]OM.
830 ;;
831 ;; That is, set syntax-table properties on characters that would otherwise
832 ;; interact syntactically with those outside the CPP line(s).
833 ;;
834 ;; This function is called from an after-change function, BEGG ENDD and
835 ;; OLD-LEN being the standard parameters. It prepares the buffer for font
836 ;; locking, hence must get called before `font-lock-after-change-function'.
837 ;;
838 ;; Point is undefined both before and after this function call, the buffer
839 ;; has been widened, and match-data saved. The return value is ignored.
840 ;;
841 ;; This function is the C/C++/ObjC value of `c-before-font-lock-function'.
842 ;;
843 ;; Note: SPEED _MATTERS_ IN THIS FUNCTION!!!
844 ;;
845 ;; This function might make hidden buffer changes.
846 (c-save-buffer-state (limits mbeg+1 beg end)
847 ;; First determine the region, (beg end), which may need "neutralizing".
848 ;; This may not start inside a string, comment, or macro.
849 (goto-char c-old-BOM) ; already set to old start of macro or begg.
850 (setq beg
851 (if (setq limits (c-literal-limits))
852 (cdr limits) ; go forward out of any string or comment.
853 (point)))
854
855 (goto-char endd)
856 (if (setq limits (c-literal-limits))
857 (goto-char (car limits))) ; go backward out of any string or comment.
858 (if (c-beginning-of-macro)
859 (c-end-of-macro))
860 (setq end (max (+ (- c-old-EOM old-len) (- endd begg))
861 (point)))
862
863 ;; Clear all old punctuation properties
864 (c-clear-char-property-with-value beg end 'syntax-table '(1))
865
866 (goto-char beg)
867 (let ((pps-position beg) pps-state)
868 (while (and (< (point) end)
869 (search-forward-regexp c-anchored-cpp-prefix end t))
870 ;; If we've found a "#" inside a string/comment, ignore it.
871 (setq pps-state
872 (parse-partial-sexp pps-position (point) nil nil pps-state)
873 pps-position (point))
874 (unless (or (nth 3 pps-state) ; in a string?
875 (nth 4 pps-state)) ; in a comment?
876 (setq mbeg+1 (point))
877 (c-end-of-macro) ; Do we need to go forward 1 char here? No!
878 (c-neutralize-CPP-line mbeg+1 (point))
879 (setq pps-position (point))))))) ; no need to update pps-state.
880
881 (defun c-before-change (beg end)
882 ;; Function to be put on `before-change-function'. Primarily, this calls
883 ;; the language dependent `c-get-state-before-change-function'. It is
884 ;; otherwise used only to remove stale entries from the `c-found-types'
885 ;; cache, and to record entries which a `c-after-change' function might
886 ;; confirm as stale.
887 ;;
888 ;; Note that this function must be FAST rather than accurate. Note
889 ;; also that it only has any effect when font locking is enabled.
890 ;; We exploit this by checking for font-lock-*-face instead of doing
891 ;; rigourous syntactic analysis.
892
893 ;; If either change boundary is wholly inside an identifier, delete
894 ;; it/them from the cache. Don't worry about being inside a string
895 ;; or a comment - "wrongly" removing a symbol from `c-found-types'
896 ;; isn't critical.
897 (setq c-maybe-stale-found-type nil)
898 (save-restriction
899 (save-match-data
900 (widen)
901 (save-excursion
902 ;; Are we inserting/deleting stuff in the middle of an identifier?
903 (c-unfind-enclosing-token beg)
904 (c-unfind-enclosing-token end)
905 ;; Are we coalescing two tokens together, e.g. "fo o" -> "foo"?
906 (when (< beg end)
907 (c-unfind-coalesced-tokens beg end))
908 ;; Are we (potentially) disrupting the syntactic context which
909 ;; makes a type a type? E.g. by inserting stuff after "foo" in
910 ;; "foo bar;", or before "foo" in "typedef foo *bar;"?
911 ;;
912 ;; We search for appropriate c-type properties "near" the change.
913 ;; First, find an appropriate boundary for this property search.
914 (let (lim
915 type type-pos
916 marked-id term-pos
917 (end1
918 (or (and (eq (get-text-property end 'face) 'font-lock-comment-face)
919 (previous-single-property-change end 'face))
920 end)))
921 (when (>= end1 beg) ; Don't hassle about changes entirely in comments.
922 ;; Find a limit for the search for a `c-type' property
923 (while
924 (and (/= (skip-chars-backward "^;{}") 0)
925 (> (point) (point-min))
926 (memq (c-get-char-property (1- (point)) 'face)
927 '(font-lock-comment-face font-lock-string-face))))
928 (setq lim (max (point-min) (1- (point))))
929
930 ;; Look for the latest `c-type' property before end1
931 (when (and (> end1 (point-min))
932 (setq type-pos
933 (if (get-text-property (1- end1) 'c-type)
934 end1
935 (previous-single-property-change end1 'c-type nil lim))))
936 (setq type (get-text-property (max (1- type-pos) lim) 'c-type))
937
938 (when (memq type '(c-decl-id-start c-decl-type-start))
939 ;; Get the identifier, if any, that the property is on.
940 (goto-char (1- type-pos))
941 (setq marked-id
942 (when (looking-at "\\(\\sw\\|\\s_\\)")
943 (c-beginning-of-current-token)
944 (buffer-substring-no-properties (point) type-pos)))
945
946 (goto-char end1)
947 (skip-chars-forward "^;{}") ; FIXME!!! loop for comment, maybe
948 (setq lim (point))
949 (setq term-pos
950 (or (next-single-property-change end 'c-type nil lim) lim))
951 (setq c-maybe-stale-found-type
952 (list type marked-id
953 type-pos term-pos
954 (buffer-substring-no-properties type-pos term-pos)
955 (buffer-substring-no-properties beg end)))))))
956
957 (setq c-new-BEG beg
958 c-new-END end)
959 (if c-get-state-before-change-function
960 (funcall c-get-state-before-change-function beg end))
961 ))))
962
963 (defun c-after-change (beg end old-len)
964 ;; Function put on `after-change-functions' to adjust various caches
965 ;; etc. Prefer speed to finesse here, since there will be an order
966 ;; of magnitude more calls to this function than any of the
967 ;; functions that use the caches.
968 ;;
969 ;; Note that care must be taken so that this is called before any
970 ;; font-lock callbacks since we might get calls to functions using
971 ;; these caches from inside them, and we must thus be sure that this
972 ;; has already been executed.
973 ;;
974 ;; This calls the language variable c-before-font-lock-function, if non nil.
975 ;; This typically sets `syntax-table' properties.
976
977 (c-save-buffer-state ()
978 ;; When `combine-after-change-calls' is used we might get calls
979 ;; with regions outside the current narrowing. This has been
980 ;; observed in Emacs 20.7.
981 (save-restriction
982 (save-match-data ; c-recognize-<>-arglists changes match-data
983 (widen)
984
985 (when (> end (point-max))
986 ;; Some emacsen might return positions past the end. This has been
987 ;; observed in Emacs 20.7 when rereading a buffer changed on disk
988 ;; (haven't been able to minimize it, but Emacs 21.3 appears to
989 ;; work).
990 (setq end (point-max))
991 (when (> beg end)
992 (setq beg end)))
993
994 (c-trim-found-types beg end old-len) ; maybe we don't need all of these.
995 (c-invalidate-sws-region-after beg end)
996 (c-invalidate-state-cache beg)
997 (c-invalidate-find-decl-cache beg)
998
999 (when c-recognize-<>-arglists
1000 (c-after-change-check-<>-operators beg end))
1001
1002 (if c-before-font-lock-function
1003 (save-excursion
1004 (funcall c-before-font-lock-function beg end old-len)))))))
1005
1006 (defun c-after-font-lock-init ()
1007 ;; Put on `font-lock-mode-hook'.
1008 (remove-hook 'after-change-functions 'c-after-change t)
1009 (add-hook 'after-change-functions 'c-after-change nil t))
1010
1011 (defun c-font-lock-init ()
1012 "Set up the font-lock variables for using the font-lock support in CC Mode.
1013 This does not load the font-lock package. Use after
1014 `c-basic-common-init' and after cc-fonts has been loaded."
1015
1016 (make-local-variable 'font-lock-defaults)
1017 (setq font-lock-defaults
1018 `(,(if (c-major-mode-is 'awk-mode)
1019 ;; awk-mode currently has only one font lock level.
1020 'awk-font-lock-keywords
1021 (mapcar 'c-mode-symbol
1022 '("font-lock-keywords" "font-lock-keywords-1"
1023 "font-lock-keywords-2" "font-lock-keywords-3")))
1024 nil nil
1025 ,c-identifier-syntax-modifications
1026 c-beginning-of-syntax
1027 (font-lock-lines-before . 1)
1028 (font-lock-mark-block-function
1029 . c-mark-function)))
1030
1031 (make-local-hook 'font-lock-mode-hook)
1032 (add-hook 'font-lock-mode-hook 'c-after-font-lock-init nil t))
1033
1034 (defun c-extend-after-change-region (beg end old-len)
1035 "Extend the region to be fontified, if necessary."
1036 ;; Note: the parameters are ignored here. This somewhat indirect
1037 ;; implementation exists because it is minimally different from the
1038 ;; stand-alone CC Mode which, lacking
1039 ;; font-lock-extend-after-change-region-function, is forced to use advice
1040 ;; instead.
1041 ;;
1042 ;; Of the seven CC Mode languages, currently (2008-04) only AWK Mode makes
1043 ;; non-null use of this function.
1044 (cons c-new-BEG c-new-END))
1045
1046 \f
1047 ;; Support for C
1048
1049 ;;;###autoload
1050 (defvar c-mode-syntax-table nil
1051 "Syntax table used in c-mode buffers.")
1052 (or c-mode-syntax-table
1053 (setq c-mode-syntax-table
1054 (funcall (c-lang-const c-make-mode-syntax-table c))))
1055
1056 (defvar c-mode-abbrev-table nil
1057 "Abbreviation table used in c-mode buffers.")
1058 (c-define-abbrev-table 'c-mode-abbrev-table
1059 '(("else" "else" c-electric-continued-statement 0)
1060 ("while" "while" c-electric-continued-statement 0)))
1061
1062 (defvar c-mode-map ()
1063 "Keymap used in c-mode buffers.")
1064 (if c-mode-map
1065 nil
1066 (setq c-mode-map (c-make-inherited-keymap))
1067 ;; add bindings which are only useful for C
1068 (define-key c-mode-map "\C-c\C-e" 'c-macro-expand)
1069 )
1070
1071 (easy-menu-define c-c-menu c-mode-map "C Mode Commands"
1072 (cons "C" (c-lang-const c-mode-menu c)))
1073
1074 ;; In XEmacs >= 21.5 modes should add their own entries to
1075 ;; `auto-mode-alist'. The comment form of autoload is used to avoid
1076 ;; doing this on load. That since `add-to-list' prepends the value
1077 ;; which could cause it to clobber user settings. Later emacsen have
1078 ;; an append option, but it's not safe to use.
1079
1080 ;; The the extension ".C" is associated to C++ while the lowercase
1081 ;; variant goes to C. On case insensitive file systems, this means
1082 ;; that ".c" files also might open C++ mode if the C++ entry comes
1083 ;; first on `auto-mode-alist'. Thus we try to ensure that ".C" comes
1084 ;; after ".c", and since `add-to-list' adds the entry first we have to
1085 ;; add the ".C" entry first.
1086 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.\\(cc\\|hh\\)\\'" . c++-mode))
1087 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.[ch]\\(pp\\|xx\\|\\+\\+\\)\\'" . c++-mode))
1088 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.\\(CC?\\|HH?\\)\\'" . c++-mode))
1089
1090 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.[ch]\\'" . c-mode))
1091
1092 ;; NB: The following two associate yacc and lex files to C Mode, which
1093 ;; is not really suitable for those formats. Anyway, afaik there's
1094 ;; currently no better mode for them, and besides this is legacy.
1095 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.y\\(acc\\)?\\'" . c-mode))
1096 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.lex\\'" . c-mode))
1097
1098 ;;;###autoload
1099 (defun c-mode ()
1100 "Major mode for editing K&R and ANSI C code.
1101 To submit a problem report, enter `\\[c-submit-bug-report]' from a
1102 c-mode buffer. This automatically sets up a mail buffer with version
1103 information already added. You just need to add a description of the
1104 problem, including a reproducible test case, and send the message.
1105
1106 To see what version of CC Mode you are running, enter `\\[c-version]'.
1107
1108 The hook `c-mode-common-hook' is run with no args at mode
1109 initialization, then `c-mode-hook'.
1110
1111 Key bindings:
1112 \\{c-mode-map}"
1113 (interactive)
1114 (kill-all-local-variables)
1115 (c-initialize-cc-mode t)
1116 (set-syntax-table c-mode-syntax-table)
1117 (setq major-mode 'c-mode
1118 mode-name "C"
1119 local-abbrev-table c-mode-abbrev-table
1120 abbrev-mode t)
1121 (use-local-map c-mode-map)
1122 (c-init-language-vars-for 'c-mode)
1123 (c-common-init 'c-mode)
1124 (easy-menu-add c-c-menu)
1125 (cc-imenu-init cc-imenu-c-generic-expression)
1126 (c-run-mode-hooks 'c-mode-common-hook 'c-mode-hook)
1127 (c-update-modeline))
1128
1129 \f
1130 ;; Support for C++
1131
1132 ;;;###autoload
1133 (defvar c++-mode-syntax-table nil
1134 "Syntax table used in c++-mode buffers.")
1135 (or c++-mode-syntax-table
1136 (setq c++-mode-syntax-table
1137 (funcall (c-lang-const c-make-mode-syntax-table c++))))
1138
1139 (defvar c++-mode-abbrev-table nil
1140 "Abbreviation table used in c++-mode buffers.")
1141 (c-define-abbrev-table 'c++-mode-abbrev-table
1142 '(("else" "else" c-electric-continued-statement 0)
1143 ("while" "while" c-electric-continued-statement 0)
1144 ("catch" "catch" c-electric-continued-statement 0)))
1145
1146 (defvar c++-mode-map ()
1147 "Keymap used in c++-mode buffers.")
1148 (if c++-mode-map
1149 nil
1150 (setq c++-mode-map (c-make-inherited-keymap))
1151 ;; add bindings which are only useful for C++
1152 (define-key c++-mode-map "\C-c\C-e" 'c-macro-expand)
1153 (define-key c++-mode-map "\C-c:" 'c-scope-operator)
1154 (define-key c++-mode-map "<" 'c-electric-lt-gt)
1155 (define-key c++-mode-map ">" 'c-electric-lt-gt))
1156
1157 (easy-menu-define c-c++-menu c++-mode-map "C++ Mode Commands"
1158 (cons "C++" (c-lang-const c-mode-menu c++)))
1159
1160 ;;;###autoload
1161 (defun c++-mode ()
1162 "Major mode for editing C++ code.
1163 To submit a problem report, enter `\\[c-submit-bug-report]' from a
1164 c++-mode buffer. This automatically sets up a mail buffer with
1165 version information already added. You just need to add a description
1166 of the problem, including a reproducible test case, and send the
1167 message.
1168
1169 To see what version of CC Mode you are running, enter `\\[c-version]'.
1170
1171 The hook `c-mode-common-hook' is run with no args at mode
1172 initialization, then `c++-mode-hook'.
1173
1174 Key bindings:
1175 \\{c++-mode-map}"
1176 (interactive)
1177 (kill-all-local-variables)
1178 (c-initialize-cc-mode t)
1179 (set-syntax-table c++-mode-syntax-table)
1180 (setq major-mode 'c++-mode
1181 mode-name "C++"
1182 local-abbrev-table c++-mode-abbrev-table
1183 abbrev-mode t)
1184 (use-local-map c++-mode-map)
1185 (c-init-language-vars-for 'c++-mode)
1186 (c-common-init 'c++-mode)
1187 (easy-menu-add c-c++-menu)
1188 (cc-imenu-init cc-imenu-c++-generic-expression)
1189 (c-run-mode-hooks 'c-mode-common-hook 'c++-mode-hook)
1190 (c-update-modeline))
1191
1192 \f
1193 ;; Support for Objective-C
1194
1195 ;;;###autoload
1196 (defvar objc-mode-syntax-table nil
1197 "Syntax table used in objc-mode buffers.")
1198 (or objc-mode-syntax-table
1199 (setq objc-mode-syntax-table
1200 (funcall (c-lang-const c-make-mode-syntax-table objc))))
1201
1202 (defvar objc-mode-abbrev-table nil
1203 "Abbreviation table used in objc-mode buffers.")
1204 (c-define-abbrev-table 'objc-mode-abbrev-table
1205 '(("else" "else" c-electric-continued-statement 0)
1206 ("while" "while" c-electric-continued-statement 0)))
1207
1208 (defvar objc-mode-map ()
1209 "Keymap used in objc-mode buffers.")
1210 (if objc-mode-map
1211 nil
1212 (setq objc-mode-map (c-make-inherited-keymap))
1213 ;; add bindings which are only useful for Objective-C
1214 (define-key objc-mode-map "\C-c\C-e" 'c-macro-expand))
1215
1216 (easy-menu-define c-objc-menu objc-mode-map "ObjC Mode Commands"
1217 (cons "ObjC" (c-lang-const c-mode-menu objc)))
1218
1219 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.m\\'" . objc-mode))
1220
1221 ;;;###autoload
1222 (defun objc-mode ()
1223 "Major mode for editing Objective C code.
1224 To submit a problem report, enter `\\[c-submit-bug-report]' from an
1225 objc-mode buffer. This automatically sets up a mail buffer with
1226 version information already added. You just need to add a description
1227 of the problem, including a reproducible test case, and send the
1228 message.
1229
1230 To see what version of CC Mode you are running, enter `\\[c-version]'.
1231
1232 The hook `c-mode-common-hook' is run with no args at mode
1233 initialization, then `objc-mode-hook'.
1234
1235 Key bindings:
1236 \\{objc-mode-map}"
1237 (interactive)
1238 (kill-all-local-variables)
1239 (c-initialize-cc-mode t)
1240 (set-syntax-table objc-mode-syntax-table)
1241 (setq major-mode 'objc-mode
1242 mode-name "ObjC"
1243 local-abbrev-table objc-mode-abbrev-table
1244 abbrev-mode t)
1245 (use-local-map objc-mode-map)
1246 (c-init-language-vars-for 'objc-mode)
1247 (c-common-init 'objc-mode)
1248 (easy-menu-add c-objc-menu)
1249 (cc-imenu-init nil 'cc-imenu-objc-function)
1250 (c-run-mode-hooks 'c-mode-common-hook 'objc-mode-hook)
1251 (c-update-modeline))
1252
1253 \f
1254 ;; Support for Java
1255
1256 ;;;###autoload
1257 (defvar java-mode-syntax-table nil
1258 "Syntax table used in java-mode buffers.")
1259 (or java-mode-syntax-table
1260 (setq java-mode-syntax-table
1261 (funcall (c-lang-const c-make-mode-syntax-table java))))
1262
1263 (defvar java-mode-abbrev-table nil
1264 "Abbreviation table used in java-mode buffers.")
1265 (c-define-abbrev-table 'java-mode-abbrev-table
1266 '(("else" "else" c-electric-continued-statement 0)
1267 ("while" "while" c-electric-continued-statement 0)
1268 ("catch" "catch" c-electric-continued-statement 0)
1269 ("finally" "finally" c-electric-continued-statement 0)))
1270
1271 (defvar java-mode-map ()
1272 "Keymap used in java-mode buffers.")
1273 (if java-mode-map
1274 nil
1275 (setq java-mode-map (c-make-inherited-keymap))
1276 ;; add bindings which are only useful for Java
1277 )
1278
1279 ;; Regexp trying to describe the beginning of a Java top-level
1280 ;; definition. This is not used by CC Mode, nor is it maintained
1281 ;; since it's practically impossible to write a regexp that reliably
1282 ;; matches such a construct. Other tools are necessary.
1283 (defconst c-Java-defun-prompt-regexp
1284 "^[ \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-*")
1285
1286 (easy-menu-define c-java-menu java-mode-map "Java Mode Commands"
1287 (cons "Java" (c-lang-const c-mode-menu java)))
1288
1289 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.java\\'" . java-mode))
1290
1291 ;;;###autoload
1292 (defun java-mode ()
1293 "Major mode for editing Java code.
1294 To submit a problem report, enter `\\[c-submit-bug-report]' from a
1295 java-mode buffer. This automatically sets up a mail buffer with
1296 version information already added. You just need to add a description
1297 of the problem, including a reproducible test case, and send the
1298 message.
1299
1300 To see what version of CC Mode you are running, enter `\\[c-version]'.
1301
1302 The hook `c-mode-common-hook' is run with no args at mode
1303 initialization, then `java-mode-hook'.
1304
1305 Key bindings:
1306 \\{java-mode-map}"
1307 (interactive)
1308 (kill-all-local-variables)
1309 (c-initialize-cc-mode t)
1310 (set-syntax-table java-mode-syntax-table)
1311 (setq major-mode 'java-mode
1312 mode-name "Java"
1313 local-abbrev-table java-mode-abbrev-table
1314 abbrev-mode t)
1315 (use-local-map java-mode-map)
1316 (c-init-language-vars-for 'java-mode)
1317 (c-common-init 'java-mode)
1318 (easy-menu-add c-java-menu)
1319 (cc-imenu-init cc-imenu-java-generic-expression)
1320 (c-run-mode-hooks 'c-mode-common-hook 'java-mode-hook)
1321 (c-update-modeline))
1322
1323 \f
1324 ;; Support for CORBA's IDL language
1325
1326 ;;;###autoload
1327 (defvar idl-mode-syntax-table nil
1328 "Syntax table used in idl-mode buffers.")
1329 (or idl-mode-syntax-table
1330 (setq idl-mode-syntax-table
1331 (funcall (c-lang-const c-make-mode-syntax-table idl))))
1332
1333 (defvar idl-mode-abbrev-table nil
1334 "Abbreviation table used in idl-mode buffers.")
1335 (c-define-abbrev-table 'idl-mode-abbrev-table nil)
1336
1337 (defvar idl-mode-map ()
1338 "Keymap used in idl-mode buffers.")
1339 (if idl-mode-map
1340 nil
1341 (setq idl-mode-map (c-make-inherited-keymap))
1342 ;; add bindings which are only useful for IDL
1343 )
1344
1345 (easy-menu-define c-idl-menu idl-mode-map "IDL Mode Commands"
1346 (cons "IDL" (c-lang-const c-mode-menu idl)))
1347
1348 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.idl\\'" . idl-mode))
1349
1350 ;;;###autoload
1351 (defun idl-mode ()
1352 "Major mode for editing CORBA's IDL, PSDL and CIDL code.
1353 To submit a problem report, enter `\\[c-submit-bug-report]' from an
1354 idl-mode buffer. This automatically sets up a mail buffer with
1355 version information already added. You just need to add a description
1356 of the problem, including a reproducible test case, and send the
1357 message.
1358
1359 To see what version of CC Mode you are running, enter `\\[c-version]'.
1360
1361 The hook `c-mode-common-hook' is run with no args at mode
1362 initialization, then `idl-mode-hook'.
1363
1364 Key bindings:
1365 \\{idl-mode-map}"
1366 (interactive)
1367 (kill-all-local-variables)
1368 (c-initialize-cc-mode t)
1369 (set-syntax-table idl-mode-syntax-table)
1370 (setq major-mode 'idl-mode
1371 mode-name "IDL"
1372 local-abbrev-table idl-mode-abbrev-table)
1373 (use-local-map idl-mode-map)
1374 (c-init-language-vars-for 'idl-mode)
1375 (c-common-init 'idl-mode)
1376 (easy-menu-add c-idl-menu)
1377 ;;(cc-imenu-init cc-imenu-idl-generic-expression) ;TODO
1378 (c-run-mode-hooks 'c-mode-common-hook 'idl-mode-hook)
1379 (c-update-modeline))
1380
1381 \f
1382 ;; Support for Pike
1383
1384 ;;;###autoload
1385 (defvar pike-mode-syntax-table nil
1386 "Syntax table used in pike-mode buffers.")
1387 (or pike-mode-syntax-table
1388 (setq pike-mode-syntax-table
1389 (funcall (c-lang-const c-make-mode-syntax-table pike))))
1390
1391 (defvar pike-mode-abbrev-table nil
1392 "Abbreviation table used in pike-mode buffers.")
1393 (c-define-abbrev-table 'pike-mode-abbrev-table
1394 '(("else" "else" c-electric-continued-statement 0)
1395 ("while" "while" c-electric-continued-statement 0)))
1396
1397 (defvar pike-mode-map ()
1398 "Keymap used in pike-mode buffers.")
1399 (if pike-mode-map
1400 nil
1401 (setq pike-mode-map (c-make-inherited-keymap))
1402 ;; additional bindings
1403 (define-key pike-mode-map "\C-c\C-e" 'c-macro-expand))
1404
1405 (easy-menu-define c-pike-menu pike-mode-map "Pike Mode Commands"
1406 (cons "Pike" (c-lang-const c-mode-menu pike)))
1407
1408 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.\\(u?lpc\\|pike\\|pmod\\(.in\\)?\\)\\'" . pike-mode))
1409 ;;;###autoload (add-to-list 'interpreter-mode-alist '("pike" . pike-mode))
1410
1411 ;;;###autoload
1412 (defun pike-mode ()
1413 "Major mode for editing Pike code.
1414 To submit a problem report, enter `\\[c-submit-bug-report]' from a
1415 pike-mode buffer. This automatically sets up a mail buffer with
1416 version information already added. You just need to add a description
1417 of the problem, including a reproducible test case, and send the
1418 message.
1419
1420 To see what version of CC Mode you are running, enter `\\[c-version]'.
1421
1422 The hook `c-mode-common-hook' is run with no args at mode
1423 initialization, then `pike-mode-hook'.
1424
1425 Key bindings:
1426 \\{pike-mode-map}"
1427 (interactive)
1428 (kill-all-local-variables)
1429 (c-initialize-cc-mode t)
1430 (set-syntax-table pike-mode-syntax-table)
1431 (setq major-mode 'pike-mode
1432 mode-name "Pike"
1433 local-abbrev-table pike-mode-abbrev-table
1434 abbrev-mode t)
1435 (use-local-map pike-mode-map)
1436 (c-init-language-vars-for 'pike-mode)
1437 (c-common-init 'pike-mode)
1438 (easy-menu-add c-pike-menu)
1439 ;;(cc-imenu-init cc-imenu-pike-generic-expression) ;TODO
1440 (c-run-mode-hooks 'c-mode-common-hook 'pike-mode-hook)
1441 (c-update-modeline))
1442
1443 \f
1444 ;; Support for AWK
1445
1446 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.awk\\'" . awk-mode))
1447 ;;;###autoload (add-to-list 'interpreter-mode-alist '("awk" . awk-mode))
1448 ;;;###autoload (add-to-list 'interpreter-mode-alist '("mawk" . awk-mode))
1449 ;;;###autoload (add-to-list 'interpreter-mode-alist '("nawk" . awk-mode))
1450 ;;;###autoload (add-to-list 'interpreter-mode-alist '("gawk" . awk-mode))
1451
1452 ;;; Autoload directives must be on the top level, so we construct an
1453 ;;; autoload form instead.
1454 ;;;###autoload (autoload 'awk-mode "cc-mode" "Major mode for editing AWK code." t)
1455
1456 (defvar awk-mode-abbrev-table nil
1457 "Abbreviation table used in awk-mode buffers.")
1458 (c-define-abbrev-table 'awk-mode-abbrev-table
1459 '(("else" "else" c-electric-continued-statement 0)
1460 ("while" "while" c-electric-continued-statement 0)))
1461
1462 (defvar awk-mode-map ()
1463 "Keymap used in awk-mode buffers.")
1464 (if awk-mode-map
1465 nil
1466 (setq awk-mode-map (c-make-inherited-keymap))
1467 ;; add bindings which are only useful for awk.
1468 (define-key awk-mode-map "#" 'self-insert-command)
1469 (define-key awk-mode-map "/" 'self-insert-command)
1470 (define-key awk-mode-map "*" 'self-insert-command)
1471 (define-key awk-mode-map "\C-c\C-n" 'undefined) ; #if doesn't exist in awk.
1472 (define-key awk-mode-map "\C-c\C-p" 'undefined)
1473 (define-key awk-mode-map "\C-c\C-u" 'undefined)
1474 (define-key awk-mode-map "\M-a" 'c-beginning-of-statement) ; 2003/10/7
1475 (define-key awk-mode-map "\M-e" 'c-end-of-statement) ; 2003/10/7
1476 (define-key awk-mode-map "\C-\M-a" 'c-awk-beginning-of-defun)
1477 (define-key awk-mode-map "\C-\M-e" 'c-awk-end-of-defun))
1478
1479 (easy-menu-define c-awk-menu awk-mode-map "AWK Mode Commands"
1480 (cons "AWK" (c-lang-const c-mode-menu awk)))
1481
1482 ;; (require 'cc-awk) brings these in.
1483 (defvar awk-mode-syntax-table)
1484 (declare-function c-awk-unstick-NL-prop "cc-awk" ())
1485
1486 (defun awk-mode ()
1487 "Major mode for editing AWK code.
1488 To submit a problem report, enter `\\[c-submit-bug-report]' from an
1489 awk-mode buffer. This automatically sets up a mail buffer with version
1490 information already added. You just need to add a description of the
1491 problem, including a reproducible test case, and send the message.
1492
1493 To see what version of CC Mode you are running, enter `\\[c-version]'.
1494
1495 The hook `c-mode-common-hook' is run with no args at mode
1496 initialization, then `awk-mode-hook'.
1497
1498 Key bindings:
1499 \\{awk-mode-map}"
1500 (interactive)
1501 (require 'cc-awk) ; Added 2003/6/10.
1502 (kill-all-local-variables)
1503 (c-initialize-cc-mode t)
1504 (set-syntax-table awk-mode-syntax-table)
1505 (setq major-mode 'awk-mode
1506 mode-name "AWK"
1507 local-abbrev-table awk-mode-abbrev-table
1508 abbrev-mode t)
1509 (use-local-map awk-mode-map)
1510 (c-init-language-vars-for 'awk-mode)
1511 (c-common-init 'awk-mode)
1512 (c-awk-unstick-NL-prop)
1513
1514 ;; Prevent Xemacs's buffer-syntactic-context being used. See the comment
1515 ;; in cc-engine.el, just before (defun c-fast-in-literal ...
1516 (defalias 'c-in-literal 'c-slow-in-literal)
1517
1518 (c-run-mode-hooks 'c-mode-common-hook 'awk-mode-hook)
1519 (c-update-modeline))
1520
1521 \f
1522 ;; bug reporting
1523
1524 (defconst c-mode-help-address
1525 "bug-cc-mode@gnu.org"
1526 "Address(es) for CC Mode bug reports.")
1527
1528 (defun c-version ()
1529 "Echo the current version of CC Mode in the minibuffer."
1530 (interactive)
1531 (message "Using CC Mode version %s" c-version)
1532 (c-keep-region-active))
1533
1534 (defvar c-prepare-bug-report-hooks nil)
1535
1536 ;; Dynamic variables used by reporter.
1537 (defvar reporter-prompt-for-summary-p)
1538 (defvar reporter-dont-compact-list)
1539
1540 (defun c-submit-bug-report ()
1541 "Submit via mail a bug report on CC Mode."
1542 (interactive)
1543 (require 'reporter)
1544 ;; load in reporter
1545 (let ((reporter-prompt-for-summary-p t)
1546 (reporter-dont-compact-list '(c-offsets-alist))
1547 (style c-indentation-style)
1548 (c-features c-emacs-features))
1549 (and
1550 (if (y-or-n-p "Do you want to submit a report on CC Mode? ")
1551 t (message "") nil)
1552 (reporter-submit-bug-report
1553 c-mode-help-address
1554 (concat "CC Mode " c-version " (" mode-name ")")
1555 (let ((vars (append
1556 c-style-variables
1557 '(c-buffer-is-cc-mode
1558 c-tab-always-indent
1559 c-syntactic-indentation
1560 c-syntactic-indentation-in-macros
1561 c-ignore-auto-fill
1562 c-auto-align-backslashes
1563 c-backspace-function
1564 c-delete-function
1565 c-electric-pound-behavior
1566 c-default-style
1567 c-enable-xemacs-performance-kludge-p
1568 c-old-style-variable-behavior
1569 defun-prompt-regexp
1570 tab-width
1571 comment-column
1572 parse-sexp-ignore-comments
1573 parse-sexp-lookup-properties
1574 lookup-syntax-properties
1575 ;; A brain-damaged XEmacs only variable that, if
1576 ;; set to nil can cause all kinds of chaos.
1577 signal-error-on-buffer-boundary
1578 ;; Variables that affect line breaking and comments.
1579 auto-fill-mode
1580 auto-fill-function
1581 filladapt-mode
1582 comment-multi-line
1583 comment-start-skip
1584 fill-prefix
1585 fill-column
1586 paragraph-start
1587 adaptive-fill-mode
1588 adaptive-fill-regexp)
1589 nil)))
1590 (mapc (lambda (var) (unless (boundp var)
1591 (setq vars (delq var vars))))
1592 '(signal-error-on-buffer-boundary
1593 filladapt-mode
1594 defun-prompt-regexp
1595 font-lock-mode
1596 font-lock-maximum-decoration
1597 parse-sexp-lookup-properties
1598 lookup-syntax-properties))
1599 vars)
1600 (lambda ()
1601 (run-hooks 'c-prepare-bug-report-hooks)
1602 (insert (format "Buffer Style: %s\nc-emacs-features: %s\n"
1603 style c-features)))))))
1604
1605 \f
1606 (cc-provide 'cc-mode)
1607
1608 ;; arch-tag: 7825e5c4-fd09-439f-a04d-4c13208ba3d7
1609 ;;; cc-mode.el ends here