aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/cedet/ede/proj.el3
1 files changed, 2 insertions, 1 deletions
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
184commands where the variable would usually appear.") 184commands where the variable would usually appear.")
185 (rules :initarg :rules 185 (rules :initarg :rules
186 :initform nil 186 :initform nil
187 :type list 187 :type ede-makefile-rule-list
188 :custom (repeat (object :objecttype ede-makefile-rule)) 188 :custom (repeat (object :objecttype ede-makefile-rule))
189 :label "Additional Rules" 189 :label "Additional Rules"
190 :group (make) 190 :group (make)
@@ -251,6 +251,7 @@ in targets.")
251These variables are used in the makefile when a configuration becomes active.") 251These variables are used in the makefile when a configuration becomes active.")
252 (inference-rules :initarg :inference-rules 252 (inference-rules :initarg :inference-rules
253 :initform nil 253 :initform nil
254 :type ede-makefile-rule-list
254 :custom (repeat 255 :custom (repeat
255 (object :objecttype ede-makefile-rule)) 256 (object :objecttype ede-makefile-rule))
256 :documentation "Inference rules to add to the makefile.") 257 :documentation "Inference rules to add to the makefile.")