branch: externals/setup commit 761e2eab8f3cd9bc2b1c7aeec2246bf50b6d57c5 Author: Philip K <phil...@posteo.net> Commit: Philip K <phil...@posteo.net>
Print signature with princ instead of prin1 --- setup.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.el b/setup.el index 69a32e3..5afdb72 100644 --- a/setup.el +++ b/setup.el @@ -83,8 +83,7 @@ (let ((sig (if (get sym 'setup-signature) (cons sym (get sym 'setup-signature)) (list sym)))) - (insert "- " (prin1-to-string sig) - "\n\n" + (insert (format " - %s\n\n" sig) (or (get sym 'setup-documentation) "No documentation.") "\n\n")))