aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Corallo2022-08-18 17:09:36 +0200
committerAndrea Corallo2022-08-18 17:11:59 +0200
commit67ec99418079dc6443b73b60840dc281ba2a68ae (patch)
treeeda82be23ad4923e992ea88d0892e639027256e5
parent9361c833182e47607099f7ffb5dc68a53de26792 (diff)
downloademacs-67ec99418079dc6443b73b60840dc281ba2a68ae.tar.gz
emacs-67ec99418079dc6443b73b60840dc281ba2a68ae.zip
* lisp/emacs-lisp/comp.el (comp-known-type-specifiers): Fix some type
-rw-r--r--lisp/emacs-lisp/comp.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 5ee10fcbca2..869781bea15 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -304,7 +304,7 @@ Useful to hook into pass checkers.")
304 (bool-vector-subsetp (function (bool-vector bool-vector) boolean)) 304 (bool-vector-subsetp (function (bool-vector bool-vector) boolean))
305 (boundp (function (symbol) boolean)) 305 (boundp (function (symbol) boolean))
306 (buffer-end (function ((or number marker)) integer)) 306 (buffer-end (function ((or number marker)) integer))
307 (buffer-file-name (function (&optional buffer) string)) 307 (buffer-file-name (function (&optional buffer) (or string null)))
308 (buffer-list (function (&optional frame) list)) 308 (buffer-list (function (&optional frame) list))
309 (buffer-local-variables (function (&optional buffer) list)) 309 (buffer-local-variables (function (&optional buffer) list))
310 (buffer-modified-p (function (&optional buffer) boolean)) 310 (buffer-modified-p (function (&optional buffer) boolean))
@@ -321,8 +321,8 @@ Useful to hook into pass checkers.")
321 (cdr (function (list) t)) 321 (cdr (function (list) t))
322 (cdr-safe (function (t) t)) 322 (cdr-safe (function (t) t))
323 (ceiling (function (number &optional number) integer)) 323 (ceiling (function (number &optional number) integer))
324 (char-after (function (&optional (or marker integer)) fixnum)) 324 (char-after (function (&optional (or marker integer)) (or fixnum null)))
325 (char-before (function (&optional (or marker integer)) fixnum)) 325 (char-before (function (&optional (or marker integer)) (or fixnum null)))
326 (char-equal (function (integer integer) boolean)) 326 (char-equal (function (integer integer) boolean))
327 (char-or-string-p (function (t) boolean)) 327 (char-or-string-p (function (t) boolean))
328 (char-to-string (function (fixnum) string)) 328 (char-to-string (function (fixnum) string))
@@ -344,8 +344,8 @@ Useful to hook into pass checkers.")
344 (current-buffer (function () buffer)) 344 (current-buffer (function () buffer))
345 (current-global-map (function () cons)) 345 (current-global-map (function () cons))
346 (current-indentation (function () integer)) 346 (current-indentation (function () integer))
347 (current-local-map (function () cons)) 347 (current-local-map (function () (or cons null)))
348 (current-minor-mode-maps (function () cons)) 348 (current-minor-mode-maps (function () (or cons null)))
349 (current-time (function () cons)) 349 (current-time (function () cons))
350 (current-time-string (function (&optional string boolean) string)) 350 (current-time-string (function (&optional string boolean) string))
351 (current-time-zone (function (&optional string boolean) cons)) 351 (current-time-zone (function (&optional string boolean) cons))
@@ -400,8 +400,8 @@ Useful to hook into pass checkers.")
400 (get-buffer (function ((or buffer string)) (or buffer null))) 400 (get-buffer (function ((or buffer string)) (or buffer null)))
401 (get-buffer-window (function (&optional (or buffer string) (or symbol (integer 0 0))) (or null window))) 401 (get-buffer-window (function (&optional (or buffer string) (or symbol (integer 0 0))) (or null window)))
402 (get-file-buffer (function (string) (or null buffer))) 402 (get-file-buffer (function (string) (or null buffer)))
403 (get-largest-window (function (&optional t t t) window)) 403 (get-largest-window (function (&optional t t t) (or window null)))
404 (get-lru-window (function (&optional t t t) window)) 404 (get-lru-window (function (&optional t t t) (or window null)))
405 (getenv (function (string &optional frame) (or null string))) 405 (getenv (function (string &optional frame) (or null string)))
406 (gethash (function (t hash-table &optional t) t)) 406 (gethash (function (t hash-table &optional t) t))
407 (hash-table-count (function (hash-table) integer)) 407 (hash-table-count (function (hash-table) integer))
@@ -450,7 +450,7 @@ Useful to hook into pass checkers.")
450 (make-symbol (function (string) symbol)) 450 (make-symbol (function (string) symbol))
451 (mark (function (&optional t) (or integer null))) 451 (mark (function (&optional t) (or integer null)))
452 (mark-marker (function () marker)) 452 (mark-marker (function () marker))
453 (marker-buffer (function (marker) buffer)) 453 (marker-buffer (function (marker) (or buffer null)))
454 (markerp (function (t) boolean)) 454 (markerp (function (t) boolean))
455 (max (function ((or number marker) &rest (or number marker)) number)) 455 (max (function ((or number marker) &rest (or number marker)) number))
456 (max-char (function () fixnum)) 456 (max-char (function () fixnum))
@@ -459,7 +459,7 @@ Useful to hook into pass checkers.")
459 (memq (function (t list) list)) 459 (memq (function (t list) list))
460 (memql (function (t list) list)) 460 (memql (function (t list) list))
461 (min (function ((or number marker) &rest (or number marker)) number)) 461 (min (function ((or number marker) &rest (or number marker)) number))
462 (minibuffer-selected-window (function () window)) 462 (minibuffer-selected-window (function () (or window null)))
463 (minibuffer-window (function (&optional frame) window)) 463 (minibuffer-window (function (&optional frame) window))
464 (mod (function ((or number marker) (or number marker)) (or (integer 0 *) (float 0 *)))) 464 (mod (function ((or number marker) (or number marker)) (or (integer 0 *) (float 0 *))))
465 (mouse-movement-p (function (t) boolean)) 465 (mouse-movement-p (function (t) boolean))
@@ -487,7 +487,7 @@ Useful to hook into pass checkers.")
487 (previous-window (function (&optional window t t) window)) 487 (previous-window (function (&optional window t t) window))
488 (prin1-to-string (function (t &optional t t) string)) 488 (prin1-to-string (function (t &optional t t) string))
489 (processp (function (t) boolean)) 489 (processp (function (t) boolean))
490 (proper-list-p (function (t) integer)) 490 (proper-list-p (function (t) boolean))
491 (propertize (function (string &rest t) string)) 491 (propertize (function (string &rest t) string))
492 (radians-to-degrees (function (number) float)) 492 (radians-to-degrees (function (number) float))
493 (rassoc (function (t list) list)) 493 (rassoc (function (t list) list))