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