summaryrefslogtreecommitdiff
path: root/tex/context/base/core-con.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2012-05-10 17:00:00 +0200
committerHans Hagen <pragma@wxs.nl>2012-05-10 17:00:00 +0200
commit98b29c780ec554009fc3942f64fbab5e150b8e66 (patch)
tree981b24cc305cf9e3a732d3da92a0548ea970f895 /tex/context/base/core-con.lua
parentf201c94a909a677231a7dcc237c8e617b8c7292e (diff)
downloadcontext-98b29c780ec554009fc3942f64fbab5e150b8e66.tar.gz
beta 2012.05.10 17:00
Diffstat (limited to 'tex/context/base/core-con.lua')
-rw-r--r--tex/context/base/core-con.lua42
1 files changed, 21 insertions, 21 deletions
diff --git a/tex/context/base/core-con.lua b/tex/context/base/core-con.lua
index 571a850f4..e4b516e3b 100644
--- a/tex/context/base/core-con.lua
+++ b/tex/context/base/core-con.lua
@@ -764,29 +764,29 @@ local v_space = variables.space
local convert = converters.convert
-local days = {
- variables.sunday,
- variables.monday,
- variables.tuesday,
- variables.wednesday,
- variables.thursday,
- variables.friday,
- variables.saturday,
+local days = { -- not variables.sunday
+ "sunday",
+ "monday",
+ "tuesday",
+ "wednesday",
+ "thursday",
+ "friday",
+ "saturday",
}
-local months = {
- variables.january,
- variables.february,
- variables.march,
- variables.april,
- variables.may,
- variables.june,
- variables.july,
- variables.august,
- variables.september,
- variables.october,
- variables.november,
- variables.december,
+local months = { -- not variables.januari
+ "january",
+ "february",
+ "march",
+ "april",
+ "may",
+ "june",
+ "july",
+ "august",
+ "september",
+ "october",
+ "november",
+ "december",
}
function commands.dayname(n)