From 43982ded3352d283350abaaf2e2b161da9f3158b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20K=C3=BChne?= Date: Sat, 1 Mar 2003 07:45:36 +0000 Subject: [PATCH] make sure that offset settings are correct for users who have changed the defaults in .emacs --- prj.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/prj.el b/prj.el index b0b5cd743..915044c58 100755 --- a/prj.el +++ b/prj.el @@ -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) )