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