annotate lisp/cc-mode/cc-mode.el @ 171:929b76928fce r20-3b12

Import from CVS: tag r20-3b12
author cvs
date Mon, 13 Aug 2007 09:47:52 +0200
parents 5a88923fcbfe
children 2d532a89d707
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1 ;;; cc-mode.el --- major mode for editing C, C++, Objective-C, and Java code
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
2
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
3 ;; Copyright (C) 1985,87,92,93,94,95,96,97 Free Software Foundation, Inc.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
4
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
5 ;; Authors: 1992-1997 Barry A. Warsaw
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
6 ;; 1987 Dave Detlefs and Stewart Clamen
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
7 ;; 1985 Richard M. Stallman
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
8 ;; Maintainer: cc-mode-help@python.org
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
9 ;; Created: a long, long, time ago. adapted from the original c-mode.el
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
10 ;; Version: 5.12
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
11 ;; Keywords: c languages oop
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
12
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
13 ;; NOTE: Read the commentary below for the right way to submit bug reports!
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
14 ;; NOTE: See the accompanying texinfo manual for details on using this mode!
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
15
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
16 ;; This file is part of GNU Emacs.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
17
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
18 ;; GNU Emacs is free software; you can redistribute it and/or modify
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
19 ;; it under the terms of the GNU General Public License as published by
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
20 ;; the Free Software Foundation; either version 2, or (at your option)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
21 ;; any later version.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
22
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
23 ;; GNU Emacs is distributed in the hope that it will be useful,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
24 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
26 ;; GNU General Public License for more details.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
27
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
28 ;; You should have received a copy of the GNU General Public License
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
29 ;; along with GNU Emacs; see the file COPYING. If not, write to the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
30 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
31 ;; Boston, MA 02111-1307, USA.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
32
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
33 ;;; Commentary:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
34
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
35 ;; This package provides GNU Emacs major modes for editing C, C++,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
36 ;; Objective-C, and Java code. As of the latest Emacs and XEmacs
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
37 ;; releases, it is the default package for editing these languages.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
38 ;; This package is called "CC Mode", and should be spelled exactly
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
39 ;; this way. It supports K&R and ANSI C, ANSI C++, Objective-C, and
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
40 ;; Java, with a consistent indentation model across all modes. This
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
41 ;; indentation model is intuitive and very flexible, so that almost
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
42 ;; any desired style of indentation can be supported. Installation,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
43 ;; usage, and programming details are contained in an accompanying
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
44 ;; texinfo manual.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
45
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
46 ;; CC Mode's immediate ancestors were, c++-mode.el, cplus-md.el, and
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
47 ;; cplus-md1.el..
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
48
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
49 ;; NOTE: This mode does not perform font-locking (a.k.a syntactic
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
50 ;; coloring, keyword highlighting, etc.) for any of the supported
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
51 ;; modes. Typically this is done by a package called font-lock.el
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
52 ;; which I do *not* maintain. You should contact the Emacs
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
53 ;; maintainers for questions about coloring or highlighting in any
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
54 ;; language mode.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
55
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
56 ;; To submit bug reports, type "C-c C-b". These will be sent to
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
57 ;; bug-gnu-emacs@prep.ai.mit.edu as well as cc-mode-help@python.org,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
58 ;; and I'll read about them there (the former is mirrored as the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
59 ;; Usenet newsgroup gnu.emacs.bug). Questions can sent to
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
60 ;; help-gnu-emacs@prep.ai.mit.edu (mirrored as gnu.emacs.help) and/or
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
61 ;; cc-mode-help@python.org. Please do not send bugs or questions to
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
62 ;; my personal account.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
63
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
64 ;; YOU CAN IGNORE ALL BYTE-COMPILER WARNINGS. They are the result of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
65 ;; the cross-Emacsen support. GNU Emacs 19 (from the FSF), GNU XEmacs
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
66 ;; 19 (formerly Lucid Emacs), and GNU Emacs 18 all do things
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
67 ;; differently and there's no way to shut the byte-compiler up at the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
68 ;; necessary granularity. Let me say this again: YOU CAN IGNORE ALL
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
69 ;; BYTE-COMPILER WARNINGS (you'd be surprised at how many people don't
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
70 ;; follow this advice :-).
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
71
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
72 ;; Many, many thanks go out to all the folks on the beta test list.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
73 ;; Without their patience, testing, insight, code contributions, and
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
74 ;; encouragement CC Mode would be a far inferior package.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
75
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
76 ;; You can get the latest version of CC Mode, including PostScript
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
77 ;; documentation and separate individual files from:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
78 ;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
79 ;; http://www.python.org/ftp/emacs/
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
80
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
81 ;; Or if you don't have access to the World Wide Web, through
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
82 ;; anonymous ftp from:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
83 ;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
84 ;; ftp://ftp.python.org/pub/emacs
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
85
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
86 ;;; Code:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
87
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
88 (eval-when-compile
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
89 (require 'cc-menus))
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
90 (require 'cc-defs)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
91
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
92
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
93 ;;;###autoload
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
94 (defun c-mode ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
95 "Major mode for editing K&R and ANSI C code.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
96 To submit a problem report, enter `\\[c-submit-bug-report]' from a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
97 c-mode buffer. This automatically sets up a mail buffer with version
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
98 information already added. You just need to add a description of the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
99 problem, including a reproducible test case and send the message.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
100
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
101 To see what version of CC Mode you are running, enter `\\[c-version]'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
102
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
103 The hook variable `c-mode-hook' is run with no args, if that value is
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
104 bound and has a non-nil value. Also the hook `c-mode-common-hook' is
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
105 run first.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
106
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
107 Key bindings:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
108 \\{c-mode-map}"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
109 (interactive)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
110 (c-load-all)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
111 (kill-all-local-variables)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
112 (set-syntax-table c-mode-syntax-table)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
113 (setq major-mode 'c-mode
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
114 mode-name "C"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
115 local-abbrev-table c-mode-abbrev-table)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
116 (use-local-map c-mode-map)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
117 (c-common-init)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
118 (setq comment-start "/* "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
119 comment-end " */"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
120 comment-multi-line t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
121 c-conditional-key c-C-conditional-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
122 c-class-key c-C-class-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
123 c-baseclass-key nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
124 c-comment-start-regexp c-C-comment-start-regexp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
125 imenu-generic-expression cc-imenu-c-generic-expression)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
126 (run-hooks 'c-mode-common-hook)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
127 (run-hooks 'c-mode-hook)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
128 (c-update-modeline))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
129
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
130
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
131 ;;;###autoload
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
132 (defun c++-mode ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
133 "Major mode for editing C++ code.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
134 To submit a problem report, enter `\\[c-submit-bug-report]' from a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
135 c++-mode buffer. This automatically sets up a mail buffer with
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
136 version information already added. You just need to add a description
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
137 of the problem, including a reproducible test case, and send the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
138 message.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
139
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
140 To see what version of CC Mode you are running, enter `\\[c-version]'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
141
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
142 The hook variable `c++-mode-hook' is run with no args, if that
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
143 variable is bound and has a non-nil value. Also the hook
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
144 `c-mode-common-hook' is run first.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
145
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
146 Key bindings:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
147 \\{c++-mode-map}"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
148 (interactive)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
149 (c-load-all)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
150 (kill-all-local-variables)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
151 (set-syntax-table c++-mode-syntax-table)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
152 (setq major-mode 'c++-mode
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
153 mode-name "C++"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
154 local-abbrev-table c++-mode-abbrev-table)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
155 (use-local-map c++-mode-map)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
156 (c-common-init)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
157 (setq comment-start "// "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
158 comment-end ""
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
159 comment-multi-line nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
160 c-conditional-key c-C++-conditional-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
161 c-comment-start-regexp c-C++-comment-start-regexp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
162 c-class-key c-C++-class-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
163 c-access-key c-C++-access-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
164 c-double-slash-is-comments-p t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
165 c-recognize-knr-p nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
166 imenu-generic-expression cc-imenu-c++-generic-expression)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
167 (run-hooks 'c-mode-common-hook)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
168 (run-hooks 'c++-mode-hook)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
169 (c-update-modeline))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
170
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
171
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
172 ;;;###autoload
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
173 (defun objc-mode ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
174 "Major mode for editing Objective C code.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
175 To submit a problem report, enter `\\[c-submit-bug-report]' from an
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
176 objc-mode buffer. This automatically sets up a mail buffer with
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
177 version information already added. You just need to add a description
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
178 of the problem, including a reproducible test case, and send the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
179 message.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
180
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
181 To see what version of CC Mode you are running, enter `\\[c-version]'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
182
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
183 The hook variable `objc-mode-hook' is run with no args, if that value
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
184 is bound and has a non-nil value. Also the hook `c-mode-common-hook'
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
185 is run first.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
186
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
187 Key bindings:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
188 \\{objc-mode-map}"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
189 (interactive)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
190 (c-load-all)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
191 (kill-all-local-variables)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
192 (set-syntax-table objc-mode-syntax-table)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
193 (setq major-mode 'objc-mode
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
194 mode-name "ObjC"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
195 local-abbrev-table objc-mode-abbrev-table)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
196 (use-local-map objc-mode-map)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
197 (c-common-init)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
198 (setq comment-start "// "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
199 comment-end ""
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
200 comment-multi-line nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
201 c-conditional-key c-C-conditional-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
202 c-comment-start-regexp c-C++-comment-start-regexp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
203 c-class-key c-ObjC-class-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
204 c-baseclass-key nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
205 c-access-key c-ObjC-access-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
206 c-double-slash-is-comments-p t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
207 c-method-key c-ObjC-method-key)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
208 (run-hooks 'c-mode-common-hook)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
209 (run-hooks 'objc-mode-hook)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
210 (c-update-modeline))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
211
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
212
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
213 ;;;###autoload
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
214 (defun java-mode ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
215 "Major mode for editing Java code.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
216 To submit a problem report, enter `\\[c-submit-bug-report]' from an
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
217 java-mode buffer. This automatically sets up a mail buffer with
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
218 version information already added. You just need to add a description
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
219 of the problem, including a reproducible test case and send the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
220 message.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
221
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
222 To see what version of CC Mode you are running, enter `\\[c-version]'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
223
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
224 The hook variable `java-mode-hook' is run with no args, if that value
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
225 is bound and has a non-nil value. Also the common hook
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
226 `c-mode-common-hook' is run first. Note that this mode automatically
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
227 sets the \"java\" style before calling any hooks so be careful if you
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
228 set styles in `c-mode-common-hook'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
229
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
230 Key bindings:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
231 \\{java-mode-map}"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
232 (interactive)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
233 (c-load-all)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
234 (kill-all-local-variables)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
235 (set-syntax-table java-mode-syntax-table)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
236 (setq major-mode 'java-mode
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
237 mode-name "Java"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
238 local-abbrev-table java-mode-abbrev-table)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
239 (use-local-map java-mode-map)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
240 (c-common-init)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
241 (setq comment-start "// "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
242 comment-end ""
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
243 comment-multi-line nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
244 c-conditional-key c-Java-conditional-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
245 c-comment-start-regexp c-Java-comment-start-regexp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
246 c-class-key c-Java-class-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
247 c-method-key c-Java-method-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
248 c-double-slash-is-comments-p t
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
249 c-baseclass-key nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
250 c-recognize-knr-p nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
251 c-access-key c-Java-access-key
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
252 ;defun-prompt-regexp c-Java-defun-prompt-regexp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
253 imenu-generic-expression cc-imenu-java-generic-expression
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
254 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
255 (c-set-style "java")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
256 (run-hooks 'c-mode-common-hook)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
257 (run-hooks 'java-mode-hook)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
258 (c-update-modeline))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
259
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
260
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
261 ;; defuns for submitting bug reports
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 165
diff changeset
262 (defconst c-version "5.12"
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
263 "CC Mode version number.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
264
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
265 (defconst c-mode-help-address
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
266 "bug-gnu-emacs@prep.ai.mit.edu, cc-mode-help@python.org"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
267 "Address for CC Mode bug reports.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
268
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
269 (defun c-version ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
270 "Echo the current version of CC Mode in the minibuffer."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
271 (interactive)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
272 (message "Using CC Mode version %s" c-version)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
273 (c-keep-region-active))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
274
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
275 ;; Get reporter-submit-bug-report when byte-compiling
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
276 (eval-when-compile
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
277 (require 'reporter))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
278
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
279 (defun c-submit-bug-report ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
280 "Submit via mail a bug report on CC Mode."
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
281 (interactive)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
282 (require 'cc-vars)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
283 ;; load in reporter
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
284 (let ((reporter-prompt-for-summary-p t)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
285 (reporter-dont-compact-list '(c-offsets-alist))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
286 (style c-indentation-style)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
287 (hook c-special-indent-hook)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
288 (c-features c-emacs-features))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
289 (and
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
290 (if (y-or-n-p "Do you want to submit a report on CC Mode? ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
291 t (message "") nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
292 (require 'reporter)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
293 (reporter-submit-bug-report
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
294 c-mode-help-address
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
295 (concat "CC Mode " c-version " ("
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
296 (cond ((eq major-mode 'c++-mode) "C++")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
297 ((eq major-mode 'c-mode) "C")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
298 ((eq major-mode 'objc-mode) "ObjC")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
299 ((eq major-mode 'java-mode) "Java")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
300 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
301 ")")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
302 (let ((vars (list
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
303 ;; report only the vars that affect indentation
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
304 'c-basic-offset
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
305 'c-offsets-alist
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
306 'c-cleanup-list
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
307 'c-comment-only-line-offset
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
308 'c-backslash-column
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
309 'c-delete-function
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
310 'c-electric-pound-behavior
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
311 'c-hanging-braces-alist
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
312 'c-hanging-colons-alist
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
313 'c-hanging-comment-starter-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
314 'c-hanging-comment-ender-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
315 'c-indent-comments-syntactically-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
316 'c-tab-always-indent
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
317 'c-recognize-knr-p
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
318 'c-label-minimum-indentation
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
319 'defun-prompt-regexp
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
320 'tab-width
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
321 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
322 (if (not (boundp 'defun-prompt-regexp))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
323 (delq 'defun-prompt-regexp vars)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
324 vars))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
325 (function
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
326 (lambda ()
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
327 (insert
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
328 "Buffer Style: " style "\n\n"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
329 (if hook
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
330 (concat "\n@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
331 "c-special-indent-hook is set to '"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
332 (format "%s" hook)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
333 ".\nPerhaps this is your problem?\n"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
334 "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n\n")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
335 "\n")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
336 (format "c-emacs-features: %s\n" c-features)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
337 )))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
338 nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
339 "Dear Barry,"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
340 ))))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
341
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
342
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
343 (provide 'cc-mode)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
344 ;;; cc-mode.el ends here