mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-03 22:20:52 -08:00
* cedet/semantic/bovine/c.el (semantic-c-describe-environment):
Consistently check ede-object is bound throughout.
This commit is contained in:
parent
f4087766ce
commit
1d94ebb00c
2 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2010-03-24 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* cedet/semantic/bovine/c.el (semantic-c-describe-environment):
|
||||
Consistently check ede-object is bound throughout.
|
||||
|
||||
2010-03-23 Sam Steingold <sds@gnu.org>
|
||||
|
||||
Fix bug#5620: recalculate all markers on compilation buffer
|
||||
|
|
|
|||
|
|
@ -1761,8 +1761,9 @@ DO NOT return the list of tags encompassing point."
|
|||
|
||||
(when (arrayp semantic-lex-spp-project-macro-symbol-obarray)
|
||||
(princ "\n Project symbol map:\n")
|
||||
(princ " Your project symbol map is derived from the EDE object:\n ")
|
||||
(princ (object-print ede-object))
|
||||
(when (and (boundp 'ede-object) ede-object)
|
||||
(princ " Your project symbol map is derived from the EDE object:\n ")
|
||||
(princ (object-print ede-object)))
|
||||
(princ "\n\n")
|
||||
(let ((macros nil))
|
||||
(mapatoms
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue