diff options
author | Andrea Corallo <akrl@sdf.org> | 2021-01-07 23:10:18 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2021-01-07 23:10:18 +0100 |
commit | 213b5d73159cafbdd52b9c0fb0479544cca98a77 (patch) | |
tree | 4c21b716241d806e176c3d15f42c558abf49db9d /lisp/emacs-lisp | |
parent | ad0d553e8f8ddc8cb821944b043cfaec75dbb104 (diff) | |
download | emacs-213b5d73159cafbdd52b9c0fb0479544cca98a77.tar.gz emacs-213b5d73159cafbdd52b9c0fb0479544cca98a77.tar.bz2 emacs-213b5d73159cafbdd52b9c0fb0479544cca98a77.zip |
* lisp/emacs-lisp/comp.el (comp-known-type-specifiers): Fix typo.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 88b6a4690df..d1953b59f04 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -410,7 +410,7 @@ Useful to hook into pass checkers.") (radians-to-degrees (function (number) float)) (rassoc (function (t list) list)) (rassq (function (t list) list)) - (read-from-string (function (string &ptional integer integer) cons)) + (read-from-string (function (string &optional integer integer) cons)) (recent-keys (function (&optional (or cons null)) vector)) (recursion-depth (function () integer)) (regexp-opt (function (list) string)) |