# HG changeset patch # User Richard M. Stallman # Date 795308646 0 # Node ID 123bb3f2d018ff85bdcc4fcf183e080e97ee6b7f # Parent 21761da820cde664a850c46c9cd5cf7616041803 (c-style-alist): For BSD, set c-continued-brace-offset instead of c-brace-offset. diff -r 21761da820cd -r 123bb3f2d018 lisp/progmodes/c-mode.el --- a/lisp/progmodes/c-mode.el Wed Mar 15 22:51:56 1995 +0000 +++ b/lisp/progmodes/c-mode.el Wed Mar 15 23:04:06 1995 +0000 @@ -119,7 +119,7 @@ "*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 @@ ("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++"