Mercurial > emacs
changeset 104488:7042156f9f43
lisp/cedet/semantic/scope.el (semantic-analyze-show): Fix require.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Fri, 11 Sep 2009 01:17:46 +0000 |
parents | 5fabb7947fa5 |
children | 25e047f7f6a2 |
files | lisp/cedet/semantic/scope.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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: " )