diff options
author | Richard M. Stallman <rms@gnu.org> | 2003-09-19 14:42:42 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2003-09-19 14:42:42 +0000 |
commit | 1994c2a79c0391dde6f3463202be7d145c4071eb (patch) | |
tree | 247e5bb4ac20523927a9d033d1573f82a423023d /lispref/strings.texi | |
parent | 4bb240540785cefbe9cf023404400e7a684d1a6d (diff) | |
download | emacs-1994c2a79c0391dde6f3463202be7d145c4071eb.tar.gz |
(Creating Strings): Add substring-no-properties.
Diffstat (limited to 'lispref/strings.texi')
-rw-r--r-- | lispref/strings.texi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lispref/strings.texi b/lispref/strings.texi index b0cc45a38b5..79aeb976f1e 100644 --- a/lispref/strings.texi +++ b/lispref/strings.texi @@ -219,6 +219,11 @@ the current buffer. The beginning of a string is at index 0, but the beginning of a buffer is at index 1. @end defun +@defun substring-no-properties string start &optional end +This works like @code{substring} but discards all text properties +from the value. +@end defun + @defun concat &rest sequences @cindex copying strings @cindex concatenating strings |