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