mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-28 07:45:00 +00:00
(semantic--tag-link-list-to-buffer): Use mapc rather than mapcar
because the return value is never used.
This commit is contained in:
parent
f3628edde6
commit
8aedfd3b5d
@ -1,5 +1,8 @@
|
||||
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:
|
||||
|
@ -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."
|
||||
(mapcar '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.
|
||||
|
Loading…
Reference in New Issue
Block a user