summaryrefslogtreecommitdiff
path: root/test/lisp/emacs-lisp
diff options
context:
space:
mode:
authorAndrea Corallo <acorallo@gnu.org>2024-03-01 09:30:44 +0100
committerAndrea Corallo <acorallo@gnu.org>2024-03-01 09:30:44 +0100
commitc55694785e93212d1da5f96123288e596cb24f53 (patch)
tree737c364da774e2c3724c04adbd0ff36cacfff22a /test/lisp/emacs-lisp
parent4dd4f145b8528d5a742af4268073c24d629801d8 (diff)
parent4372a056fef90e5927d1a627fe0eb2bb01eb0dfb (diff)
downloademacs-c55694785e93212d1da5f96123288e596cb24f53.tar.gz
emacs-c55694785e93212d1da5f96123288e596cb24f53.tar.bz2
emacs-c55694785e93212d1da5f96123288e596cb24f53.zip
Merge branch 'feature/type-hierarchy' into 'master'
Diffstat (limited to 'test/lisp/emacs-lisp')
-rw-r--r--test/lisp/emacs-lisp/comp-cstr-tests.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lisp/emacs-lisp/comp-cstr-tests.el b/test/lisp/emacs-lisp/comp-cstr-tests.el
index edc70b12d4b..c3a7092819d 100644
--- a/test/lisp/emacs-lisp/comp-cstr-tests.el
+++ b/test/lisp/emacs-lisp/comp-cstr-tests.el
@@ -170,7 +170,7 @@ The arg is an alist of: type specifier -> expected type specifier."
;; 61
((and atom (not symbol)) . atom)
;; 62
- ((and atom (not string)) . (or array sequence atom))
+ ((and atom (not string)) . (or array atom))
;; 63 Conservative
((and symbol (not (member foo))) . symbol)
;; 64 Conservative
@@ -196,7 +196,7 @@ The arg is an alist of: type specifier -> expected type specifier."
;; 74
((and boolean (or number marker)) . nil)
;; 75
- ((and atom (or number marker)) . number-or-marker)
+ ((and atom (or number marker)) . (or integer-or-marker number-or-marker))
;; 76
((and symbol (or number marker)) . nil)
;; 77