From: Lars Ingebrigtsen Date: Sun, 26 Sep 2021 07:05:38 +0000 (+0200) Subject: Improve describe-char buffer extremely slightly X-Git-Tag: emacs-28.0.90~583 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=07ecd81dddc17143f5fd1cb8e3ffe04d1f154f62;p=emacs.git Improve describe-char buffer extremely slightly * lisp/descr-text.el (describe-char): Add a colon to further signify that we're talking about the following line (bug#50795). --- diff --git a/lisp/descr-text.el b/lisp/descr-text.el index 7ab90d08acc..98871164f2a 100644 --- a/lisp/descr-text.el +++ b/lisp/descr-text.el @@ -677,7 +677,7 @@ The character information includes: (let ((display (describe-char-display pos char))) (if (display-graphic-p (selected-frame)) (if display - (concat "by this font (glyph code)\n " display) + (concat "by this font (glyph code):\n " display) "no font available") (if display (format "terminal code %s" display)