summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-07-28 08:39:19 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-07-28 08:39:19 -0700
commit49116fad12857d46afa7865be3331bdfa0944fa5 (patch)
treeb7dd878ad548de6ec84dea36a37254196b94e2bc
parentd0ab5e9f63cb2c7582b36a6061e04f27ff53abee (diff)
downloadtxr-49116fad12857d46afa7865be3331bdfa0944fa5.tar.gz
txr-49116fad12857d46afa7865be3331bdfa0944fa5.tar.bz2
txr-49116fad12857d46afa7865be3331bdfa0944fa5.zip
* txr.1: Fix bad non-floating-point constant examples.
-rw-r--r--txr.14
1 files changed, 3 insertions, 1 deletions
diff --git a/txr.1 b/txr.1
index eecc58ac..238c5c4f 100644
--- a/txr.1
+++ b/txr.1
@@ -1329,7 +1329,9 @@ Examples which are not floating-point constant tokens:
. (consing dot)
123E (the symbol 123E)
- 1.0E- (floating point 1.0 followed by symbol E-)
+ 1.0E- (syntax error: invalid floating point constant)
+ 1.0E (syntax error: invalid floating point constant)
+ 1.E (1; consing dot; symbol E)
.e (consing dot followed by symbol e)
In TXR there is a special "dotdot" token consisting of two consecutive periods.