Battery blinks if >BATTERY_LEVEL_DANGEROUS
[kugel-rb.git] / firmware / rockbox-mode.el
blobc056ee136ada18e7c5f9168f2bffd0aebf173dc7
1 ;;;; Emacs Lisp help for writing rockbox code. ;;;;
2 ;;;; $Id$
4 ;;; In C files, put something like this to load this file automatically:
5 ;;
6 ;; /* -----------------------------------------------------------------
7 ;; * local variables:
8 ;; * eval: (load-file "rockbox-mode.el")
9 ;; * end:
10 ;; */
12 ;; (note: make sure to get the path right in the argument to load-file).
15 ;;; The rockbox hacker's C conventions
17 ;;; we use intent-level 4
18 (setq c-basic-offset 4)
19 ;;; never ever use tabs to indent!
20 (setq indent-tabs-mode nil)
21 ;;; enable font coloring of type 'bool'
22 (setq c-font-lock-extra-types (append '("bool") ))
23 ;;; I like this, stolen from Subversion! ;-)
24 (setq angry-mob-with-torches-and-pitchforks t)