]> git.eshelyaron.com Git - emacs.git/commitdiff
Let the cl-typep effects of defclass work during compilation (Bug#27718)
authorNoam Postavsky <npostavs@gmail.com>
Fri, 4 Aug 2017 23:50:21 +0000 (19:50 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Mon, 7 Aug 2017 22:54:49 +0000 (18:54 -0400)
* lisp/emacs-lisp/eieio.el (defclass): Use `define-symbol-prop'
instead of `put'.
* test/lisp/emacs-lisp/eieio-tests/eieio-tests.el
(eieio-tests--dummy-function): Remove.
(eieio-test-25-slot-tests, eieio-test-23-inheritance-check): Don't
expect to fail if compiled.

lisp/emacs-lisp/eieio.el
test/lisp/emacs-lisp/eieio-tests/eieio-tests.el

index 1a7de55fcef733e193cf611a87822a99c194e87e..8b92d5b7acd6a64ef36a49dec63ec6dd79c474b5 100644 (file)
@@ -246,7 +246,7 @@ This method is obsolete."
        ;; test, so we can let typep have the CLOS documented behavior
        ;; while keeping our above predicate clean.
 
-       (put ',name 'cl-deftype-satisfies #',testsym2)
+       (define-symbol-prop ',name 'cl-deftype-satisfies #',testsym2)
 
        (eieio-defclass-internal ',name ',superclasses ',slots ',options-and-doc)
 
index d824bfc1bb47ab135e5d2300fdc27b21aea6d850..1a6ab9da085a1620d1a50232a53fea586bc9fcbb 100644 (file)
@@ -529,15 +529,7 @@ METHOD is the method that was attempting to be called."
        "This class should break."))
    :type 'invalid-slot-type))
 
-(defun eieio-tests--dummy-function ()
-  ;; Dummy function to see if the file is compiled.
-  t)
-
 (ert-deftest eieio-test-23-inheritance-check ()
-  ;; This test fails when compiled, see Bug#27718.
-  :expected-result (if (byte-code-function-p
-                        (symbol-function 'eieio-tests--dummy-function))
-                       :failed :passed)
   (should (child-of-class-p 'class-ab 'class-a))
   (should (child-of-class-p 'class-ab 'class-b))
   (should (object-of-class-p eitest-a 'class-a))
@@ -556,10 +548,6 @@ METHOD is the method that was attempting to be called."
   (should (not (cl-typep "foo" 'class-a))))
 
 (ert-deftest eieio-test-24-object-predicates ()
-  ;; This test fails when compiled, see Bug#27718.
-  :expected-result (if (byte-code-function-p
-                        (symbol-function 'eieio-tests--dummy-function))
-                       :failed :passed)
   (let ((listooa (list (class-ab) (class-a)))
        (listoob (list (class-ab) (class-b))))
     (should (cl-typep listooa '(list-of class-a)))