summaryrefslogtreecommitdiffstats
path: root/doc/c-indentation.el
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2002-10-17 09:16:02 +0000
committerBodo Möller <bodo@openssl.org>2002-10-17 09:16:02 +0000
commit05dbe6ee1f09e32b201b9f4d9ecf0de8c2d73e62 (patch)
tree57238e49eb8abfebe588250b526e019022b465f0 /doc/c-indentation.el
parent871d0f5126928ea55a4b4b959c641e0ba588df49 (diff)
change Emacs indentation style to make it easier to insert
tabs manually Submitted by: Pierre Bacquet <pbacquet@delta.fr>
Diffstat (limited to 'doc/c-indentation.el')
-rw-r--r--doc/c-indentation.el13
1 files changed, 6 insertions, 7 deletions
diff --git a/doc/c-indentation.el b/doc/c-indentation.el
index 48ca3cf69b..3b468af69b 100644
--- a/doc/c-indentation.el
+++ b/doc/c-indentation.el
@@ -13,15 +13,14 @@
;
; Apparently statement blocks that are not introduced by a statement
; such as "if" and that are not the body of a function cannot
-; be handled too well by CC mode with this indentation style.
-; The style defined below does not indent them at all.
-; To insert tabs manually, prefix them with ^Q (the "quoted-insert"
-; command of Emacs). If you know a solution to this problem
-; or find other problems with this indentation style definition,
-; please send e-mail to bodo@openssl.org.
+; be handled too well by CC mode with this indentation style,
+; so you have to indent them manually.
+'
+; For suggesting improvements, please send e-mail to bodo@openssl.org.
(c-add-style "eay"
- '((c-basic-offset . 8)
+ '((c-tab-always-indent . nil)
+ (c-basic-offset . 8)
(c-comment-only-line-offset . 0)
(c-hanging-braces-alist)
(c-offsets-alist . ((defun-open . +)