emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp ChangeLog cedet/semantic/tag.el


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp ChangeLog cedet/semantic/tag.el
Date: Sat, 31 Oct 2009 02:05:19 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       09/10/31 02:05:18

Modified files:
        lisp           : ChangeLog 
        lisp/cedet/semantic: tag.el 

Log message:
        (semantic--tag-link-list-to-buffer): Use mapc rather than mapcar
        because the return value is never used.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16526&r2=1.16527
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/cedet/semantic/tag.el?cvsroot=emacs&r1=1.6&r2=1.7

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16526
retrieving revision 1.16527
diff -u -b -r1.16526 -r1.16527
--- ChangeLog   31 Oct 2009 02:03:19 -0000      1.16526
+++ ChangeLog   31 Oct 2009 02:05:15 -0000      1.16527
@@ -1,5 +1,8 @@
 2009-10-31  Glenn Morris  <address@hidden>
 
+       * 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:

Index: cedet/semantic/tag.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/cedet/semantic/tag.el,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- cedet/semantic/tag.el       25 Oct 2009 02:55:28 -0000      1.6
+++ cedet/semantic/tag.el       31 Oct 2009 02:05:18 -0000      1.7
@@ -1135,7 +1135,7 @@
 (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.




reply via email to

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