diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-03-15 23:04:06 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-03-15 23:04:06 +0000 |
commit | 702df49a4a58f9ca48abcc6b3dc46456ae22c217 (patch) | |
tree | 6b35cc3469cea8e89a2f5590216a515ff58efbd3 /lisp/progmodes/c-mode.el | |
parent | 8625596991d7afa953a7dc84ccabb1b20ca875cc (diff) | |
download | emacs-702df49a4a58f9ca48abcc6b3dc46456ae22c217.tar.gz |
(c-style-alist): For BSD, set c-continued-brace-offset
instead of c-brace-offset.
Diffstat (limited to 'lisp/progmodes/c-mode.el')
-rw-r--r-- | lisp/progmodes/c-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/c-mode.el b/lisp/progmodes/c-mode.el index 244f77a9596..b0c962dcae1 100644 --- a/lisp/progmodes/c-mode.el +++ b/lisp/progmodes/c-mode.el @@ -119,7 +119,7 @@ The expansion is entirely correct because it uses the C preprocessor." "*Extra indent for lines not starting new statements.") (defconst c-continued-brace-offset 0 "*Extra indent for substatements that start with open-braces. -This is in addition to c-continued-statement-offset.") +This is in addition to `c-continued-statement-offset'.") (defconst c-style-alist '(("GNU" (c-indent-level . 2) @@ -136,7 +136,7 @@ This is in addition to c-continued-statement-offset.") ("BSD" (c-indent-level . 4) (c-argdecl-indent . 4) - (c-brace-offset . -4) + (c-continued-brace-offset . -4) (c-label-offset . -4) (c-continued-statement-offset . 4)) ("C++" |