From 619b6c4fc129869cdc1902ac07be0e22d2f522e0 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Wed, 19 Mar 2003 19:49:44 +0000 Subject: argh, make that IS_E_SEXP svn path=/trunk/; revision=20362 --- e-util/e-sexp.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'e-util/e-sexp.c') diff --git a/e-util/e-sexp.c b/e-util/e-sexp.c index d1ec81b3f7..f21c6dacd3 100644 --- a/e-util/e-sexp.c +++ b/e-util/e-sexp.c @@ -1178,7 +1178,7 @@ e_sexp_add_function(ESExp *f, int scope, char *name, ESExpFunc *func, void *data { struct _ESExpSymbol *s; - g_return_if_fail (E_IS_SEXP (f)); + g_return_if_fail (IS_E_SEXP (f)); g_return_if_fail (name != NULL); s = g_malloc0(sizeof(*s)); @@ -1194,7 +1194,7 @@ e_sexp_add_ifunction(ESExp *f, int scope, char *name, ESExpIFunc *ifunc, void *d { struct _ESExpSymbol *s; - g_return_if_fail (E_IS_SEXP (f)); + g_return_if_fail (IS_E_SEXP (f)); g_return_if_fail (name != NULL); s = g_malloc0(sizeof(*s)); @@ -1210,7 +1210,7 @@ e_sexp_add_variable(ESExp *f, int scope, char *name, ESExpTerm *value) { struct _ESExpSymbol *s; - g_return_if_fail (E_IS_SEXP (f)); + g_return_if_fail (IS_E_SEXP (f)); g_return_if_fail (name != NULL); s = g_malloc0(sizeof(*s)); @@ -1226,7 +1226,7 @@ e_sexp_remove_symbol(ESExp *f, int scope, char *name) int oldscope; struct _ESExpSymbol *s; - g_return_if_fail (E_IS_SEXP (f)); + g_return_if_fail (IS_E_SEXP (f)); g_return_if_fail (name != NULL); oldscope = g_scanner_set_scope(f->scanner, scope); @@ -1242,7 +1242,7 @@ e_sexp_remove_symbol(ESExp *f, int scope, char *name) int e_sexp_set_scope(ESExp *f, int scope) { - g_return_val_if_fail (E_IS_SEXP (f), 0); + g_return_val_if_fail (IS_E_SEXP (f), 0); return g_scanner_set_scope(f->scanner, scope); } @@ -1250,7 +1250,7 @@ e_sexp_set_scope(ESExp *f, int scope) void e_sexp_input_text(ESExp *f, const char *text, int len) { - g_return_if_fail (E_IS_SEXP (f)); + g_return_if_fail (IS_E_SEXP (f)); g_return_if_fail (text != NULL); g_scanner_input_text(f->scanner, text, len); @@ -1259,7 +1259,7 @@ e_sexp_input_text(ESExp *f, const char *text, int len) void e_sexp_input_file (ESExp *f, int fd) { - g_return_if_fail (E_IS_SEXP (f)); + g_return_if_fail (IS_E_SEXP (f)); g_scanner_input_file(f->scanner, fd); } @@ -1268,7 +1268,7 @@ e_sexp_input_file (ESExp *f, int fd) int e_sexp_parse(ESExp *f) { - g_return_val_if_fail (E_IS_SEXP (f), -1); + g_return_val_if_fail (IS_E_SEXP (f), -1); if (setjmp(f->failenv)) { g_warning("Error in parsing: %s", f->error); @@ -1287,7 +1287,7 @@ e_sexp_parse(ESExp *f) struct _ESExpResult * e_sexp_eval(ESExp *f) { - g_return_val_if_fail (E_IS_SEXP (f), NULL); + g_return_val_if_fail (IS_E_SEXP (f), NULL); g_return_val_if_fail (f->tree != NULL, NULL); if (setjmp(f->failenv)) { -- cgit v1.2.3