comparison lisp/cedet/semantic.el @ 104412:05443eb58935

cedet/semantic.el: Change requires to use semantic/FOO format. cedet/semantic/fw.el: New file. cedet/semantic/tag.el: New file.
author Chong Yidong <cyd@stupidchicken.com>
date Fri, 28 Aug 2009 15:01:48 +0000
parents 560b69982442
children da5b2513c225
comparison
equal deleted inserted replaced
104411:11f4ef827ca4 104412:05443eb58935
34 (defvar semantic-version "2.0pre7" 34 (defvar semantic-version "2.0pre7"
35 "Current version of Semantic.")) 35 "Current version of Semantic."))
36 36
37 ;; (require 'working) 37 ;; (require 'working)
38 (require 'assoc) 38 (require 'assoc)
39 (require 'semantic-tag) 39 (require 'semantic/tag)
40 (require 'semantic-lex) 40 (require 'semantic/lex)
41 41
42 (declare-function inversion-test "inversion") 42 (declare-function inversion-test "inversion")
43 43
44 (defun semantic-require-version (major minor &optional beta) 44 (defun semantic-require-version (major minor &optional beta)
45 "Non-nil if this version of semantic does not satisfy a specific version. 45 "Non-nil if this version of semantic does not satisfy a specific version.
64 64
65 (defgroup semantic-faces nil 65 (defgroup semantic-faces nil
66 "Faces used for Semantic enabled tools." 66 "Faces used for Semantic enabled tools."
67 :group 'semantic) 67 :group 'semantic)
68 68
69 (require 'semantic-fw) 69 (require 'semantic/fw)
70 70
71 ;;; Code: 71 ;;; Code:
72 ;; 72 ;;
73 73
74 ;;; Variables and Configuration 74 ;;; Variables and Configuration
840 840
841 ;;; semantic.el ends here 841 ;;; semantic.el ends here
842 842
843 ;; Semantic-util is a part of the semantic API. Include it last 843 ;; Semantic-util is a part of the semantic API. Include it last
844 ;; because it depends on semantic. 844 ;; because it depends on semantic.
845 (require 'semantic-util) 845 (require 'semantic/util)