Mercurial > hg > xemacs-beta
comparison lisp/cc-mode/cc-mode.el @ 189:489f57a838ef r20-3b21
Import from CVS: tag r20-3b21
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:57:07 +0200 |
parents | b405438285a2 |
children | 850242ba4a81 |
comparison
equal
deleted
inserted
replaced
188:e29a8e7498d9 | 189:489f57a838ef |
---|---|
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: a long, long, time ago. adapted from the original c-mode.el | 9 ;; Created: a long, long, time ago. adapted from the original c-mode.el |
10 ;; Version: 5.17 | 10 ;; Version: 5.18 |
11 ;; Keywords: c languages oop | 11 ;; Keywords: c languages oop |
12 | 12 |
13 ;; NOTE: Read the commentary below for the right way to submit bug reports! | 13 ;; NOTE: Read the commentary below for the right way to submit bug reports! |
14 ;; NOTE: See the accompanying texinfo manual for details on using this mode! | 14 ;; NOTE: See the accompanying texinfo manual for details on using this mode! |
15 | 15 |
232 c-conditional-key c-C-conditional-key | 232 c-conditional-key c-C-conditional-key |
233 c-comment-start-regexp c-C++-comment-start-regexp | 233 c-comment-start-regexp c-C++-comment-start-regexp |
234 c-class-key c-ObjC-class-key | 234 c-class-key c-ObjC-class-key |
235 c-baseclass-key nil | 235 c-baseclass-key nil |
236 c-access-key c-ObjC-access-key | 236 c-access-key c-ObjC-access-key |
237 c-method-key c-ObjC-method-key) | 237 c-method-key c-ObjC-method-key |
238 imenu-create-index-function 'cc-imenu-objc-function) | |
238 (run-hooks 'c-mode-common-hook) | 239 (run-hooks 'c-mode-common-hook) |
239 (run-hooks 'objc-mode-hook) | 240 (run-hooks 'objc-mode-hook) |
240 (c-update-modeline)) | 241 (c-update-modeline)) |
241 | 242 |
242 | 243 |
287 | 288 |
288 | 289 |
289 ;;;###autoload | 290 ;;;###autoload |
290 (defun idl-mode () | 291 (defun idl-mode () |
291 "Major mode for editing CORBA's IDL code. | 292 "Major mode for editing CORBA's IDL code. |
292 To submit a problem report, enter `\\[c-submit-bug-report]' from an | 293 To submit a problem report, enter `\\[c-submit-bug-report]' from a |
293 idl-mode buffer. This automatically sets up a mail buffer with | 294 idl-mode buffer. This automatically sets up a mail buffer with |
294 version information already added. You just need to add a description | 295 version information already added. You just need to add a description |
295 of the problem, including a reproducible test case, and send the | 296 of the problem, including a reproducible test case, and send the |
296 message. | 297 message. |
297 | 298 |
324 (run-hooks 'idl-mode-hook) | 325 (run-hooks 'idl-mode-hook) |
325 (c-update-modeline)) | 326 (c-update-modeline)) |
326 | 327 |
327 | 328 |
328 ;; defuns for submitting bug reports | 329 ;; defuns for submitting bug reports |
329 (defconst c-version "5.17" | 330 (defconst c-version "5.18" |
330 "CC Mode version number.") | 331 "CC Mode version number.") |
331 | 332 |
332 (defconst c-mode-help-address | 333 (defconst c-mode-help-address |
333 "bug-gnu-emacs@prep.ai.mit.edu, cc-mode-help@python.org" | 334 "bug-gnu-emacs@prep.ai.mit.edu, cc-mode-help@python.org" |
334 "Address for CC Mode bug reports.") | 335 "Address for CC Mode bug reports.") |