From ab41b1c5541cd0b1a72b1f0358dcbb0c2f60dc3b Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Sun, 5 Dec 2021 01:51:12 +0100 Subject: [PATCH] Fill Emacs version on about screen * lisp/startup.el (fancy-about-text): Fill the Emacs version, since it's too long these days. --- lisp/startup.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/startup.el b/lisp/startup.el index d4bb338fc0b..a57ce3da05f 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -1651,7 +1651,11 @@ Each element in the list should be a list of strings or pairs " operating system.\n" :face (variable-pitch font-lock-builtin-face) "\n" - ,(lambda () (emacs-version)) + ,(lambda () + (with-temp-buffer + (insert (emacs-version)) + (fill-region (point-min) (point-max)) + (buffer-string))) "\n" :face (variable-pitch (:height 0.8)) ,(lambda () emacs-copyright) -- 2.39.5