]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix arity error when trying to add a file to an automake project
authorPo Lu <luangruo@yahoo.com>
Wed, 12 Jan 2022 03:25:15 +0000 (11:25 +0800)
committerPo Lu <luangruo@yahoo.com>
Wed, 12 Jan 2022 03:25:15 +0000 (11:25 +0800)
* lisp/cedet/ede/project-am.el (project-add-file): Add ignored
_FILE parameter like the other `project-add-file' methods.

lisp/cedet/ede/project-am.el

index 2803e1c30717fde46746f18ae123b6424d0d1e3c..544e39b872906e1d86a05ac30c5cb467a057fad8 100644 (file)
@@ -191,8 +191,9 @@ other meta-variable based on this name.")
   "Encode one makefile.")
 
 ;;; Code:
-(cl-defmethod project-add-file ((ot project-am-target))
+(cl-defmethod project-add-file ((ot project-am-target) &optional _file)
   "Add the current buffer into a project.
+_FILE is ignored.
 OT is the object target.  DIR is the directory to start in."
   (let* ((target (if ede-object (error "Already associated w/ a target")
                   (let ((amf (project-am-load default-directory)))