make sure that offset settings are correct for users who have changed the defaults in .emacs

This commit is contained in:
Lars Kühne 2003-03-01 07:45:36 +00:00
parent 3f4fdc2743
commit 43982ded33
1 changed files with 4 additions and 0 deletions

4
prj.el
View File

@ -1,7 +1,11 @@
;; Configuration for JDEE (Java Development Environment for Emacs)
(jde-set-project-name "checkstyle")
(jde-set-variables
'(jde-db-source-directories (quote ("./src/checkstyle/")))
'(jde-global-classpath (quote ("./classes/checkstyle" "./classes/tests" "./dist/checkstyle-1.4/jakarta-regexp-1.2.jar")))
'(jde-run-application-class "com.puppycrawl.tools.checkstyle.Main")
'(jde-run-option-application-args (quote ("VerifierImpl.java")))
;; indent each level of indentation by 4 spaces
'(c-basic-offset 4)
)