]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/cedet/semantic/scope.el (semantic-analyze-show): Fix require.
authorChong Yidong <cyd@stupidchicken.com>
Fri, 11 Sep 2009 01:17:46 +0000 (01:17 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Fri, 11 Sep 2009 01:17:46 +0000 (01:17 +0000)
lisp/cedet/semantic/scope.el

index a8654e90c07c485e70ed2b00fef2e367f3558553..30b394d4a07ba7722b5c160cfab945879af10ca7 100644 (file)
@@ -796,7 +796,7 @@ hits in order, with the first tag being in the closest scope."
 ;;
 (defmethod semantic-analyze-show ((context semantic-scope-cache))
   "Insert CONTEXT into the current buffer in a nice way."
-  (require 'semantic-analyze)
+  (require 'semantic/analyze)
   (semantic-analyze-princ-sequence (oref context scopetypes) "-> ScopeTypes: " )
   (semantic-analyze-princ-sequence (oref context parents) "-> Parents: " )
   (semantic-analyze-princ-sequence (oref context scope) "-> Scope: " )