Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1d94ebb0
Commit
1d94ebb0
authored
Mar 23, 2010
by
Glenn Morris
Browse files
* cedet/semantic/bovine/c.el (semantic-c-describe-environment):
Consistently check ede-object is bound throughout.
parent
f4087766
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/cedet/semantic/bovine/c.el
lisp/cedet/semantic/bovine/c.el
+3
-2
No files found.
lisp/ChangeLog
View file @
1d94ebb0
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
...
...
lisp/cedet/semantic/bovine/c.el
View file @
1d94ebb0
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment