diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-20 03:49:44 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-20 03:49:44 +0800 |
commit | 619b6c4fc129869cdc1902ac07be0e22d2f522e0 (patch) | |
tree | 8aee109261c1e2cc643f6ae19a11403eb420f24c /e-util/e-sexp.c | |
parent | 71b37b0289bb06dbe3248530f12e26a29653e008 (diff) | |
download | gsoc2013-evolution-619b6c4fc129869cdc1902ac07be0e22d2f522e0.tar gsoc2013-evolution-619b6c4fc129869cdc1902ac07be0e22d2f522e0.tar.gz gsoc2013-evolution-619b6c4fc129869cdc1902ac07be0e22d2f522e0.tar.bz2 gsoc2013-evolution-619b6c4fc129869cdc1902ac07be0e22d2f522e0.tar.lz gsoc2013-evolution-619b6c4fc129869cdc1902ac07be0e22d2f522e0.tar.xz gsoc2013-evolution-619b6c4fc129869cdc1902ac07be0e22d2f522e0.tar.zst gsoc2013-evolution-619b6c4fc129869cdc1902ac07be0e22d2f522e0.zip |
argh, make that IS_E_SEXP
svn path=/trunk/; revision=20362
Diffstat (limited to 'e-util/e-sexp.c')
-rw-r--r-- | e-util/e-sexp.c | 18 |
1 files changed, 9 insertions, 9 deletions
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)) { |