aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
Diffstat (limited to 'e-util')
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/e-sexp.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index e724f696d0..a3e431c12e 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,8 @@
+2000-08-14 Peter Williams <peterw@helixcode.com>
+
+ * e-sexp.c (scanner_config): Add "-" to be an acceptable
+ first character for an operation -- yaaay subtraction!
+
2000-08-11 Peter Williams <peterw@helixcode.com>
* e-html-utils.c (e_text_to_html): Fix the tab expansion
diff --git a/e-util/e-sexp.c b/e-util/e-sexp.c
index 613f5f0c38..cc0452b6b2 100644
--- a/e-util/e-sexp.c
+++ b/e-util/e-sexp.c
@@ -92,7 +92,7 @@ static GScannerConfig scanner_config =
{
( " \t\r\n") /* cset_skip_characters */,
( G_CSET_a_2_z
- "_+<=>"
+ "_+-<=>"
G_CSET_A_2_Z) /* cset_identifier_first */,
( G_CSET_a_2_z
"_0123456789-<>"