aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-11-08 22:53:30 +0000
committerChong Yidong2009-11-08 22:53:30 +0000
commit9bf7dc8aba965b831c7356bd4d28c431752c02f6 (patch)
tree86c4aa997d5948f0e0017174dd8221dda83939a5
parent8bf7ed70eb1636cddb448658efcb9df56a4c40b3 (diff)
downloademacs-9bf7dc8aba965b831c7356bd4d28c431752c02f6.tar.gz
emacs-9bf7dc8aba965b831c7356bd4d28c431752c02f6.zip
* cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
the progress reporter entirely.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/cedet/semantic/ctxt.el10
2 files changed, 9 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bb8c9a53259..301bcedc0a1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,12 @@
12009-11-08 Chong Yidong <cyd@stupidchicken.com>
2
3 * cedet/semantic/ctxt.el (semantic-get-local-variables): Disable
4 the progress reporter entirely.
5
12009-11-08 Kevin Ryde <user42@zip.com.au> 62009-11-08 Kevin Ryde <user42@zip.com.au>
2 7
3 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun 8 * emacs-lisp/checkdoc.el (checkdoc-proper-noun-regexp): Match noun
4 at end of sentence (my Bug#4818). 9 at end of sentence (Bug#4818).
5 10
62009-11-08 Jared Finder <jfinder@crypticstudios.com> 112009-11-08 Jared Finder <jfinder@crypticstudios.com>
7 12
diff --git a/lisp/cedet/semantic/ctxt.el b/lisp/cedet/semantic/ctxt.el
index 478796e0025..e74bb8f4dbe 100644
--- a/lisp/cedet/semantic/ctxt.el
+++ b/lisp/cedet/semantic/ctxt.el
@@ -156,15 +156,11 @@ Return non-nil if there is no upper context."
156 "Get the local variables based on POINT's context. 156 "Get the local variables based on POINT's context.
157Local variables are returned in Semantic tag format. 157Local variables are returned in Semantic tag format.
158This can be overriden with `get-local-variables'." 158This can be overriden with `get-local-variables'."
159 ;; The working status is to let the parser work properly 159 ;; Disable parsing messages
160 (let ((semantic--progress-reporter 160 (let ((semantic--progress-reporter nil))
161 (make-progress-reporter (semantic-parser-working-message "Local")
162 0 100)))
163 (save-excursion 161 (save-excursion
164 (if point (goto-char point)) 162 (if point (goto-char point))
165 (let* ((semantic-working-type nil) 163 (let* ((case-fold-search semantic-case-fold))
166 ;; Disable parsing messages
167 (case-fold-search semantic-case-fold))
168 (:override-with-args ()))))) 164 (:override-with-args ())))))
169 165
170(defun semantic-get-local-variables-default () 166(defun semantic-get-local-variables-default ()