changeset 949:7a35465d73bc

[xemacs-hg @ 2002-08-02 15:15:42 by youngs] 2002-08-03 Brian A Palmer <bpalmer@rescomp.Stanford.EDU> * fns.c (Fsplit_string_by_char): Make 2nd arg SEPCHAR a required argument.
author youngs
date Fri, 02 Aug 2002 15:15:47 +0000
parents 665fe33715d6
children c1a972caf831
files src/ChangeLog src/fns.c
diffstat 2 files changed, 12 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Fri Aug 02 15:01:10 2002 +0000
+++ b/src/ChangeLog	Fri Aug 02 15:15:47 2002 +0000
@@ -1,3 +1,13 @@
+2002-08-03  Brian A Palmer  <bpalmer@rescomp.Stanford.EDU>
+
+	* fns.c (Fsplit_string_by_char): Make 2nd arg SEPCHAR a required
+	argument. 
+
+2002-08-03  Steve Youngs  <youngs@xemacs.org>
+
+	* objects-gtk.c: Fix '--with-mule' '--with-gtk' builds.
+	From Vaclav Barta <vbar@comp.cz>.
+
 2002-08-02  Marcus Crestani  <crestani@informatik.uni-tuebingen.de>
 
 	* postgresql.c: Add dumpable-flag to pgconn and pgresult for
@@ -28,6 +38,7 @@
 	* alloc.c: Fix various kkcc-related nits that show up in MULE and
 	union-type builds.
 
+>>>>>>> 1.488
 2002-07-31  David Bush  <David.Bush@intel.com>
 
 	* events.c (event_equal): Correct comparison in MS Windows
--- a/src/fns.c	Fri Aug 02 15:01:10 2002 +0000
+++ b/src/fns.c	Fri Aug 02 15:15:47 2002 +0000
@@ -1106,7 +1106,7 @@
 /* Ben thinks this function should not exist or be exported to Lisp.
    We use it to define split-path-string in subr.el (not!).  */
 
-DEFUN ("split-string-by-char", Fsplit_string_by_char, 1, 2, 0, /*
+DEFUN ("split-string-by-char", Fsplit_string_by_char, 2, 2, 0, /*
 Split STRING into a list of substrings originally separated by SEPCHAR.
 */
        (string, sepchar))