1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-26 19:01:35 +03:00
Files
apache/emacs-style
2001-03-11 20:49:37 +00:00

12 lines
367 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)