diff options
| author | Luke Hoersten <[email protected]> | 2009-03-16 16:10:37 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2009-03-16 16:10:37 -0500 |
| commit | e6d989fb8c4926ff12564c5e7565601c293320d4 (patch) | |
| tree | 24406ec8581f9a9e384c54067f7aa426843dc732 | |
| parent | ec6f6eec61b667ac3541eb6026df6fdf5156c41c (diff) | |
Added fix for multiline function signature indentation.
| -rw-r--r-- | hoersten-c-style.el | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/hoersten-c-style.el b/hoersten-c-style.el index cddb2a1..bfa9b02 100644 --- a/hoersten-c-style.el +++ b/hoersten-c-style.el @@ -4,9 +4,9 @@ ;; hoersten c++-style (c-add-style "hoersten" '(;; indentation - (indent-tabs-mode . t) - (tab-width . 3) - (c-basic-offset . 3) + (indent-tabs-mode . t) + (tab-width . 3) + (c-basic-offset . 3) ;; brace cleanups (c-cleanup-list @@ -20,11 +20,12 @@ ;; syntactic symbols (c-offsets-alist - (substatement-open . 0) - (inline-open . 0) - (case-label . +) - (innamespace . 0) - (cpp-macro . -)))) + (substatement-open . 0) + (inline-open . 0) + (case-label . +) + (innamespace . 0) + (arglist-cont-nonempty . +) + (cpp-macro . -)))) ;; c-like language settings (c, c++, java, etc.) ;;(require 'doxymacs) |
