diff options
| author | Eric Ludlam | 2015-01-26 16:32:45 -0500 |
|---|---|---|
| committer | David Engster | 2017-01-19 22:43:19 +0100 |
| commit | 5d6f4b80e4462c709486b339e08832739c8078ed (patch) | |
| tree | 9aa798787cb66b98991aa763a51b4031e8475b8f | |
| parent | e698dc189984301a33558bd90dab7dea55c18e50 (diff) | |
| download | emacs-5d6f4b80e4462c709486b339e08832739c8078ed.tar.gz emacs-5d6f4b80e4462c709486b339e08832739c8078ed.zip | |
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'.
| -rw-r--r-- | lisp/cedet/ede/proj.el | 3 |
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 | |||
| 184 | commands where the variable would usually appear.") | 184 | commands 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.") | |||
| 251 | These variables are used in the makefile when a configuration becomes active.") | 251 | These 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.") |