diff lisp/cedet/semantic/ctxt.el @ 105919:32e202ebbfda

* cedet/semantic/ctxt.el (semantic-get-local-variables): Disable the progress reporter entirely.
author Chong Yidong <cyd@stupidchicken.com>
date Sun, 08 Nov 2009 22:53:30 +0000
parents 83dde921cc1b
children 1d1d5d9bd884
line wrap: on
line diff
--- a/lisp/cedet/semantic/ctxt.el	Sun Nov 08 21:49:49 2009 +0000
+++ b/lisp/cedet/semantic/ctxt.el	Sun Nov 08 22:53:30 2009 +0000
@@ -156,15 +156,11 @@
   "Get the local variables based on POINT's context.
 Local variables are returned in Semantic tag format.
 This can be overriden with `get-local-variables'."
-  ;; The working status is to let the parser work properly
-  (let ((semantic--progress-reporter
-	 (make-progress-reporter (semantic-parser-working-message "Local")
-				 0 100)))
+  ;; Disable parsing messages
+  (let ((semantic--progress-reporter nil))
     (save-excursion
       (if point (goto-char point))
-      (let* ((semantic-working-type nil)
-	     ;; Disable parsing messages
-	     (case-fold-search semantic-case-fold))
+      (let* ((case-fold-search semantic-case-fold))
 	(:override-with-args ())))))
 
 (defun semantic-get-local-variables-default ()