comparison lisp/modes/vrml-mode.el @ 189:489f57a838ef r20-3b21

Import from CVS: tag r20-3b21
author cvs
date Mon, 13 Aug 2007 09:57:07 +0200
parents 28f395d8dc7a
children
comparison
equal deleted inserted replaced
188:e29a8e7498d9 189:489f57a838ef
43 ;; 43 ;;
44 ;; User variables. 44 ;; User variables.
45 ;; 45 ;;
46 46
47 (defgroup vrml nil 47 (defgroup vrml nil
48 "VRML Language." 48 "Major mode for editing VRML (.wrl) files."
49 :group 'languages) 49 :group 'languages)
50 50
51 51
52 (defcustom vrml-indent-level 3 52 (defcustom vrml-indent-level 3
53 "*Indentation of VRML statements with respect to containing block." 53 "*Indentation of VRML statements with respect to containing block."
74 4. Move forward to end of line, indenting if necessary. 74 4. Move forward to end of line, indenting if necessary.
75 5. Create an empty comment. 75 5. Create an empty comment.
76 6. Move backward to start of comment, indenting if necessary." 76 6. Move backward to start of comment, indenting if necessary."
77 :type '(choice (const :tag "on" t) 77 :type '(choice (const :tag "on" t)
78 (const :tag "off" nil) 78 (const :tag "off" nil)
79 (const :tag "The Works" other)) 79 (sexp :format "%t\n" :tag "The Works" other))
80 :group 'vrml) 80 :group 'vrml)
81 81
82 (defcustom vrml-use-hairy-comment-detector t 82 (defcustom vrml-use-hairy-comment-detector t
83 "*If not `nil', then the more complicated, but slower, comment 83 "*If not `nil', then the more complicated, but slower, comment
84 detecting function is used." 84 detecting function is used."