comparison lisp/cc-mode/cc-defs.el @ 175:2d532a89d707 r20-3b14

Import from CVS: tag r20-3b14
author cvs
date Mon, 13 Aug 2007 09:50:14 +0200
parents 929b76928fce
children 6075d714658b
comparison
equal deleted inserted replaced
174:bb3568571b84 175:2d532a89d707
5 ;; Authors: 1992-1997 Barry A. Warsaw 5 ;; Authors: 1992-1997 Barry A. Warsaw
6 ;; 1987 Dave Detlefs and Stewart Clamen 6 ;; 1987 Dave Detlefs and Stewart Clamen
7 ;; 1985 Richard M. Stallman 7 ;; 1985 Richard M. Stallman
8 ;; Maintainer: cc-mode-help@python.org 8 ;; Maintainer: cc-mode-help@python.org
9 ;; Created: 22-Apr-1997 (split from cc-mode.el) 9 ;; Created: 22-Apr-1997 (split from cc-mode.el)
10 ;; Version: 5.12 10 ;; Version: 5.13
11 ;; Keywords: c languages oop 11 ;; Keywords: c languages oop
12 12
13 ;; This file is part of GNU Emacs. 13 ;; This file is part of GNU Emacs.
14 14
15 ;; GNU Emacs is free software; you can redistribute it and/or modify 15 ;; GNU Emacs is free software; you can redistribute it and/or modify
168 ;; Ignore byte-compiler warnings you might see. This is not needed 168 ;; Ignore byte-compiler warnings you might see. This is not needed
169 ;; for Emacs. 169 ;; for Emacs.
170 (and (boundp 'zmacs-region-stays) 170 (and (boundp 'zmacs-region-stays)
171 (setq zmacs-region-stays t))) 171 (setq zmacs-region-stays t)))
172 172
173 (defsubst c-load-all ()
174 ;; make sure all necessary components of CC Mode are loaded in.
175 (require 'cc-vars)
176 (require 'cc-engine)
177 (require 'cc-langs)
178 (require 'cc-menus)
179 (require 'cc-align)
180 (require 'cc-styles)
181 (require 'cc-cmds))
182
183 173
184 (provide 'cc-defs) 174 (provide 'cc-defs)
185 ;;; cc-defs.el ends here 175 ;;; cc-defs.el ends here