Enlightenment CVS committal
Author : mej
Project : eterm
Module : libast
Dir : eterm/libast/src
Modified Files:
obj.c regexp.c socket.c str.c tok.c url.c
Log Message:
Thu Jul 3 23:37:45 2003 Michael Jennings (mej)
Forgot to fix these before committing. :(
===================================================================
RCS file: /cvsroot/enlightenment/eterm/libast/src/obj.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- obj.c 3 Jul 2003 19:27:46 -0000 1.13
+++ obj.c 4 Jul 2003 03:38:26 -0000 1.14
@@ -29,11 +29,11 @@
* (non-object) analogue, the "null" object.
*
* @author Michael Jennings <[EMAIL PROTECTED]>
- * $Revision: 1.13 $
- * $Date: 2003/07/03 19:27:46 $
+ * $Revision: 1.14 $
+ * $Date: 2003/07/04 03:38:26 $
*/
-static const char cvs_ident[] = "$Id: obj.c,v 1.13 2003/07/03 19:27:46 mej Exp $";
+static const char cvs_ident[] = "$Id: obj.c,v 1.14 2003/07/04 03:38:26 mej Exp $";
#ifdef HAVE_CONFIG_H
# include <config.h>
@@ -111,7 +111,7 @@
char tmp[4096];
if (SPIF_OBJ_ISNULL(self)) {
- SPIF_OBJ_SHOW_NULL(obj, name, buff, indent);
+ SPIF_OBJ_SHOW_NULL(obj, name, buff, indent, tmp);
return buff;
}
===================================================================
RCS file: /cvsroot/enlightenment/eterm/libast/src/regexp.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- regexp.c 19 Feb 2003 21:10:36 -0000 1.4
+++ regexp.c 4 Jul 2003 03:38:26 -0000 1.5
@@ -21,7 +21,7 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char cvs_ident[] = "$Id: regexp.c,v 1.4 2003/02/19 21:10:36 mej Exp $";
+static const char cvs_ident[] = "$Id: regexp.c,v 1.5 2003/07/04 03:38:26 mej Exp $";
#ifdef HAVE_CONFIG_H
# include <config.h>
@@ -148,7 +148,7 @@
char tmp[4096];
if (SPIF_REGEXP_ISNULL(self)) {
- SPIF_OBJ_SHOW_NULL(regexp, name, buff, indent);
+ SPIF_OBJ_SHOW_NULL(regexp, name, buff, indent, tmp);
return buff;
}
===================================================================
RCS file: /cvsroot/enlightenment/eterm/libast/src/socket.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- socket.c 19 Feb 2003 21:10:36 -0000 1.9
+++ socket.c 4 Jul 2003 03:38:26 -0000 1.10
@@ -21,7 +21,7 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char cvs_ident[] = "$Id: socket.c,v 1.9 2003/02/19 21:10:36 mej Exp $";
+static const char cvs_ident[] = "$Id: socket.c,v 1.10 2003/07/04 03:38:26 mej Exp $";
#ifdef HAVE_CONFIG_H
# include <config.h>
@@ -155,7 +155,7 @@
char tmp[4096];
if (SPIF_SOCKET_ISNULL(self)) {
- SPIF_OBJ_SHOW_NULL(socket, name, buff, indent);
+ SPIF_OBJ_SHOW_NULL(socket, name, buff, indent, tmp);
return buff;
}
===================================================================
RCS file: /cvsroot/enlightenment/eterm/libast/src/str.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- str.c 8 Apr 2003 21:15:16 -0000 1.18
+++ str.c 4 Jul 2003 03:38:26 -0000 1.19
@@ -21,7 +21,7 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char cvs_ident[] = "$Id: str.c,v 1.18 2003/04/08 21:15:16 mej Exp $";
+static const char cvs_ident[] = "$Id: str.c,v 1.19 2003/07/04 03:38:26 mej Exp $";
#ifdef HAVE_CONFIG_H
# include <config.h>
@@ -533,7 +533,7 @@
char tmp[4096];
if (SPIF_STR_ISNULL(self)) {
- SPIF_OBJ_SHOW_NULL(str, name, buff, indent);
+ SPIF_OBJ_SHOW_NULL(str, name, buff, indent, tmp);
return buff;
}
===================================================================
RCS file: /cvsroot/enlightenment/eterm/libast/src/tok.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- tok.c 19 Feb 2003 21:10:37 -0000 1.13
+++ tok.c 4 Jul 2003 03:38:26 -0000 1.14
@@ -21,7 +21,7 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char cvs_ident[] = "$Id: tok.c,v 1.13 2003/02/19 21:10:37 mej Exp $";
+static const char cvs_ident[] = "$Id: tok.c,v 1.14 2003/07/04 03:38:26 mej Exp $";
#ifdef HAVE_CONFIG_H
# include <config.h>
@@ -249,7 +249,7 @@
char tmp[4096];
if (SPIF_TOK_ISNULL(self)) {
- SPIF_OBJ_SHOW_NULL(tok, name, buff, indent);
+ SPIF_OBJ_SHOW_NULL(tok, name, buff, indent, tmp);
return buff;
}
===================================================================
RCS file: /cvsroot/enlightenment/eterm/libast/src/url.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- url.c 19 Feb 2003 21:10:38 -0000 1.9
+++ url.c 4 Jul 2003 03:38:26 -0000 1.10
@@ -21,7 +21,7 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char cvs_ident[] = "$Id: url.c,v 1.9 2003/02/19 21:10:38 mej Exp $";
+static const char cvs_ident[] = "$Id: url.c,v 1.10 2003/07/04 03:38:26 mej Exp $";
#ifdef HAVE_CONFIG_H
# include <config.h>
@@ -172,7 +172,7 @@
char tmp[4096];
if (SPIF_URL_ISNULL(self)) {
- SPIF_OBJ_SHOW_NULL(url, name, buff, indent);
+ SPIF_OBJ_SHOW_NULL(url, name, buff, indent, tmp);
return buff;
}
-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs