]> git.eshelyaron.com Git - emacs.git/commitdiff
* cedet/ede/source.el (ede-want-any-source-files-p)
authorChong Yidong <cyd@stupidchicken.com>
Thu, 8 Oct 2009 01:49:05 +0000 (01:49 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 8 Oct 2009 01:49:05 +0000 (01:49 +0000)
(ede-want-any-auxiliary-files-p, ede-want-any-files-p): Return
search result.  This error was introduced while merging.

lisp/ChangeLog
lisp/cedet/ede/source.el

index d6e61b3c95ddf9a23483d90fec3c3950dda7ca25..d5dbdaf890dd909e9eca45ef4cf8a55744273a21 100644 (file)
@@ -1,3 +1,9 @@
+2009-10-08  Chong Yidong  <cyd@stupidchicken.com>
+
+       * cedet/ede/source.el (ede-want-any-source-files-p)
+       (ede-want-any-auxiliary-files-p, ede-want-any-files-p): Return
+       search result.  This error was introduced while merging.
+
 2009-10-07  Juanma Barranquero  <lekktu@gmail.com>
 
        * makefile.w32-in (WINS_UPDATES): Fix typo in previous change.
index 3864df1e12a63d2d56d3de5cb1e54ebc1db9635e..097fc064b9f216696e37ecae0b42d2a166c9e306 100644 (file)
@@ -106,19 +106,22 @@ that they are willing to use.")
   "Return non-nil if THIS will accept any source files in FILENAMES."
   (let (found)
     (while (and (not found) filenames)
-      (setq found (ede-want-file-source-p this (pop filenames))))))
+      (setq found (ede-want-file-source-p this (pop filenames))))
+    found))
 
 (defmethod ede-want-any-auxiliary-files-p ((this ede-sourcecode) filenames)
   "Return non-nil if THIS will accept any aux files in FILENAMES."
   (let (found)
     (while (and (not found) filenames)
-      (setq found (ede-want-file-auxiliary-p this (pop filenames))))))
+      (setq found (ede-want-file-auxiliary-p this (pop filenames))))
+    found))
 
 (defmethod ede-want-any-files-p ((this ede-sourcecode) filenames)
   "Return non-nil if THIS will accept any files in FILENAMES."
   (let (found)
     (while (and (not found) filenames)
-      (setq found (ede-want-file-p this (pop filenames))))))
+      (setq found (ede-want-file-p this (pop filenames))))
+    found))
 
 (defmethod ede-buffer-header-file ((this ede-sourcecode) filename)
   "Return a list of file names of header files for THIS with FILENAME.