aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Corallo2021-01-02 13:22:30 +0100
committerAndrea Corallo2021-01-02 13:53:10 +0100
commita3f2373bfb604af5570c86b4ffefb23296a5bfdd (patch)
tree64fc2e5971acce50e67b03528878789ac44a95b3
parent43d0e8483e5b51aec1347b8a2ed53acae34a9811 (diff)
downloademacs-a3f2373bfb604af5570c86b4ffefb23296a5bfdd.tar.gz
emacs-a3f2373bfb604af5570c86b4ffefb23296a5bfdd.zip
* lisp/emacs-lisp/comp.el (comp-known-predicates): Some more tweaking.
-rw-r--r--lisp/emacs-lisp/comp.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 455fd72efcd..3247b19c5e2 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -503,15 +503,15 @@ Useful to hook into pass checkers.")
503(defconst comp-known-predicates 503(defconst comp-known-predicates
504 '((arrayp . array) 504 '((arrayp . array)
505 (atom . atom) 505 (atom . atom)
506 (characterp . base-char) 506 (characterp . fixnum)
507 (booleanp . boolean) 507 (booleanp . boolean)
508 (bool-vector-p . bool-vector) 508 (bool-vector-p . bool-vector)
509 (bufferp . buffer) 509 (bufferp . buffer)
510 (natnump . character) 510 (natnump . (integer 0 *))
511 (char-table-p . char-table) 511 (char-table-p . char-table)
512 (hash-table-p . hash-table) 512 (hash-table-p . hash-table)
513 (consp . cons) 513 (consp . cons)
514 (integerp . fixnum) 514 (integerp . integer)
515 (floatp . float) 515 (floatp . float)
516 (functionp . (or function symbol)) 516 (functionp . (or function symbol))
517 (integerp . integer) 517 (integerp . integer)
@@ -519,7 +519,7 @@ Useful to hook into pass checkers.")
519 (listp . list) 519 (listp . list)
520 (numberp . number) 520 (numberp . number)
521 (null . null) 521 (null . null)
522 (numberp . real) 522 (numberp . number)
523 (sequencep . sequence) 523 (sequencep . sequence)
524 (stringp . string) 524 (stringp . string)
525 (symbolp . symbol) 525 (symbolp . symbol)