165
|
1 ;;; DO NOT MODIFY THIS FILE
|
|
2 (if (not (featurep 'cc-mode-autoloads))
|
|
3 (progn
|
|
4
|
167
|
5 ;;;### (autoloads nil "cc-langs" "cc-mode/cc-langs.el")
|
|
6
|
|
7 (defvar c-mode-syntax-table nil "\
|
|
8 Syntax table used in c-mode buffers.")
|
|
9
|
|
10 ;;;***
|
|
11
|
177
|
12 ;;;### (autoloads (idl-mode java-mode objc-mode c++-mode c-mode c-initialize-cc-mode) "cc-mode" "cc-mode/cc-mode.el")
|
|
13
|
|
14 (autoload 'c-initialize-cc-mode "cc-mode" nil nil nil)
|
165
|
15
|
|
16 (autoload 'c-mode "cc-mode" "\
|
|
17 Major mode for editing K&R and ANSI C code.
|
|
18 To submit a problem report, enter `\\[c-submit-bug-report]' from a
|
|
19 c-mode buffer. This automatically sets up a mail buffer with version
|
|
20 information already added. You just need to add a description of the
|
|
21 problem, including a reproducible test case and send the message.
|
|
22
|
|
23 To see what version of CC Mode you are running, enter `\\[c-version]'.
|
|
24
|
|
25 The hook variable `c-mode-hook' is run with no args, if that value is
|
|
26 bound and has a non-nil value. Also the hook `c-mode-common-hook' is
|
|
27 run first.
|
|
28
|
|
29 Key bindings:
|
|
30 \\{c-mode-map}" t nil)
|
|
31
|
|
32 (autoload 'c++-mode "cc-mode" "\
|
|
33 Major mode for editing C++ code.
|
|
34 To submit a problem report, enter `\\[c-submit-bug-report]' from a
|
|
35 c++-mode buffer. This automatically sets up a mail buffer with
|
|
36 version information already added. You just need to add a description
|
|
37 of the problem, including a reproducible test case, and send the
|
|
38 message.
|
|
39
|
|
40 To see what version of CC Mode you are running, enter `\\[c-version]'.
|
|
41
|
|
42 The hook variable `c++-mode-hook' is run with no args, if that
|
|
43 variable is bound and has a non-nil value. Also the hook
|
|
44 `c-mode-common-hook' is run first.
|
|
45
|
|
46 Key bindings:
|
|
47 \\{c++-mode-map}" t nil)
|
|
48
|
|
49 (autoload 'objc-mode "cc-mode" "\
|
|
50 Major mode for editing Objective C code.
|
|
51 To submit a problem report, enter `\\[c-submit-bug-report]' from an
|
|
52 objc-mode buffer. This automatically sets up a mail buffer with
|
|
53 version information already added. You just need to add a description
|
|
54 of the problem, including a reproducible test case, and send the
|
|
55 message.
|
|
56
|
|
57 To see what version of CC Mode you are running, enter `\\[c-version]'.
|
|
58
|
|
59 The hook variable `objc-mode-hook' is run with no args, if that value
|
|
60 is bound and has a non-nil value. Also the hook `c-mode-common-hook'
|
|
61 is run first.
|
|
62
|
|
63 Key bindings:
|
|
64 \\{objc-mode-map}" t nil)
|
|
65
|
|
66 (autoload 'java-mode "cc-mode" "\
|
|
67 Major mode for editing Java code.
|
|
68 To submit a problem report, enter `\\[c-submit-bug-report]' from an
|
|
69 java-mode buffer. This automatically sets up a mail buffer with
|
|
70 version information already added. You just need to add a description
|
|
71 of the problem, including a reproducible test case and send the
|
|
72 message.
|
|
73
|
|
74 To see what version of CC Mode you are running, enter `\\[c-version]'.
|
|
75
|
|
76 The hook variable `java-mode-hook' is run with no args, if that value
|
|
77 is bound and has a non-nil value. Also the common hook
|
|
78 `c-mode-common-hook' is run first. Note that this mode automatically
|
|
79 sets the \"java\" style before calling any hooks so be careful if you
|
|
80 set styles in `c-mode-common-hook'.
|
|
81
|
|
82 Key bindings:
|
|
83 \\{java-mode-map}" t nil)
|
|
84
|
177
|
85 (autoload 'idl-mode "cc-mode" "\
|
|
86 Major mode for editing CORBA's IDL code.
|
|
87 To submit a problem report, enter `\\[c-submit-bug-report]' from an
|
|
88 idl-mode buffer. This automatically sets up a mail buffer with
|
|
89 version information already added. You just need to add a description
|
|
90 of the problem, including a reproducible test case, and send the
|
|
91 message.
|
|
92
|
|
93 To see what version of CC Mode you are running, enter `\\[c-version]'.
|
|
94
|
|
95 The hook variable `idl-mode-hook' is run with no args, if that
|
|
96 variable is bound and has a non-nil value. Also the hook
|
|
97 `c-mode-common-hook' is run first.
|
|
98
|
|
99 Key bindings:
|
|
100 \\{idl-mode-map}" t nil)
|
|
101
|
165
|
102 ;;;***
|
|
103
|
|
104 ;;;### (autoloads (c-add-style c-set-style) "cc-styles" "cc-mode/cc-styles.el")
|
|
105
|
|
106 (autoload 'c-set-style "cc-styles" "\
|
|
107 Set CC Mode variables to use one of several different indentation styles.
|
|
108 STYLENAME is a string representing the desired style from the list of
|
|
109 styles described in the variable `c-style-alist'. See that variable
|
|
110 for details of setting up styles.
|
|
111
|
|
112 The variable `c-indentation-style' always contains the buffer's current
|
|
113 style name." t nil)
|
|
114
|
|
115 (autoload 'c-add-style "cc-styles" "\
|
|
116 Adds a style to `c-style-alist', or updates an existing one.
|
|
117 STYLE is a string identifying the style to add or update. DESCRIP is
|
|
118 an association list describing the style and must be of the form:
|
|
119
|
|
120 ([BASESTYLE] (VARIABLE . VALUE) [(VARIABLE . VALUE) ...])
|
|
121
|
|
122 See the variable `c-style-alist' for the semantics of BASESTYLE,
|
|
123 VARIABLE and VALUE. This function also sets the current style to
|
|
124 STYLE using `c-set-style' if the optional SET-P flag is non-nil." t nil)
|
|
125
|
|
126 ;;;***
|
|
127
|
|
128 (provide 'cc-mode-autoloads)
|
|
129 ))
|