Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / ntp / dist / dot.emacs
blob941ecbe8820ffd587cfc5bb0bfcae0a2f2e9baf0
1 ;; This is how Dave Mills likes to see the NTP code formatted.
3 (defconst ntp-c-style
4   '((c-basic-offset  . 8)
5     (fill-column     . 72)
6     (c-offsets-alist . ((arglist-intro        . +)
7                         (case-label           . *)
8                         (statement-case-intro . *)
9                         (statement-cont       . *)
10                         (substatement-open    . 0))))
11   "David L. Mills; NTP code indentation style")
13 (defun ntp-c-mode-common-hook ()
14   ;; add ntp c style
15   (c-add-style "ntp" ntp-c-style nil))
17 (add-hook 'c-mode-common-hook 'ntp-c-mode-common-hook)
19 ;; 1997112600