diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/calendar/iso8601.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/calendar/iso8601.el b/lisp/calendar/iso8601.el index 858d561f188..906c29b15f4 100644 --- a/lisp/calendar/iso8601.el +++ b/lisp/calendar/iso8601.el | |||
| @@ -69,6 +69,8 @@ | |||
| 69 | "\\([+-]?[0-9][0-9][0-9][0-9]\\)-\\([0-9][0-9]\\)") | 69 | "\\([+-]?[0-9][0-9][0-9][0-9]\\)-\\([0-9][0-9]\\)") |
| 70 | (defconst iso8601--outdated-date-match | 70 | (defconst iso8601--outdated-date-match |
| 71 | "--\\([0-9][0-9]\\)-?\\([0-9][0-9]\\)") | 71 | "--\\([0-9][0-9]\\)-?\\([0-9][0-9]\\)") |
| 72 | (defconst iso8601--outdated-reduced-precision-date-match | ||
| 73 | "---?\\([0-9][0-9]\\)") | ||
| 72 | (defconst iso8601--week-date-match | 74 | (defconst iso8601--week-date-match |
| 73 | "\\([+-]?[0-9][0-9][0-9][0-9]\\)-?W\\([0-9][0-9]\\)-?\\([0-9]\\)?") | 75 | "\\([+-]?[0-9][0-9][0-9][0-9]\\)-?W\\([0-9][0-9]\\)-?\\([0-9]\\)?") |
| 74 | (defconst iso8601--ordinal-date-match | 76 | (defconst iso8601--ordinal-date-match |
| @@ -79,6 +81,7 @@ | |||
| 79 | iso8601--full-date-match | 81 | iso8601--full-date-match |
| 80 | iso8601--without-day-match | 82 | iso8601--without-day-match |
| 81 | iso8601--outdated-date-match | 83 | iso8601--outdated-date-match |
| 84 | iso8601--outdated-reduced-precision-date-match | ||
| 82 | iso8601--week-date-match | 85 | iso8601--week-date-match |
| 83 | iso8601--ordinal-date-match))) | 86 | iso8601--ordinal-date-match))) |
| 84 | 87 | ||