* lisp/emacs-lisp/comp.el (comp-known-type-specifiers): Fix some type spec
This commit is contained in:
parent
0c410206aa
commit
a5e36575ae
1 changed files with 16 additions and 6 deletions
|
@ -347,11 +347,18 @@ Useful to hook into pass checkers.")
|
|||
(current-local-map (function () (or cons null)))
|
||||
(current-minor-mode-maps (function () (or cons null)))
|
||||
(current-time (function () cons))
|
||||
(current-time-string (function (&optional string boolean) string))
|
||||
(current-time-zone (function (&optional string boolean) cons))
|
||||
(current-time-string (function (&optional (or number list)
|
||||
(or symbol string cons integer))
|
||||
string))
|
||||
(current-time-zone (function (&optional (or number list)
|
||||
(or symbol string cons integer))
|
||||
cons))
|
||||
(custom-variable-p (function (symbol) boolean))
|
||||
(decode-char (function (cons t) (or fixnum null)))
|
||||
(decode-time (function (&optional string symbol symbol) cons))
|
||||
(decode-time (function (&optional (or number list)
|
||||
(or symbol string cons integer)
|
||||
symbol)
|
||||
cons))
|
||||
(default-boundp (function (symbol) boolean))
|
||||
(default-value (function (symbol) t))
|
||||
(degrees-to-radians (function (number) float))
|
||||
|
@ -383,12 +390,14 @@ Useful to hook into pass checkers.")
|
|||
(file-writable-p (function (string) boolean))
|
||||
(fixnump (function (t) boolean))
|
||||
(float (function (number) float))
|
||||
(float-time (function (&optional cons) float))
|
||||
(float-time (function (&optional (or number list)) float))
|
||||
(floatp (function (t) boolean))
|
||||
(floor (function (number &optional number) integer))
|
||||
(following-char (function () fixnum))
|
||||
(format (function (string &rest t) string))
|
||||
(format-time-string (function (string &optional cons symbol) string))
|
||||
(format-time-string (function (string &optional (or number list)
|
||||
(or symbol string cons integer))
|
||||
string))
|
||||
(frame-first-window (function ((or frame window)) window))
|
||||
(frame-root-window (function (&optional (or frame window)) window))
|
||||
(frame-selected-window (function (&optional (or frame window)) window))
|
||||
|
@ -542,7 +551,8 @@ Useful to hook into pass checkers.")
|
|||
(this-command-keys-vector (function () vector))
|
||||
(this-single-command-keys (function () vector))
|
||||
(this-single-command-raw-keys (function () vector))
|
||||
(time-convert (function (t &optional (or boolean integer)) cons))
|
||||
(time-convert (function ((or number list) &optional (or symbol integer))
|
||||
(or cons number)))
|
||||
(truncate (function (number &optional number) integer))
|
||||
(type-of (function (t) symbol))
|
||||
(unibyte-char-to-multibyte (function (fixnum) fixnum)) ;; byte is fixnum
|
||||
|
|
Loading…
Add table
Reference in a new issue