aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorLars Ingebrigtsen2020-01-30 02:11:09 +0100
committerLars Ingebrigtsen2020-01-30 02:11:15 +0100
commit7c7b91b9fe156b6af4643ca4aa8f4a5c4aeb915f (patch)
tree5b939400040405df08d6946620793b1a3a2237e9 /lisp
parent5db3324a7e11280437e69e27fe364dfd80b66ca2 (diff)
downloademacs-7c7b91b9fe156b6af4643ca4aa8f4a5c4aeb915f.tar.gz
emacs-7c7b91b9fe156b6af4643ca4aa8f4a5c4aeb915f.zip
Make iso8601.el understand two obsolete forms
* lisp/calendar/iso8601.el (iso8601-parse-date): Understand some obsolete formats to provide compatibility with the vCard RFC (bug#39347).
Diffstat (limited to 'lisp')
-rw-r--r--lisp/calendar/iso8601.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/calendar/iso8601.el b/lisp/calendar/iso8601.el
index e42fe0fa21f..858d561f188 100644
--- a/lisp/calendar/iso8601.el
+++ b/lisp/calendar/iso8601.el
@@ -202,6 +202,12 @@ See `decode-time' for the meaning of FORM."
202 (iso8601--decoded-time :year year 202 (iso8601--decoded-time :year year
203 :month (decoded-time-month month-day) 203 :month (decoded-time-month month-day)
204 :day (decoded-time-day month-day)))) 204 :day (decoded-time-day month-day))))
205 ;; Obsolete format with implied year: --MM
206 ((iso8601--match "--\\([0-9][0-9]\\)" string)
207 (iso8601--decoded-time :month (string-to-number (match-string 1 string))))
208 ;; Obsolete format with implied year and month: ---DD
209 ((iso8601--match "---\\([0-9][0-9]\\)" string)
210 (iso8601--decoded-time :day (string-to-number (match-string 1 string))))
205 (t 211 (t
206 (signal 'wrong-type-argument string)))) 212 (signal 'wrong-type-argument string))))
207 213