summaryrefslogtreecommitdiff
path: root/src/data.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-03-16 23:21:02 +0000
committerKarl Heuer <kwzh@gnu.org>1994-03-16 23:21:02 +0000
commit0321d75c24a3c5c88740773fd9be4c168b15a5ee (patch)
treec38aa0deb48058b75f52b56658fba624510536ed /src/data.c
parent8acd16de1e1835630a3ef996ab75ea63391e9846 (diff)
downloademacs-0321d75c24a3c5c88740773fd9be4c168b15a5ee.tar.gz
(Fchar_or_string_p, Fintegerp, Fnatnump): Doc fix.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/data.c b/src/data.c
index adb8d38e3aa..3fa8af55c77 100644
--- a/src/data.c
+++ b/src/data.c
@@ -298,7 +298,8 @@ DEFUN ("byte-code-function-p", Fbyte_code_function_p, Sbyte_code_function_p,
return Qnil;
}
-DEFUN ("char-or-string-p", Fchar_or_string_p, Schar_or_string_p, 1, 1, 0, "T if OBJECT is a character (a number) or a string.")
+DEFUN ("char-or-string-p", Fchar_or_string_p, Schar_or_string_p, 1, 1, 0,
+ "T if OBJECT is a character (an integer) or a string.")
(obj)
register Lisp_Object obj;
{
@@ -307,7 +308,7 @@ DEFUN ("char-or-string-p", Fchar_or_string_p, Schar_or_string_p, 1, 1, 0, "T if
return Qnil;
}
-DEFUN ("integerp", Fintegerp, Sintegerp, 1, 1, 0, "T if OBJECT is a number.")
+DEFUN ("integerp", Fintegerp, Sintegerp, 1, 1, 0, "T if OBJECT is an integer.")
(obj)
Lisp_Object obj;
{
@@ -326,7 +327,8 @@ DEFUN ("integer-or-marker-p", Finteger_or_marker_p, Sinteger_or_marker_p, 1, 1,
return Qnil;
}
-DEFUN ("natnump", Fnatnump, Snatnump, 1, 1, 0, "T if OBJECT is a nonnegative number.")
+DEFUN ("natnump", Fnatnump, Snatnump, 1, 1, 0,
+ "T if OBJECT is a nonnegative integer.")
(obj)
Lisp_Object obj;
{