Skip to content

Commit

Permalink
Update to use built in semantic
Browse files Browse the repository at this point in the history
  • Loading branch information
lstoll committed May 6, 2010
1 parent 9de6870 commit fc71ef4
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion lisp/jde-complete.el
Expand Up @@ -56,7 +56,7 @@
;;jde-eldoc for completion signatures

(require 'eldoc)
(require 'semantic-idle)
(require 'semantic/idle)

(defgroup jde-complete nil
"JDE Completion"
Expand Down
4 changes: 2 additions & 2 deletions lisp/jde-imenu.el
Expand Up @@ -28,8 +28,8 @@

;;; Code:

(require 'semantic-java)
(require 'semantic-imenu)
(require 'semantic/java)
(require 'semantic/imenu)
(require 'regexp-opt)

;;; Compatibility
Expand Down
6 changes: 3 additions & 3 deletions lisp/jde-import.el
Expand Up @@ -38,9 +38,9 @@
;;; Code:

(require 'efc)
(require 'semantic-fw)
(require 'semantic-find)
(require 'semantic-util)
(require 'semantic/fw)
(require 'semantic/find)
(require 'semantic/util)
(jde-require 'sregex)

;;;;
Expand Down
4 changes: 2 additions & 2 deletions lisp/jde-java-grammar.el
Expand Up @@ -23,10 +23,10 @@
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.

(require 'semantic-java)
(require 'semantic/java)
(require 'jde-parse)
(eval-when-compile
(require 'senator)
(require 'semantic/senator)
(require 'jde-which-method))


Expand Down
2 changes: 1 addition & 1 deletion lisp/jde-javadoc.el
Expand Up @@ -35,7 +35,7 @@
;;; Code:

(require 'tempo)
(require 'semantic-java)
(require 'semantic/java)
(require 'regexp-opt)

(eval-when-compile
Expand Down
2 changes: 1 addition & 1 deletion lisp/jde-open-source.el
Expand Up @@ -25,7 +25,7 @@
(require 'jde-parse)
(require 'jde-util)
(require 'jde-bsh)
(require 'senator)
(require 'semantic/senator)

(defcustom jde-open-class-at-point-find-file-function 'find-file-other-window
"Define the function for opening the class at point. See
Expand Down
4 changes: 2 additions & 2 deletions lisp/jde-parse.el
Expand Up @@ -23,8 +23,8 @@
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.

(require 'semantic-sb)
(require 'semantic-ctxt)
(require 'semantic/sb)
(require 'semantic/ctxt)
(if (< emacs-major-version 23)
(progn
(require 'avltree) ;; use elib's avltree with local compatibility kludges
Expand Down
2 changes: 1 addition & 1 deletion lisp/jde-wiz.el
Expand Up @@ -23,7 +23,7 @@
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.

(require 'semantic-util)
(require 'semantic/util)
(require 'beanshell)
(require 'jde-complete)
(require 'efc)
Expand Down
4 changes: 2 additions & 2 deletions lisp/jde.el
Expand Up @@ -32,7 +32,7 @@
(defvar browse-url-new-window-p)

;;;###autoload
(defconst jde-version "@@{project.version}@@"
(defconst jde-version "2.4.1"
"JDE version number.")

(defconst jde-revision "$Revision$"
Expand Down Expand Up @@ -69,7 +69,7 @@
(require 'jde-util)
(require 'jde-custom)
(require 'jde-help)
(require 'semantic-load)
;;(require 'semantic-load)
(require 'easymenu)
(require 'cl)
(require 'font-lock)
Expand Down

0 comments on commit fc71ef4

Please sign in to comment.