Mercurial > hg > xemacs-beta
comparison lisp/cc-mode/cc-auto.el @ 165:5a88923fcbfe r20-3b9
Import from CVS: tag r20-3b9
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:44:42 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
164:4e0740e5aab2 | 165:5a88923fcbfe |
---|---|
1 ;;; cc-auto.el --- autoloads for CC Mode | |
2 | |
3 ;; Copyright (C) 1985,87,92,93,94,95,96,97 Free Software Foundation, Inc. | |
4 | |
5 ;; Authors: 1992-1997 Barry A. Warsaw | |
6 ;; 1987 Dave Detlefs and Stewart Clamen | |
7 ;; 1985 Richard M. Stallman | |
8 ;; Maintainer: cc-mode-help@python.org | |
9 ;; Created: 22-Apr-1997 (split from cc-mode.el) | |
10 ;; Version: 5.11 | |
11 ;; Keywords: c languages oop | |
12 | |
13 ;; This file is part of GNU Emacs. | |
14 | |
15 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
16 ;; it under the terms of the GNU General Public License as published by | |
17 ;; the Free Software Foundation; either version 2, or (at your option) | |
18 ;; any later version. | |
19 | |
20 ;; GNU Emacs is distributed in the hope that it will be useful, | |
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
23 ;; GNU General Public License for more details. | |
24 | |
25 ;; You should have received a copy of the GNU General Public License | |
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
28 ;; Boston, MA 02111-1307, USA. | |
29 | |
30 (autoload 'c-mode "cc-mode" | |
31 "Major mode for editing K&R and ANSI C code." t) | |
32 | |
33 (autoload 'c++-mode "cc-mode" | |
34 "Major mode for editing C++ code." t) | |
35 | |
36 (autoload 'objc-mode "cc-mode" | |
37 "Major mode for editing Objective C code." t) | |
38 | |
39 (autoload 'java-mode "cc-mode" | |
40 "Major mode for editing Java code." t) | |
41 | |
42 (autoload 'c-add-style "cc-styles" | |
43 "Adds a style to `c-style-alist', or updates an existing one." t) | |
44 | |
45 | |
46 ;; This comment was here before me: | |
47 ;; | |
48 ;; cmacexp is lame because it uses no preprocessor symbols. It | |
49 ;; isn't very extensible either -- hardcodes /lib/cpp. | |
50 ;; | |
51 ;; I add it here only because c-mode had it -- BAW | |
52 ;; | |
53 (autoload 'c-macro-expand "cmacexp" | |
54 "Display the result of expanding all C macros occurring in the region. | |
55 The expansion is entirely correct because it uses the C preprocessor." | |
56 t) | |
57 | |
58 | |
59 (provide 'cc-auto) | |
60 ;;; cc-auto.el ends here |