rockbox/firmware/rockbox-mode.el
Björn Stenberg 8554604298 Added bool font coloring
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@565 a1c6a512-1295-4272-9138-f99709370657
2002-05-13 13:15:38 +00:00

24 lines
719 B
EmacsLisp
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;;; Emacs Lisp help for writing rockbox code. ;;;;
;;;; $Id$
;;; In C files, put something like this to load this file automatically:
;;
;; /* -----------------------------------------------------------------
;; * local variables:
;; * eval: (load-file "rockbox-mode.el")
;; * end:
;; */
;;
;; (note: make sure to get the path right in the argument to load-file).
;;; The rockbox hacker's C conventions
;;; we use intent-level 4
(setq c-basic-offset 4)
;;; never ever use tabs to indent!
(setq indent-tabs-mode nil)
;;; enable font coloring of type 'bool'
(setq c-font-lock-extra-types (append '("bool") ))
;;; I like this, stolen from Subversion! ;-)
(setq angry-mob-with-torches-and-pitchforks t)