comparison lisp/cedet/semantic/scope.el @ 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 6ccad1511df1
children 118ad0cdd9a8
comparison
equal deleted inserted replaced
104487:5fabb7947fa5 104488:7042156f9f43
794 794
795 ;;; DUMP 795 ;;; DUMP
796 ;; 796 ;;
797 (defmethod semantic-analyze-show ((context semantic-scope-cache)) 797 (defmethod semantic-analyze-show ((context semantic-scope-cache))
798 "Insert CONTEXT into the current buffer in a nice way." 798 "Insert CONTEXT into the current buffer in a nice way."
799 (require 'semantic-analyze) 799 (require 'semantic/analyze)
800 (semantic-analyze-princ-sequence (oref context scopetypes) "-> ScopeTypes: " ) 800 (semantic-analyze-princ-sequence (oref context scopetypes) "-> ScopeTypes: " )
801 (semantic-analyze-princ-sequence (oref context parents) "-> Parents: " ) 801 (semantic-analyze-princ-sequence (oref context parents) "-> Parents: " )
802 (semantic-analyze-princ-sequence (oref context scope) "-> Scope: " ) 802 (semantic-analyze-princ-sequence (oref context scope) "-> Scope: " )
803 ;;(semantic-analyze-princ-sequence (oref context fullscope) "Fullscope: " ) 803 ;;(semantic-analyze-princ-sequence (oref context fullscope) "Fullscope: " )
804 (semantic-analyze-princ-sequence (oref context localargs) "-> Local Args: " ) 804 (semantic-analyze-princ-sequence (oref context localargs) "-> Local Args: " )