# HG changeset patch # User stephent # Date 1056966343 0 # Node ID ddcdeb1a25c4256e2931b6707f1318b3133197ce # Parent 6e7ace1ab32d923acb1dbf18ca571692495643e5 [xemacs-hg @ 2003-06-30 09:45:42 by stephent] docs <87el1b99y6.fsf@tleepslib.sk.tsukuba.ac.jp> diff -r 6e7ace1ab32d -r ddcdeb1a25c4 src/ChangeLog --- 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 + + * data.c (eq_with_ebola_notice): Fix typo in comment. + (Ftrue_list_p): Improve docstring. + 2003-05-22 Stephen J. Turnbull * alloc.c (allocate_big_string_chars): New. diff -r 6e7ace1ab32d -r ddcdeb1a25c4 src/data.c --- 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)) {