+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.
"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.