summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-05-15 15:41:46 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-05-15 15:41:46 +0200
commitcfedc2872e7ee56e4da6e5e557786ab66ddbbf23 (patch)
treecc01337bd6a7e0c456298417d2e4b7cfae1b8d17 /lisp/emacs-lisp
parenta517f3d759cb0747482ee6572065c7cd9518faa5 (diff)
downloademacs-cfedc2872e7ee56e4da6e5e557786ab66ddbbf23.tar.gz
emacs-cfedc2872e7ee56e4da6e5e557786ab66ddbbf23.tar.bz2
emacs-cfedc2872e7ee56e4da6e5e557786ab66ddbbf23.zip
Fix native-comp type of prin1-to-string
* lisp/emacs-lisp/comp.el (comp-known-type-specifiers): Fix type of prin1-to-string.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/comp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 237de52884b..7c755372bfc 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -483,7 +483,7 @@ Useful to hook into pass checkers.")
(point-min (function () integer))
(preceding-char (function () fixnum))
(previous-window (function (&optional window t t) window))
- (prin1-to-string (function (t &optional t) string))
+ (prin1-to-string (function (t &optional t t) string))
(processp (function (t) boolean))
(proper-list-p (function (t) integer))
(propertize (function (string &rest t) string))