summaryrefslogtreecommitdiff
path: root/lispref/strings.texi
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2003-12-29 21:37:17 +0000
committerRichard M. Stallman <rms@gnu.org>2003-12-29 21:37:17 +0000
commite2d980dea217ba5af12c54865fc9c4a2fd4f4cff (patch)
tree54a33b67121b854c9fd433cfdddb82c8af25dbba /lispref/strings.texi
parent0cf12412d4c4cf55fa56fcd77ae6827b840f6665 (diff)
downloademacs-e2d980dea217ba5af12c54865fc9c4a2fd4f4cff.tar.gz
(Modifying Strings): Add clear-string.
(Text Comparison): Add assoc-string and remove assoc-ignore-case, assoc-ignore-representation.
Diffstat (limited to 'lispref/strings.texi')
-rw-r--r--lispref/strings.texi19
1 files changed, 12 insertions, 7 deletions
diff --git a/lispref/strings.texi b/lispref/strings.texi
index acab7286d0d..7cc182cc058 100644
--- a/lispref/strings.texi
+++ b/lispref/strings.texi
@@ -379,6 +379,14 @@ or if any new character requires a different number of bytes from the
character currently present at that point in @var{string}.
@end defun
+ To clear out a string that contained a password, use
+@code{clear-string}:
+
+@defun clear-string string
+This clears the contents of @var{string} to zeros
+and may change its length.
+@end defun
+
@need 2000
@node Text Comparison
@section Comparison of Characters and Strings
@@ -518,13 +526,10 @@ two strings. The sign is negative if @var{string1} (or its specified
portion) is less.
@end defun
-@defun assoc-ignore-case key alist
-@defunx assoc-ignore-representation key alist
-These functions work like @code{assoc}, except that @var{key} must be
-a string, all elements of @var{alist} must be cons cells whose
-@sc{car} is a string, and comparison is done using
-@code{compare-strings}. @code{assoc-ignore-case} ignores case
-differences, whereas @code{assoc-ignore-representation} does not.
+@defun assoc-string key alist &optional case-fold
+This function works like @code{assoc}, except that @var{key} must be a
+string, and comparison is done using @code{compare-strings}. If
+@var{case-fold} is non-@code{nil}, it ignores case differences.
@xref{Association Lists}.
@end defun