aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorEli Zaretskii2022-12-25 14:54:33 +0200
committerEli Zaretskii2022-12-25 14:54:33 +0200
commitdad73e4de194f6f652c22fcd542d8796926d4ec6 (patch)
tree07c5b1c46beb4f226a07f4d12a3edf5892996339 /lisp
parent72786ae237e66ff42385a2ac36f422ebb21072df (diff)
downloademacs-dad73e4de194f6f652c22fcd542d8796926d4ec6.tar.gz
emacs-dad73e4de194f6f652c22fcd542d8796926d4ec6.zip
; Review and fix NEWS and related documentation
* etc/NEWS: Fix wording, punctuation, and markup. * lisp/emacs-lisp/subr-x.el (string-glyph-split): Doc fix. * doc/lispref/display.texi (Displaying Messages): Document 'set-message-functions'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/subr-x.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/subr-x.el b/lisp/emacs-lisp/subr-x.el
index 4896f4c2937..415f8db52ca 100644
--- a/lisp/emacs-lisp/subr-x.el
+++ b/lisp/emacs-lisp/subr-x.el
@@ -333,7 +333,10 @@ as the new values of the bound variables in the recursive invocation."
333;;;###autoload 333;;;###autoload
334(defun string-glyph-split (string) 334(defun string-glyph-split (string)
335 "Split STRING into a list of strings representing separate glyphs. 335 "Split STRING into a list of strings representing separate glyphs.
336This takes into account combining characters and grapheme clusters." 336This takes into account combining characters and grapheme clusters:
337if compositions are enbaled, each sequence of characters composed
338on display into a single grapheme cluster is treated as a single
339indivisible unit."
337 (let ((result nil) 340 (let ((result nil)
338 (start 0) 341 (start 0)
339 comp) 342 comp)