changeset 1551:ddcdeb1a25c4

[xemacs-hg @ 2003-06-30 09:45:42 by stephent] docs <87el1b99y6.fsf@tleepslib.sk.tsukuba.ac.jp>
author stephent
date Mon, 30 Jun 2003 09:45:43 +0000
parents 6e7ace1ab32d
children 41c5752314c9
files src/ChangeLog src/data.c
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Mon Jun 30 09:38:40 2003 +0000
+++ b/src/ChangeLog	Mon Jun 30 09:45:43 2003 +0000
@@ -1,3 +1,8 @@
+2003-06-16  Stephen J. Turnbull  <stephen@xemacs.org>
+
+	* data.c (eq_with_ebola_notice): Fix typo in comment.
+	(Ftrue_list_p): Improve docstring.
+
 2003-05-22  Stephen J. Turnbull  <stephen@xemacs.org>
 
 	* alloc.c (allocate_big_string_chars): New.
--- a/src/data.c	Mon Jun 30 09:38:40 2003 +0000
+++ b/src/data.c	Mon Jun 30 09:45:43 2003 +0000
@@ -78,7 +78,7 @@
       && ((CHARP (obj1) && INTP (obj2)) || (CHARP (obj2) && INTP (obj1))))
     {
       /* #### It would be really nice if this were a proper warning
-         instead of brain-dead print ro Qexternal_debugging_output.  */
+         instead of brain-dead print to Qexternal_debugging_output.  */
       write_c_string
 	(Qexternal_debugging_output,
 	 "Comparison between integer and character is constant nil (");
@@ -247,7 +247,7 @@
 }
 
 DEFUN ("true-list-p", Ftrue_list_p, 1, 1, 0, /*
-Return t if OBJECT is a non-dotted, i.e. nil-terminated, list.
+Return t if OBJECT is an acyclic, nil-terminated (ie, not dotted), list.
 */
        (object))
 {