From: Eric Ludlam Date: Mon, 26 Jan 2015 21:32:45 +0000 (-0500) Subject: EDE: Fix slot type in ede-proj-target-makefile X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5d6f4b80e4462c709486b339e08832739c8078ed;p=emacs.git EDE: Fix slot type in ede-proj-target-makefile * lisp/cedet/ede/proj.el (ede-proj-target-makefile): Set type to `ede-makefile-rule-list'. --- diff --git a/lisp/cedet/ede/proj.el b/lisp/cedet/ede/proj.el index a7f64ac5f3d..eedbabccace 100644 --- a/lisp/cedet/ede/proj.el +++ b/lisp/cedet/ede/proj.el @@ -184,7 +184,7 @@ Target variables are always renamed such as foo_CFLAGS, then included into commands where the variable would usually appear.") (rules :initarg :rules :initform nil - :type list + :type ede-makefile-rule-list :custom (repeat (object :objecttype ede-makefile-rule)) :label "Additional Rules" :group (make) @@ -251,6 +251,7 @@ in targets.") These variables are used in the makefile when a configuration becomes active.") (inference-rules :initarg :inference-rules :initform nil + :type ede-makefile-rule-list :custom (repeat (object :objecttype ede-makefile-rule)) :documentation "Inference rules to add to the makefile.")