aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorAndrea Corallo2019-07-10 21:19:40 +0200
committerAndrea Corallo2020-01-01 11:33:52 +0100
commitc81aba08e3285d7864c60ea121959972a8584f35 (patch)
tree4a0443cc5353873068f9e224c8452c68c977e90b /test/src
parent65918ebff8ed764a3dcfb3d7f4c95a4cb854b0f7 (diff)
downloademacs-c81aba08e3285d7864c60ea121959972a8584f35.tar.gz
emacs-c81aba08e3285d7864c60ea121959972a8584f35.zip
fix list
Diffstat (limited to 'test/src')
-rw-r--r--test/src/comp-tests.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/src/comp-tests.el b/test/src/comp-tests.el
index 33f5ebfdc2e..1d00dea2195 100644
--- a/test/src/comp-tests.el
+++ b/test/src/comp-tests.el
@@ -43,8 +43,8 @@
43 43
44(ert-deftest comp-tests-list () 44(ert-deftest comp-tests-list ()
45 "Testing cons car cdr." 45 "Testing cons car cdr."
46 ;; (defun comp-tests-list-f () 46 (defun comp-tests-list-f ()
47 ;; (list 1 2 3)) 47 (list 1 2 3))
48 (defun comp-tests-car-f (x) 48 (defun comp-tests-car-f (x)
49 ;; Bcar 49 ;; Bcar
50 (car x)) 50 (car x))
@@ -58,7 +58,7 @@
58 ;; Bcdr_safe 58 ;; Bcdr_safe
59 (cdr-safe x)) 59 (cdr-safe x))
60 60
61 ;; (native-compile #'comp-tests-list-f) 61 (native-compile #'comp-tests-list-f)
62 (native-compile #'comp-tests-car-f) 62 (native-compile #'comp-tests-car-f)
63 (native-compile #'comp-tests-cdr-f) 63 (native-compile #'comp-tests-cdr-f)
64 (native-compile #'comp-tests-car-safe-f) 64 (native-compile #'comp-tests-car-safe-f)