1 ;;;; Emacs Lisp help for writing rockbox code. ;;;;
4 ;;; The rockbox hacker's C conventions.
6 ;;; After loading this file and added the mode-hook you can in C
7 ;;; files, put something like this to use the rockbox style
10 ;; /* -----------------------------------------------------------------
12 ;; * eval: (c-set-style "rockbox")
17 (defconst rockbox-c-style
18 '((c-basic-offset .
4)
19 (c-comment-only-line-offset .
0)
20 (c-hanging-braces-alist .
((substatement-open before after
)))
21 (c-offsets-alist .
((topmost-intro .
0)
22 (topmost-intro-cont .
0)
24 (substatement-open .
0)
25 (statement-case-intro .
+)
26 (statement-case-open .
0)
30 "Rockbox C Programming Style")
32 ;; Customizations for all of c-mode, c++-mode, and objc-mode
33 (defun rockbox-c-mode-common-hook ()
35 ;; add rockbox style and set it for the current buffer
36 (c-add-style "rockbox" rockbox-c-style t
)
38 indent-tabs-mode nil
; Use spaces. Not tabs.
40 c-font-lock-extra-types
(append '("bool"))
42 (define-key c-mode-base-map
"\C-m" 'newline-and-indent
)
43 (define-key c-mode-base-map
"\M-q" 'c-fill-paragraph
)
44 (setq c-recognize-knr-p nil
)
47 ;; Set this is in your .emacs if you want to use the c-mode-hook as
48 ;; defined here right out of the box.
49 ; (add-hook 'c-mode-common-hook 'rockbox-c-mode-common-hook)