aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorAndrea Corallo2019-06-16 11:59:11 +0200
committerAndrea Corallo2020-01-01 11:33:42 +0100
commit96e1a5efb3bdeb9e70f7ea6030514e83e6ae8da1 (patch)
treee199ec996dfa105cdb1a1f80259ac817c9703c81 /test/src
parent2a1bb41c14fba3ecb2f7ccdb251918ea0ac30c41 (diff)
downloademacs-96e1a5efb3bdeb9e70f7ea6030514e83e6ae8da1.tar.gz
emacs-96e1a5efb3bdeb9e70f7ea6030514e83e6ae8da1.zip
fix consp
Diffstat (limited to 'test/src')
-rw-r--r--test/src/comp-tests.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/comp-tests.el b/test/src/comp-tests.el
index d7e6954455b..99dce77dc29 100644
--- a/test/src/comp-tests.el
+++ b/test/src/comp-tests.el
@@ -278,8 +278,8 @@
278 ;; Bconsp 278 ;; Bconsp
279 (consp x)) 279 (consp x))
280 280
281 ;; (byte-compile #'comp-tests-consp-f) 281 (byte-compile #'comp-tests-consp-f)
282 ;; (native-compile #'comp-tests-consp-f) 282 (native-compile #'comp-tests-consp-f)
283 283
284 (should (eq (comp-tests-consp-f '(1)) t)) 284 (should (eq (comp-tests-consp-f '(1)) t))
285 (should (eq (comp-tests-consp-f 1) nil))) 285 (should (eq (comp-tests-consp-f 1) nil)))