aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2002-10-17 09:15:46 +0000
committerBodo Möller <bodo@openssl.org>2002-10-17 09:15:46 +0000
commite76dd4cba8103c6117a68fb1cc360ad83fa989ac (patch)
treea896dff1fce3fed45eb3ed0fb97cf6a0dd0cfb8e
parent495ac8e429efc0a9aa919dc857d34f87d3cb8a37 (diff)
downloadopenssl-e76dd4cba8103c6117a68fb1cc360ad83fa989ac.tar.gz
change Emacs indentation style to make it easier to insert
tabs manually Submitted by: Pierre Bacquet <pbacquet@delta.fr>
-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 . +)