* 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:
parent
19a1a5024b
commit
973e50c839
12
lisp/org.el
12
lisp/org.el
|
@ -14759,12 +14759,12 @@ is considered `day' (i.e. only `bracket', `day', and `after' return
|
||||||
values are possible).
|
values are possible).
|
||||||
|
|
||||||
When matching, the match groups are the following:
|
When matching, the match groups are the following:
|
||||||
group 1: year, if any
|
group 2: year, if any
|
||||||
group 2: month, if any
|
group 3: month, if any
|
||||||
group 3: day number, if any
|
group 4: day number, if any
|
||||||
group 4: day name, if any
|
group 5: day name, if any
|
||||||
group 5: hours, if any
|
group 7: hours, if any
|
||||||
group 6: minutes, if any"
|
group 8: minutes, if any"
|
||||||
(let* ((regexp
|
(let* ((regexp
|
||||||
(if extended
|
(if extended
|
||||||
(if (eq extended 'agenda)
|
(if (eq extended 'agenda)
|
||||||
|
|
Loading…
Reference in New Issue