1
0
mirror of https://github.com/apache/httpd.git synced 2025-04-18 22:24:07 +03:00
apache/emacs-style
Ben Laurie 4be65770b5 Don't use tabs.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102127 13f79535-47bb-0310-9956-ffa450edef68
2003-12-29 12:59:02 +00:00

13 lines
403 B
Plaintext

(add-hook 'c-mode-hook
(function (lambda ()
(c-set-offset 'inclass' ++)
(c-set-offset 'defun-block-intro' ++)
(c-set-offset 'statement-block-intro' ++)
(c-set-offset 'substatement' ++)
(c-set-offset 'brace-list-intro' ++)
(c-set-offset 'statement-case-intro' ++)
(c-set-offset 'inextern-lang' 0)
)))
(setq c++-mode-hook c-mode-hook)
(setq-default indent-tabs-mode nil)