summaryrefslogtreecommitdiff
path: root/Master/texmf/tex
diff options
context:
space:
mode:
authorManuel Pégourié-Gonnard <mpg@elzevir.fr>2010-05-20 17:08:42 +0000
committerManuel Pégourié-Gonnard <mpg@elzevir.fr>2010-05-20 17:08:42 +0000
commitcce69ad0b59b059976669eb922832fd161493af8 (patch)
tree7ea283771d719501e6af00fe5df7643769331d68 /Master/texmf/tex
parent3df5aab7ab8f7c7d8b9c11ddfb4278a4f6948f7c (diff)
Implement generation of language.dat.lua by extending execute AddHyphen.
git-svn-id: svn://tug.org/texlive/trunk@18379 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/tex')
-rw-r--r--Master/texmf/tex/generic/config/language.us.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/Master/texmf/tex/generic/config/language.us.lua b/Master/texmf/tex/generic/config/language.us.lua
new file mode 100644
index 00000000000..2328b8b4916
--- /dev/null
+++ b/Master/texmf/tex/generic/config/language.us.lua
@@ -0,0 +1,25 @@
+-- $Id: $
+--[[
+language.us.dat (and the start of language.dat.lua), used by:
+- a special luatex version of hyphen.cfg (derived from the babel system);
+- a special luatex version of etex.src (from the e-TeX distributon).
+
+See luatex-hyphen.pdf (currently part of the hyph-utf8 package) for details.
+]]
+return {
+ ["english"]={
+ loader="hyphen.tex",
+ special="language0", -- should be dumped in the format
+ lefthyphenmin=2,
+ righthyphenmin=3,
+ synonyms={"usenglish","USenglish","american"},
+ },
+ ["usenglishmax"]={
+ loader="ushyphmax.tex",
+ patterns="hyph-en-US.pat.txt",
+ hyphenation="hyph-en-US.hyp.txt",
+ lefthyphenmin=2,
+ righthyphenmin=3,
+ synonyms={},
+ },
+-- END of language.us.lua