2b45e011ca
When the series of commits is complete, things like https://cert.litnet.lt/en/docs/ntp-distributed-reflection-dos-attacks should be fixed. PR: bin/148836 (except that we import a newer version) Asked by: Too many MFC after: 2 weeks
20 lines
521 B
Plaintext
20 lines
521 B
Plaintext
;; This is how Dave Mills likes to see the NTP code formatted.
|
|
|
|
(defconst ntp-c-style
|
|
'((c-basic-offset . 8)
|
|
(fill-column . 72)
|
|
(c-offsets-alist . ((arglist-intro . +)
|
|
(case-label . *)
|
|
(statement-case-intro . *)
|
|
(statement-cont . *)
|
|
(substatement-open . 0))))
|
|
"David L. Mills; NTP code indentation style")
|
|
|
|
(defun ntp-c-mode-common-hook ()
|
|
;; add ntp c style
|
|
(c-add-style "ntp" ntp-c-style nil))
|
|
|
|
(add-hook 'c-mode-common-hook 'ntp-c-mode-common-hook)
|
|
|
|
;; 1997112600
|