summaryrefslogtreecommitdiff
path: root/doc/lispref/strings.texi
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2021-10-30 15:22:36 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2021-10-30 15:22:36 +0200
commitc23cb2861eab646498d2d7d28a8d46f4de91ebb3 (patch)
tree9d5187a11c6cf7ebb6095f3e9117886314d45f4d /doc/lispref/strings.texi
parentb54be604bf8ad67346a82a0755349ffa8a715a11 (diff)
downloademacs-c23cb2861eab646498d2d7d28a8d46f4de91ebb3.tar.gz
emacs-c23cb2861eab646498d2d7d28a8d46f4de91ebb3.tar.bz2
emacs-c23cb2861eab646498d2d7d28a8d46f4de91ebb3.zip
Add new function string-glyph-split
* doc/lispref/strings.texi (Creating Strings): Document it. * lisp/emacs-lisp/shortdoc.el (string): Mention it. * lisp/emacs-lisp/subr-x.el (string-glyph-split): New function.
Diffstat (limited to 'doc/lispref/strings.texi')
-rw-r--r--doc/lispref/strings.texi18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi
index 7212677d832..a9e1105c824 100644
--- a/doc/lispref/strings.texi
+++ b/doc/lispref/strings.texi
@@ -248,6 +248,24 @@ equivalent to 0. Thus, @w{@code{(substring-no-properties
properties removed.
@end defun
+@defun string-glyph-split string
+Special care has to be taken when handling strings that are meant to
+be displayed. @code{substring} and friends work on individual
+characters (i.e., code points), but things like emojis are often
+represented by @dfn{grapheme clusters}, which are basically a bunch of
+code points ``glued together'' in various ways. This function splits
+up strings like that into a list of strings, where each of these
+resulting strings represents a glyph that should be displayed as a
+unit.
+
+For instance, if you want to display a string without the first glyph,
+you can say:
+
+@example
+(apply #'insert (cdr (string-glyph-split string))))
+@end example
+@end defun
+
@defun concat &rest sequences
@cindex copying strings
@cindex concatenating strings