mirror of
https://github.com/apache/httpd.git
synced 2025-04-18 22:24:07 +03:00
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102127 13f79535-47bb-0310-9956-ffa450edef68
13 lines
403 B
Plaintext
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)
|