summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2023-05-07 16:54:07 +0200
committerContext Git Mirror Bot <phg@phi-gamma.net>2023-05-07 16:54:07 +0200
commit51156ffe8b1434d9c1896f12a59554cbe877ee3d (patch)
tree9b7f63933469eb41dadca4825da317d1c2839990 /source
parentcc6d486ffa3fad4ffb698ad5ccbd5c5f4ebc6a00 (diff)
downloadcontext-51156ffe8b1434d9c1896f12a59554cbe877ee3d.tar.gz
2023-05-07 16:28:00
Diffstat (limited to 'source')
-rw-r--r--source/luametatex/source/luametatex.h2
-rw-r--r--source/luametatex/source/tex/texscanning.c12
2 files changed, 11 insertions, 3 deletions
diff --git a/source/luametatex/source/luametatex.h b/source/luametatex/source/luametatex.h
index 8d5aa4e9a..fe9893e98 100644
--- a/source/luametatex/source/luametatex.h
+++ b/source/luametatex/source/luametatex.h
@@ -92,7 +92,7 @@
# define luametatex_version 210
# define luametatex_revision 9
# define luametatex_version_string "2.10.09"
-# define luametatex_development_id 20230427
+# define luametatex_development_id 20230507
# define luametatex_name_camelcase "LuaMetaTeX"
# define luametatex_name_lowercase "luametatex"
diff --git a/source/luametatex/source/tex/texscanning.c b/source/luametatex/source/tex/texscanning.c
index c4f9b0c56..2b9d6a110 100644
--- a/source/luametatex/source/tex/texscanning.c
+++ b/source/luametatex/source/tex/texscanning.c
@@ -2433,12 +2433,20 @@ static void tex_aux_scan_dimen_unknown_unit_error(void) {
);
}
+/*tex
+ The Edith and Tove were introduced at BachoTeX 2023 and because the error message
+ was still in feet we decided to adapt it accordingly so now in addition it reports
+ different values, including Theodores little feet measured by Arthur as being roughly
+ five Ediths.
+*/
+
static void tex_aux_scan_dimen_out_of_range_error(void) {
tex_handle_error(
normal_error_type,
"Dimension too large",
- "I can't work with sizes bigger than about 575 cm (230 es). Continue and I'll\n"
- "use the largest value I can (16383 pt)."
+ "I can't work with sizes bigger than about 19 feet (45 Theodores as of 2023),\n"
+ "575 centimeters, 2300 Toves, 230 Ediths or 16383 points. Continue and I'll use\n"
+ "the largest value I can."
);
}