diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | e-util/Makefile.am | 2 | ||||
-rw-r--r-- | e-util/e-sexp.c | 2 | ||||
-rw-r--r-- | e-util/e-sexp.h | 10 |
4 files changed, 15 insertions, 7 deletions
@@ -1,3 +1,11 @@ +2000-03-22 NotZed <NotZed@HelixCode.com> + + * e-util/e-sexp.h: Formatting cleanup. + +2000-03-07 NotZed <NotZed@HelixCode.com> + + * e-util/Makefile.am (libeutil_la_SOURCES): s-sexp.h -> e-sexp.h. + 2000-03-22 Christopher James Lahey <clahey@helixcode.com> * addressbook/Makefile.am, configure.in: Added the diff --git a/e-util/Makefile.am b/e-util/Makefile.am index 2b1098a5d2..77a6c5eec0 100644 --- a/e-util/Makefile.am +++ b/e-util/Makefile.am @@ -19,4 +19,4 @@ libeutil_la_SOURCES = \ e-xml-utils.c \ e-xml-utils.h \ e-sexp.c \ - s-sexp.h + e-sexp.h diff --git a/e-util/e-sexp.c b/e-util/e-sexp.c index b1438c1468..ad36c368bf 100644 --- a/e-util/e-sexp.c +++ b/e-util/e-sexp.c @@ -1019,7 +1019,7 @@ e_sexp_set_scope(ESExp *f, int scope) } void -e_sexp_input_text(ESExp *f, char *text, int len) +e_sexp_input_text(ESExp *f, const char *text, int len) { g_return_if_fail(FILTER_IS_SEXP(f)); g_return_if_fail(text != NULL); diff --git a/e-util/e-sexp.h b/e-util/e-sexp.h index a41fdb0b58..885a2369b9 100644 --- a/e-util/e-sexp.h +++ b/e-util/e-sexp.h @@ -94,22 +94,22 @@ struct _ESExpClass { }; guint e_sexp_get_type (void); -ESExp *e_sexp_new (void); +ESExp *e_sexp_new (void); void e_sexp_add_function (ESExp *f, int scope, char *name, ESExpFunc *func, void *data); void e_sexp_add_ifunction (ESExp *f, int scope, char *name, ESExpIFunc *func, void *data); void e_sexp_add_variable (ESExp *f, int scope, char *name, ESExpTerm *value); void e_sexp_remove_symbol (ESExp *f, int scope, char *name); int e_sexp_set_scope (ESExp *f, int scope); -void e_sexp_input_text (ESExp *f, char *text, int len); +void e_sexp_input_text (ESExp *f, const char *text, int len); void e_sexp_input_file (ESExp *f, int fd); void e_sexp_parse (ESExp *f); -ESExpResult *e_sexp_eval (ESExp *f); +ESExpResult *e_sexp_eval (ESExp *f); -ESExpResult *e_sexp_term_eval (struct _ESExp *f, struct _ESExpTerm *t); -ESExpResult *e_sexp_result_new (int type); +ESExpResult *e_sexp_term_eval (struct _ESExp *f, struct _ESExpTerm *t); +ESExpResult *e_sexp_result_new (int type); void e_sexp_result_free (struct _ESExpResult *t); #endif /* _E_SEXP_H */ |