emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r99733: * cedet/semantic/bovine/c.el


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99733: * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
Date: Tue, 23 Mar 2010 20:19:15 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99733
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2010-03-23 20:19:15 -0700
message:
  * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
  Consistently check ede-object is bound throughout.
modified:
  lisp/ChangeLog
  lisp/cedet/semantic/bovine/c.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-03-23 18:22:46 +0000
+++ b/lisp/ChangeLog    2010-03-24 03:19:15 +0000
@@ -1,3 +1,8 @@
+2010-03-24  Glenn Morris  <address@hidden>
+
+       * cedet/semantic/bovine/c.el (semantic-c-describe-environment):
+       Consistently check ede-object is bound throughout.
+
 2010-03-23  Sam Steingold  <address@hidden>
 
        Fix bug#5620: recalculate all markers on compilation buffer

=== modified file 'lisp/cedet/semantic/bovine/c.el'
--- a/lisp/cedet/semantic/bovine/c.el   2010-01-13 08:35:10 +0000
+++ b/lisp/cedet/semantic/bovine/c.el   2010-03-24 03:19:15 +0000
@@ -1761,8 +1761,9 @@
 
       (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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]