From ce305387df9c111d9b2e0b330c1eb87fd1bee5cb Mon Sep 17 00:00:00 2001 From: Daniel Kraft Date: Thu, 30 Jul 2009 13:54:07 +0200 Subject: [PATCH] Switch use of guile-primitive to now available funcall in test. --- test-suite/tests/elisp-compiler.test | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test-suite/tests/elisp-compiler.test b/test-suite/tests/elisp-compiler.test index 7d77c3b8d..7e013b825 100644 --- a/test-suite/tests/elisp-compiler.test +++ b/test-suite/tests/elisp-compiler.test @@ -336,13 +336,13 @@ (lambda () (setq cnt (1+ cnt))))) (setq c1 (make-counter) c2 (make-counter)) - (= ((guile-primitive apply) c1 '()) 1) - (= ((guile-primitive apply) c1 '()) 2) - (= ((guile-primitive apply) c1 '()) 3) - (= ((guile-primitive apply) c2 '()) 1) - (= ((guile-primitive apply) c2 '()) 2) - (= ((guile-primitive apply) c1 '()) 4) - (= ((guile-primitive apply) c2 '()) 3)))) + (= (funcall c1) 1) + (= (funcall c1) 2) + (= (funcall c1) 3) + (= (funcall c2) 1) + (= (funcall c2) 2) + (= (funcall c1) 4) + (= (funcall c2) 3)))) (with-test-prefix/compile "defconst and defvar"