emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 9214402: * lisp/cedet/ede/proj.el: Enable Project files to load


From: Stefan Monnier
Subject: master 9214402: * lisp/cedet/ede/proj.el: Enable Project files to load
Date: Mon, 18 Jan 2021 12:49:16 -0500 (EST)

branch: master
commit 92144027915bc2fc9c222d87a8e2e5da3df46c82
Author: Eric Ludlam <ericludlam@gmail.com>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    * lisp/cedet/ede/proj.el: Enable Project files to load
    
    (ede-proj-target-makefile): Give more precise type for its `rules` slot.
    
    * lisp/cedet/ede/base.el (ede-target-list): Don't define.
    (ede-project): Use `list-of` instead.
---
 lisp/cedet/ede/base.el | 5 +----
 lisp/cedet/ede/proj.el | 2 +-
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/lisp/cedet/ede/base.el b/lisp/cedet/ede/base.el
index 7799746..810d6ef 100644
--- a/lisp/cedet/ede/base.el
+++ b/lisp/cedet/ede/base.el
@@ -160,16 +160,13 @@ and querying them will cause the actual project to get 
loaded.")
 ;; Projects can also affect how EDE works, by changing what appears in
 ;; the EDE menu, or how some keys are bound.
 ;;
-(unless (fboundp 'ede-target-list-p)
-  (cl-deftype ede-target-list () '(list-of ede-target)))
-
 (defclass ede-project (ede-project-placeholder)
   ((subproj :initform nil
            :type list
            :documentation "Sub projects controlled by this project.
 For Automake based projects, each directory is treated as a project.")
    (targets :initarg :targets
-           :type ede-target-list
+           :type (list-of ede-target)
            :custom (repeat (object :objectcreatefcn ede-new-target-custom))
            :label "Local Targets"
            :group (targets)
diff --git a/lisp/cedet/ede/proj.el b/lisp/cedet/ede/proj.el
index 59628eb..4af8b41 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 (list-of ede-makefile-rule)
          :custom (repeat (object :objecttype ede-makefile-rule))
          :label "Additional Rules"
          :group (make)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]