annotate lisp/cc-mode/auto-autoloads.el @ 186:24ac94803b48

Added tag r20-3b19 for changeset 3d6bfa290dbd
author cvs
date Mon, 13 Aug 2007 09:55:30 +0200
parents e121b013d1f0
children 489f57a838ef
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 ;;; DO NOT MODIFY THIS FILE
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
2 (if (featurep 'cc-mode-autoloads) (error "Already loaded"))
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
3
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4 ;;;### (autoloads nil "cc-langs" "cc-mode/cc-langs.el")
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
5
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
6 (defvar c-mode-syntax-table nil "\
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
7 Syntax table used in c-mode buffers.")
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
8
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
9 (defvar c++-mode-syntax-table nil "\
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
10 Syntax table used in c++-mode buffers.")
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
11
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
12 (defvar objc-mode-syntax-table nil "\
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
13 Syntax table used in objc-mode buffers.")
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
14
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
15 (defvar java-mode-syntax-table nil "\
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
16 Syntax table used in java-mode buffers.")
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
17
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
18 (defvar idl-mode-syntax-table nil "\
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
19 Syntax table used in idl-mode buffers.")
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
20
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
21 ;;;***
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
22
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
23 ;;;### (autoloads (idl-mode java-mode objc-mode c++-mode c-mode c-initialize-cc-mode) "cc-mode" "cc-mode/cc-mode.el")
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
24
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
25 (autoload 'c-initialize-cc-mode "cc-mode" nil nil nil)
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
26
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
27 (autoload 'c-mode "cc-mode" "\
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
28 Major mode for editing K&R and ANSI C code.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
29 To submit a problem report, enter `\\[c-submit-bug-report]' from a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
30 c-mode buffer. This automatically sets up a mail buffer with version
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
31 information already added. You just need to add a description of the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
32 problem, including a reproducible test case and send the message.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
33
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
34 To see what version of CC Mode you are running, enter `\\[c-version]'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
35
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
36 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
37 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
38 run first.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
39
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
40 Key bindings:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
41 \\{c-mode-map}" t nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
42
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
43 (autoload 'c++-mode "cc-mode" "\
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
44 Major mode for editing C++ code.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
45 To submit a problem report, enter `\\[c-submit-bug-report]' from a
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
46 c++-mode buffer. This automatically sets up a mail buffer with
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
47 version information already added. You just need to add a description
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
48 of the problem, including a reproducible test case, and send the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
49 message.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
50
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
51 To see what version of CC Mode you are running, enter `\\[c-version]'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
52
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
53 The hook variable `c++-mode-hook' is run with no args, if that
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
54 variable is bound and has a non-nil value. Also the hook
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
55 `c-mode-common-hook' is run first.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
56
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
57 Key bindings:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
58 \\{c++-mode-map}" t nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
59
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
60 (autoload 'objc-mode "cc-mode" "\
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
61 Major mode for editing Objective C code.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
62 To submit a problem report, enter `\\[c-submit-bug-report]' from an
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
63 objc-mode buffer. This automatically sets up a mail buffer with
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
64 version information already added. You just need to add a description
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
65 of the problem, including a reproducible test case, and send the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
66 message.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
67
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
68 To see what version of CC Mode you are running, enter `\\[c-version]'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
69
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
70 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
71 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
72 is run first.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
73
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
74 Key bindings:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
75 \\{objc-mode-map}" t nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
76
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
77 (autoload 'java-mode "cc-mode" "\
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
78 Major mode for editing Java code.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
79 To submit a problem report, enter `\\[c-submit-bug-report]' from an
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
80 java-mode buffer. This automatically sets up a mail buffer with
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
81 version information already added. You just need to add a description
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
82 of the problem, including a reproducible test case and send the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
83 message.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
84
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
85 To see what version of CC Mode you are running, enter `\\[c-version]'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
86
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
87 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
88 is bound and has a non-nil value. Also the common hook
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
89 `c-mode-common-hook' is run first. Note that this mode automatically
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
90 sets the \"java\" style before calling any hooks so be careful if you
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
91 set styles in `c-mode-common-hook'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
92
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
93 Key bindings:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
94 \\{java-mode-map}" t nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
95
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
96 (autoload 'idl-mode "cc-mode" "\
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
97 Major mode for editing CORBA's IDL code.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
98 To submit a problem report, enter `\\[c-submit-bug-report]' from an
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
99 idl-mode buffer. This automatically sets up a mail buffer with
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
100 version information already added. You just need to add a description
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
101 of the problem, including a reproducible test case, and send the
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
102 message.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
103
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
104 To see what version of CC Mode you are running, enter `\\[c-version]'.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
105
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
106 The hook variable `idl-mode-hook' is run with no args, if that
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
107 variable is bound and has a non-nil value. Also the hook
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
108 `c-mode-common-hook' is run first.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
109
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
110 Key bindings:
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
111 \\{idl-mode-map}" t nil)
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 167
diff changeset
112
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
113 ;;;***
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
114
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
115 ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" "cc-mode/cc-styles.el")
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
116
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
117 (autoload 'c-set-style "cc-styles" "\
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
118 Set CC Mode variables to use one of several different indentation styles.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
119 STYLENAME is a string representing the desired style from the list of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
120 styles described in the variable `c-style-alist'. See that variable
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
121 for details of setting up styles.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
122
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
123 The variable `c-indentation-style' always contains the buffer's current
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
124 style name." t nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
125
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
126 (autoload 'c-add-style "cc-styles" "\
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
127 Adds a style to `c-style-alist', or updates an existing one.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
128 STYLE is a string identifying the style to add or update. DESCRIP is
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
129 an association list describing the style and must be of the form:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
130
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
131 ([BASESTYLE] (VARIABLE . VALUE) [(VARIABLE . VALUE) ...])
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
132
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
133 See the variable `c-style-alist' for the semantics of BASESTYLE,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
134 VARIABLE and VALUE. This function also sets the current style to
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
135 STYLE using `c-set-style' if the optional SET-P flag is non-nil." t nil)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
136
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
137 (autoload 'c-set-offset "cc-styles" "\
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
138 Change the value of a syntactic element symbol in `c-offsets-alist'.
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
139 SYMBOL is the syntactic element symbol to change and OFFSET is the new
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
140 offset for that syntactic element. Optional ADD says to add SYMBOL to
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
141 `c-offsets-alist' if it doesn't already appear there." t nil)
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 177
diff changeset
142
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
143 ;;;***
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
144
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
145 (provide 'cc-mode-autoloads)