lisp/cedet/semantic.el (semantic-fetch-tags): Check if progress
reporter is in use before calling it.
This commit is contained in:
parent
a60f2e7b9c
commit
59aec83e8f
1 changed files with 2 additions and 1 deletions
|
@ -594,7 +594,8 @@ was marked unparseable, then do nothing, and return the cache."
|
|||
(semantic-parser-working-message (buffer-name))
|
||||
0 100))))
|
||||
(setq res (semantic-parse-region (point-min) (point-max)))
|
||||
(progress-reporter-done semantic--progress-reporter))
|
||||
(if semantic--progress-reporter
|
||||
(progress-reporter-done semantic--progress-reporter)))
|
||||
|
||||
;; Clear the caches when we see there were no errors.
|
||||
;; But preserve the unmatched syntax cache and warnings!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue