[Nice-commit] Nice prj.el,1.1,1.2
Brought to you by:
bonniot
|
From: <xo...@us...> - 2003-04-29 00:18:01
|
Update of /cvsroot/nice/Nice
In directory sc8-pr-cvs1:/tmp/cvs-serv32479
Modified Files:
prj.el
Log Message:
Changed JDE project file to maintain indenting conventions (8 space tabs, 2 space basic indents)
Index: prj.el
===================================================================
RCS file: /cvsroot/nice/Nice/prj.el,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** prj.el 2 Apr 2003 22:25:25 -0000 1.1
--- prj.el 29 Apr 2003 00:17:58 -0000 1.2
***************
*** 4,5 ****
--- 4,11 ----
'(jde-compile-option-directory "./classes")
'(jde-compile-option-sourcepath (quote ("./src" "./stdlib"))))
+
+ ;; Standard indentation settings for Java files in Nicec.
+ (setq indent-tabs-mode nil)
+ (setq tab-width 8)
+ (setq c-basic-offset 2)
+ (c-set-offset 'substatement-open 0)
|