summaryrefslogtreecommitdiff
path: root/test/lisp/emacs-lisp
diff options
context:
space:
mode:
authorAndrea Corallo <acorallo@gnu.org>2024-03-19 10:48:18 +0100
committerAndrea Corallo <acorallo@gnu.org>2024-03-19 11:05:40 +0100
commitf7f619779c93bb567a1658ef06199fc1816f88fb (patch)
tree4df7e83c0b38d7df8e3a3dc2a6dc94f45c6f6960 /test/lisp/emacs-lisp
parent0f76baeac074a3d8f15b29b34b873b44d551979b (diff)
downloademacs-f7f619779c93bb567a1658ef06199fc1816f88fb.tar.gz
emacs-f7f619779c93bb567a1658ef06199fc1816f88fb.tar.bz2
emacs-f7f619779c93bb567a1658ef06199fc1816f88fb.zip
* test/lisp/emacs-lisp/comp-cstr-tests.el (comp-cstr-test-93): Add test.
Diffstat (limited to 'test/lisp/emacs-lisp')
-rw-r--r--test/lisp/emacs-lisp/comp-cstr-tests.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/lisp/emacs-lisp/comp-cstr-tests.el b/test/lisp/emacs-lisp/comp-cstr-tests.el
index 991ab1f40eb..b823a190d5a 100644
--- a/test/lisp/emacs-lisp/comp-cstr-tests.el
+++ b/test/lisp/emacs-lisp/comp-cstr-tests.el
@@ -232,9 +232,8 @@ The arg is an alist of: type specifier -> expected type specifier."
;; 92
((or string char-table bool-vector vector cons symbol number) .
(or number sequence symbol))
- ;; 93?
- ;; FIXME: I get `cons' rather than `list'?
- ;;((or null cons) . list)
+ ;; 93
+ ((or list (not null)) . t)
))
;;; comp-cstr-tests.el ends here