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
8aedfd3b
Commit
8aedfd3b
authored
Oct 31, 2009
by
Glenn Morris
Browse files
(semantic--tag-link-list-to-buffer): Use mapc rather than mapcar
because the return value is never used.
parent
f3628edd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/cedet/semantic/tag.el
lisp/cedet/semantic/tag.el
+1
-1
No files found.
lisp/ChangeLog
View file @
8aedfd3b
2009-10-31 Glenn Morris <rgm@gnu.org>
* cedet/semantic/tag.el (semantic--tag-link-list-to-buffer):
Use mapc rather than mapcar because the return value is never used.
* cedet/srecode/template.el, cedet/semantic/wisent/javascript.el:
* cedet/semantic/wisent/java-tags.el, cedet/semantic/texi.el:
* cedet/semantic/html.el:
...
...
lisp/cedet/semantic/tag.el
View file @
8aedfd3b
...
...
@@ -1135,7 +1135,7 @@ This function is for internal use only."
(
defsubst
semantic--tag-link-list-to-buffer
(
tags
)
"Convert TAGS from using an overlay proxy to using an overlay.
This function is for internal use only."
(
mapc
ar
'semantic--tag-link-to-buffer
tags
))
(
mapc
'semantic--tag-link-to-buffer
tags
))
(
defun
semantic--tag-link-to-buffer
(
tag
)
"Convert TAG from using an overlay proxy to using an overlay.
...
...
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