* lisp/emacs-lisp/comp.el (comp-known-type-specifiers): Add two functions.
This commit is contained in:
parent
89d5a3a760
commit
c5c0c06b1c
1 changed files with 4 additions and 1 deletions
|
@ -264,7 +264,10 @@ Useful to hook into pass checkers.")
|
|||
(zerop (function (number) boolean))
|
||||
;; Type hints
|
||||
(comp-hint-fixnum (function (t) fixnum))
|
||||
(comp-hint-cons (function (t) cons)))
|
||||
(comp-hint-cons (function (t) cons))
|
||||
;; Non returning functions
|
||||
(error (function (string &rest t) nil))
|
||||
(signal (function (symbol t) nil)))
|
||||
"Alist used for type propagation.")
|
||||
|
||||
(defconst comp-known-func-cstr-h
|
||||
|
|
Loading…
Add table
Reference in a new issue