aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/c-mode.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/lisp/progmodes/c-mode.el b/lisp/progmodes/c-mode.el
index a9267b3b7c9..ef3319c9e00 100644
--- a/lisp/progmodes/c-mode.el
+++ b/lisp/progmodes/c-mode.el
@@ -1,4 +1,4 @@
1 ;; C code editing commands for Emacs 1;; C code editing commands for Emacs
2;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. 2;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
3 3
4;; This file is part of GNU Emacs. 4;; This file is part of GNU Emacs.
@@ -100,6 +100,13 @@ This is in addition to c-continued-statement-offset.")
100 (c-brace-offset . -4) 100 (c-brace-offset . -4)
101 (c-label-offset . -4) 101 (c-label-offset . -4)
102 (c-continued-statement-offset . 4)) 102 (c-continued-statement-offset . 4))
103 (C++
104 (c-indent-level . 4)
105 (c-continued-statement-offset . 4)
106 (c-brace-offset . -4)
107 (c-argdecl-indent . 0)
108 (c-label-offset . -4)
109 (c-auto-newline . t))
103 ("Whitesmith" 110 ("Whitesmith"
104 (c-indent-level . 4) 111 (c-indent-level . 4)
105 (c-argdecl-indent . 4) 112 (c-argdecl-indent . 4)