aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-09-19 14:42:42 +0000
committerRichard M. Stallman2003-09-19 14:42:42 +0000
commit1994c2a79c0391dde6f3463202be7d145c4071eb (patch)
tree247e5bb4ac20523927a9d033d1573f82a423023d
parent4bb240540785cefbe9cf023404400e7a684d1a6d (diff)
downloademacs-1994c2a79c0391dde6f3463202be7d145c4071eb.tar.gz
emacs-1994c2a79c0391dde6f3463202be7d145c4071eb.zip
(Creating Strings): Add substring-no-properties.
-rw-r--r--lispref/strings.texi5
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
219beginning of a buffer is at index 1. 219beginning of a buffer is at index 1.
220@end defun 220@end defun
221 221
222@defun substring-no-properties string start &optional end
223This works like @code{substring} but discards all text properties
224from the value.
225@end defun
226
222@defun concat &rest sequences 227@defun concat &rest sequences
223@cindex copying strings 228@cindex copying strings
224@cindex concatenating strings 229@cindex concatenating strings