# HG changeset patch # User Chong Yidong # Date 1252631866 0 # Node ID 7042156f9f43cb13fc31e9416a01621fe78b209b # Parent 5fabb7947fa53ce78a4ce773918ec02ffd388e12 lisp/cedet/semantic/scope.el (semantic-analyze-show): Fix require. diff -r 5fabb7947fa5 -r 7042156f9f43 lisp/cedet/semantic/scope.el --- a/lisp/cedet/semantic/scope.el Mon Sep 07 18:01:27 2009 +0000 +++ b/lisp/cedet/semantic/scope.el Fri Sep 11 01:17:46 2009 +0000 @@ -796,7 +796,7 @@ ;; (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: " )