mirror of
https://github.com/apache/httpd.git
synced 2025-05-19 02:21:09 +03:00
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83690 13f79535-47bb-0310-9956-ffa450edef68
11 lines
331 B
Plaintext
11 lines
331 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' ++)
|
|
)))
|
|
(setq c++-mode-hook c-mode-hook)
|