From: Lars Ingebrigtsen Date: Sun, 15 May 2022 13:41:46 +0000 (+0200) Subject: Fix native-comp type of prin1-to-string X-Git-Tag: emacs-29.0.90~1910^2~667 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cfedc2872e7ee56e4da6e5e557786ab66ddbbf23;p=emacs.git Fix native-comp type of prin1-to-string * lisp/emacs-lisp/comp.el (comp-known-type-specifiers): Fix type of prin1-to-string. --- 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))