changeset 69845:e9b7f9dec32c

(Predicates for Strings): Add string-or-null-p.
author Reiner Steib <Reiner.Steib@gmx.de>
date Fri, 07 Apr 2006 18:53:09 +0000
parents 9b1a2f1cdf0e
children 9942deb37276
files lispref/ChangeLog lispref/strings.texi
diffstat 2 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lispref/ChangeLog	Fri Apr 07 18:52:30 2006 +0000
+++ b/lispref/ChangeLog	Fri Apr 07 18:53:09 2006 +0000
@@ -1,3 +1,7 @@
+2006-04-07  Reiner Steib  <Reiner.Steib@gmx.de>
+
+	* strings.texi (Predicates for Strings): Add string-or-null-p.
+
 2006-03-28  Kim F. Storm  <storm@cua.dk>
 
 	* processes.texi (Accepting Output): Remove obsolete (and incorrect)
--- a/lispref/strings.texi	Fri Apr 07 18:52:30 2006 +0000
+++ b/lispref/strings.texi	Fri Apr 07 18:53:09 2006 +0000
@@ -102,6 +102,11 @@
 otherwise.
 @end defun
 
+@defun string-or-null-p object
+This function returns @code{t} if @var{object} is a string or nil,
+@code{nil} otherwise.
+@end defun
+
 @defun char-or-string-p object
 This function returns @code{t} if @var{object} is a string or a
 character (i.e., an integer), @code{nil} otherwise.