aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNotZed <NotZed@HelixCode.com>2000-03-24 03:52:46 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-03-24 03:52:46 +0800
commitd2e39f53aef475f9747aae84dcb22baf26c72b78 (patch)
tree4431e4e0c41b5ba2b0f40bd8f4fcbb9e6879f597
parenteaaa546aca76513ce1a3cf060cc1337d57efa7d8 (diff)
downloadgsoc2013-evolution-d2e39f53aef475f9747aae84dcb22baf26c72b78.tar
gsoc2013-evolution-d2e39f53aef475f9747aae84dcb22baf26c72b78.tar.gz
gsoc2013-evolution-d2e39f53aef475f9747aae84dcb22baf26c72b78.tar.bz2
gsoc2013-evolution-d2e39f53aef475f9747aae84dcb22baf26c72b78.tar.lz
gsoc2013-evolution-d2e39f53aef475f9747aae84dcb22baf26c72b78.tar.xz
gsoc2013-evolution-d2e39f53aef475f9747aae84dcb22baf26c72b78.tar.zst
gsoc2013-evolution-d2e39f53aef475f9747aae84dcb22baf26c72b78.zip
Formatting cleanup.
2000-03-22 NotZed <NotZed@HelixCode.com> * e-util/e-sexp.h: Formatting cleanup. svn path=/trunk/; revision=2154
-rw-r--r--ChangeLog8
-rw-r--r--e-util/Makefile.am2
-rw-r--r--e-util/e-sexp.c2
-rw-r--r--e-util/e-sexp.h10
4 files changed, 15 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 750a58baed..1a6a1044e9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 */