From: Chong Yidong Date: Fri, 11 Sep 2009 01:17:46 +0000 (+0000) Subject: lisp/cedet/semantic/scope.el (semantic-analyze-show): Fix require. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~844^2~6896^2~34 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0a3b3f9e131bc5f0cf8034326d14d7737a6162b3;p=emacs.git lisp/cedet/semantic/scope.el (semantic-analyze-show): Fix require. --- diff --git a/lisp/cedet/semantic/scope.el b/lisp/cedet/semantic/scope.el index a8654e90c07..30b394d4a07 100644 --- a/lisp/cedet/semantic/scope.el +++ b/lisp/cedet/semantic/scope.el @@ -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: " )