diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-12-21 22:05:37 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-12-21 22:05:37 +0100 |
commit | f329a3180ead740bb85e1edfc48ae360a56f7ffd (patch) | |
tree | e5710512f8c9dbed77cbda51753c479865b77f8d /doc/lispref/strings.texi | |
parent | e967ba301857edd15778a018ae716e4e98fa2fa9 (diff) | |
download | emacs-f329a3180ead740bb85e1edfc48ae360a56f7ffd.tar.gz emacs-f329a3180ead740bb85e1edfc48ae360a56f7ffd.tar.bz2 emacs-f329a3180ead740bb85e1edfc48ae360a56f7ffd.zip |
Add string-chop-newline
* doc/lispref/strings.texi (Creating Strings): Document it.
* lisp/emacs-lisp/subr-x.el (string-chop-newline): Add new function.
Diffstat (limited to 'doc/lispref/strings.texi')
-rw-r--r-- | doc/lispref/strings.texi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index c65d839a028..17cc1a47124 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi @@ -428,6 +428,10 @@ string, and if it's negative, to the start of the string (using the absolute value). @end defun +@defun string-chop-newline string +Remove the final newline, if any, from @var{string}. +@end defun + @node Modifying Strings @section Modifying Strings @cindex modifying strings |