* lisp/org.el (org-at-timestamp-p): Fix match groups in docstring

The docstring was not accurate from the times when group information
was added to it.  The patch uses the groups, as they appear in the
function code itself.
This commit is contained in:
Liu Hui 2023-08-23 14:27:21 +08:00 committed by Ihor Radchenko
parent 19a1a5024b
commit 973e50c839
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 6 additions and 6 deletions

View File

@ -14759,12 +14759,12 @@ is considered `day' (i.e. only `bracket', `day', and `after' return
values are possible).
When matching, the match groups are the following:
group 1: year, if any
group 2: month, if any
group 3: day number, if any
group 4: day name, if any
group 5: hours, if any
group 6: minutes, if any"
group 2: year, if any
group 3: month, if any
group 4: day number, if any
group 5: day name, if any
group 7: hours, if any
group 8: minutes, if any"
(let* ((regexp
(if extended
(if (eq extended 'agenda)