diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-08-11 22:15:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-08-11 22:15:23 +0000 |
commit | 3900d73b855210e0e5adfbf491002380869eb62e (patch) | |
tree | aa36ea6b698770a4ee627e606f7ed99c0c312de9 /lisp/progmodes/cc-styles.el | |
parent | 0ba15561260262ce70ce587560871b6c9a33c2d5 (diff) | |
download | emacs-3900d73b855210e0e5adfbf491002380869eb62e.tar.gz |
(c-offsets-alist): Added template-args-cont syntactic symbol.
(c-styles-alist): In "java" style, set c-hanging-comment-starter-p to
nil to preserve Javadoc starter lines.
Diffstat (limited to 'lisp/progmodes/cc-styles.el')
-rw-r--r-- | lisp/progmodes/cc-styles.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/cc-styles.el b/lisp/progmodes/cc-styles.el index ebd94d39475..9e37dba4186 100644 --- a/lisp/progmodes/cc-styles.el +++ b/lisp/progmodes/cc-styles.el @@ -7,7 +7,7 @@ ;; 1985 Richard M. Stallman ;; Maintainer: cc-mode-help@python.org ;; Created: 22-Apr-1997 (split from cc-mode.el) -;; Version: 5.14 +;; Version: 5.15 ;; Keywords: c languages oop ;; This file is part of GNU Emacs. @@ -330,6 +330,7 @@ STYLE using `c-set-style' if the optional SET-P flag is non-nil." (extern-lang-open . 0) (extern-lang-close . 0) (inextern-lang . +) + (template-args-cont . +) ) "Association list of syntactic element symbols and indentation offsets. As described below, each cons cell in this list has the form: @@ -428,6 +429,7 @@ Here is the current list of valid syntactic element symbols: extern-lang-open -- brace that opens an external language block extern-lang-close -- brace that closes an external language block inextern-lang -- analogous to `inclass' syntactic symbol + template-args-cont -- C++ template argument list continuations ") (defun c-get-offset (langelem) |