summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMats Lidell <matsl@rockbox.org>2003-01-24 11:08:53 +0000
committerMats Lidell <matsl@rockbox.org>2003-01-24 11:08:53 +0000
commit7e610c12a568f1ace6d07c2ef6aceaa73a554b64 (patch)
treef2500cf56c2036dc30faaa1d2a83c87a71f1a709
parentcc46b4a675b929f1d392c1fe6d51a1977d05cf37 (diff)
downloadrockbox-7e610c12a568f1ace6d07c2ef6aceaa73a554b64.tar.gz
rockbox-7e610c12a568f1ace6d07c2ef6aceaa73a554b64.zip
Use of rockbox-mode.el in local variables list removed. Replaced by
rockbox-style.el in tools folder. Use it! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3159 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/rockbox-mode.el24
1 files changed, 0 insertions, 24 deletions
diff --git a/firmware/rockbox-mode.el b/firmware/rockbox-mode.el
deleted file mode 100644
index c056ee136a..0000000000
--- a/firmware/rockbox-mode.el
+++ /dev/null
@@ -1,24 +0,0 @@
1;;;; Emacs Lisp help for writing rockbox code. ;;;;
2;;;; $Id$
3
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;; */
11;;
12;; (note: make sure to get the path right in the argument to load-file).
13
14
15;;; The rockbox hacker's C conventions
16
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)