branch: master
commit 2d7d17f197d6ef37350fd236bef4c0b57285223f
Author: mas <mas>
Commit: mas <mas>
(mmm-major-mode-preferences): Added check for `jde-mode' for Java code.
---
mmm-vars.el | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/mmm-vars.el b/mmm-vars.el
index 3af1f07..0e387cc 100644
--- a/mmm-vars.el
+++ b/mmm-vars.el
@@ -3,7 +3,7 @@
;; Copyright (C) 2000 by Michael Abraham Shulman
;; Author: Michael Abraham Shulman <[email protected]>
-;; Version: $Id: mmm-vars.el,v 1.35 2001/01/11 01:40:50 mas Exp $
+;; Version: $Id: mmm-vars.el,v 1.36 2001/01/13 02:49:36 mas Exp $
;;{{{ GPL
@@ -286,11 +286,9 @@ unnecessary. It probably won't go away, though."
;;{{{ Preferred Major Modes
(defcustom mmm-major-mode-preferences
- `((perl .
- ,(if (fboundp 'cperl-mode) 'cperl-mode 'perl-mode))
- (javascript .
- ,(if (fboundp 'javascript-mode) 'javascript-mode 'c++-mode))
- (java . java-mode))
+ `((perl . ,(if (fboundp 'cperl-mode) 'cperl-mode 'perl-mode))
+ (javascript . ,(if (fboundp 'javascript-mode) 'javascript-mode 'c++-mode))
+ (java . ,(if (fboundp 'jde-mode) 'jde-mode 'java-mode)))
"User preferences about what major modes to use.
Each element has the form \(LANGUAGE . MODE) where LANGUAGE is the
name of a programming language such as `perl' as a symbol, and MODE is