Home | History | Annotate | Download | only in misc

Lines Matching defs:netbsd

1 ;; $NetBSD: NetBSD.el,v 1.6 2009/02/16 21:37:12 uwe Exp $
3 (defconst netbsd-knf-style
60 "NetBSD KNF Style")
64 (defcustom netbsd-knf-whitespace-check nil
65 "Enable NetBSD KNF whitespace cleanup when saving the buffer.
80 :group 'netbsd-knf)
82 (defun netbsd-knf-whitespace-cleanup ()
95 (defun netbsd-knf-write-contents-hook ()
96 (if (and (string-equal c-indentation-style "netbsd knf")
98 (if netbsd-knf-whitespace-check
100 (netbsd-knf-whitespace-cleanup)
104 (remove-hook 'write-contents-hook 'netbsd-knf-write-contents-hook))
107 (defun netbsd-knf-c-mode-hook ()
109 (c-add-style "NetBSD KNF" netbsd-knf-style t)
120 (add-hook 'write-contents-hooks 'netbsd-knf-write-contents-hook))
122 (add-hook 'c-mode-hook 'netbsd-knf-c-mode-hook)