emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Timestamp with repeater interval AND END DATE?
@ 2022-05-31 13:46 Angel de Vicente
  2022-05-31 14:03 ` Eric S Fraga
  0 siblings, 1 reply; 14+ messages in thread
From: Angel de Vicente @ 2022-05-31 13:46 UTC (permalink / raw)
  To: emacs-orgmode

Hello,

I have plenty of timestamps with a repeater interval
(https://orgmode.org/manual/Timestamps.html), but on reading the manual
I couldn't find how to specify an END DATE, so for example, "prepare
homework for students" gets repeated every week, but not beyond June
(the last month of the school year here). Did I miss something in the
manual?

Thanks,
-- 
Ángel de Vicente

Research Software Engineer (Supercomputing and BigData)
Instituto de Astrofísica de Canarias (https://www.iac.es/en)



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Timestamp with repeater interval AND END DATE?
  2022-05-31 13:46 Timestamp with repeater interval AND END DATE? Angel de Vicente
@ 2022-05-31 14:03 ` Eric S Fraga
  2022-05-31 14:36   ` Angel de Vicente
  0 siblings, 1 reply; 14+ messages in thread
From: Eric S Fraga @ 2022-05-31 14:03 UTC (permalink / raw)
  To: Angel de Vicente; +Cc: emacs-orgmode

On Tuesday, 31 May 2022 at 14:46, Angel de Vicente wrote:
> Did I miss something in the manual?

No, you did not miss anything.  What you want cannot be done with a
single time stamp.  Instead, there are two alternatives:

1. use a diary s-exp (see info manual) which does allow this or
2. use org-clone-subtree-with-time-shift: create a single entry and then
   copy it as many times as desired.

HTH,
eric

-- 
: Eric S Fraga, with org release_9.5.3-511-g8e69ad in Emacs 29.0.50


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Timestamp with repeater interval AND END DATE?
  2022-05-31 14:03 ` Eric S Fraga
@ 2022-05-31 14:36   ` Angel de Vicente
  2022-06-10  8:44     ` Robert Pluim
  0 siblings, 1 reply; 14+ messages in thread
From: Angel de Vicente @ 2022-05-31 14:36 UTC (permalink / raw)
  To: emacs-orgmode

Hello,

Eric S Fraga <e.fraga@ucl.ac.uk> writes:

> On Tuesday, 31 May 2022 at 14:46, Angel de Vicente wrote:
>> Did I miss something in the manual?
>
> No, you did not miss anything.  What you want cannot be done with a
> single time stamp.  Instead, there are two alternatives:
>
> 1. use a diary s-exp (see info manual) which does allow this or
> 2. use org-clone-subtree-with-time-shift: create a single entry and then
>    copy it as many times as desired.

in case it can be useful to somebody else, I ended up with an entry like
this, that does the job:

,----
| *** Badminton 20:45-22:15
|     <%%(and (diary-cyclic 7 2022 05 30) (diary-block 2022 05 30 2022 06 30))>
`----

(the s-exp entry above assumes 'calendar-date-style' is set to 'iso')

Cheers,
-- 
Ángel de Vicente

Research Software Engineer (Supercomputing and BigData)
Instituto de Astrofísica de Canarias (https://www.iac.es/en)



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Timestamp with repeater interval AND END DATE?
  2022-05-31 14:36   ` Angel de Vicente
@ 2022-06-10  8:44     ` Robert Pluim
  2022-06-10 11:27       ` Angel de Vicente
  0 siblings, 1 reply; 14+ messages in thread
From: Robert Pluim @ 2022-06-10  8:44 UTC (permalink / raw)
  To: Angel de Vicente; +Cc: emacs-orgmode

>>>>> On Tue, 31 May 2022 15:36:01 +0100, Angel de Vicente <angel.vicente.garrido@gmail.com> said:
    Angel> ,----
    Angel> | *** Badminton 20:45-22:15
    Angel> |     <%%(and (diary-cyclic 7 2022 05 30) (diary-block 2022 05 30 2022 06 30))>
    Angel> `----

    Angel> (the s-exp entry above assumes 'calendar-date-style' is set to 'iso')

If you use `org-cyclic' and `org-block' you donʼt need to worry about
that anymore.

Robert
-- 


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Timestamp with repeater interval AND END DATE?
  2022-06-10  8:44     ` Robert Pluim
@ 2022-06-10 11:27       ` Angel de Vicente
  2022-06-10 12:45         ` Robert Pluim
  0 siblings, 1 reply; 14+ messages in thread
From: Angel de Vicente @ 2022-06-10 11:27 UTC (permalink / raw)
  To: emacs-orgmode

Hello,

Robert Pluim <rpluim@gmail.com> writes:

>>>>>> On Tue, 31 May 2022 15:36:01 +0100, Angel de Vicente <angel.vicente.garrido@gmail.com> said:
>     Angel> ,----
>     Angel> | *** Badminton 20:45-22:15
>     Angel> |     <%%(and (diary-cyclic 7 2022 05 30) (diary-block 2022 05 30 2022 06 30))>
>     Angel> `----
>
>     Angel> (the s-exp entry above assumes 'calendar-date-style' is set to 'iso')
>
> If you use `org-cyclic' and `org-block' you donʼt need to worry about
> that anymore.

I tried (briefly :-)) to look for some place where org-cyclic and
org-block are documented, but failed. But I tried, and they do work
nicely. So they always assume 'iso' style regardless of the value of
'calendar-date-style'? 

Thanks,
-- 
Ángel de Vicente 

Research Software Engineer (Supercomputing and BigData)



^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Timestamp with repeater interval AND END DATE?
  2022-06-10 11:27       ` Angel de Vicente
@ 2022-06-10 12:45         ` Robert Pluim
  2022-06-10 12:59           ` Ihor Radchenko
  0 siblings, 1 reply; 14+ messages in thread
From: Robert Pluim @ 2022-06-10 12:45 UTC (permalink / raw)
  To: Angel de Vicente; +Cc: emacs-orgmode

>>>>> On Fri, 10 Jun 2022 12:27:23 +0100, Angel de Vicente <angel.vicente.garrido@gmail.com> said:

    >> If you use `org-cyclic' and `org-block' you donʼt need to worry about
    >> that anymore.

    Angel> I tried (briefly :-)) to look for some place where org-cyclic and
    Angel> org-block are documented, but failed. But I tried, and they do work
    Angel> nicely. So they always assume 'iso' style regardless of the value of
    Angel> 'calendar-date-style'? 

Yes. They donʼt appear in the info documentation anywhere that I can
see. Thereʼs a footnote in (info "(org) Weekly/daily agenda") about
`org-anniversary' and `org-date' though.

I can send a patch against the org-mode repository main branch, or fix
it directly in the emacs repo. What's the preferred workflow for this
kind of change?

Robert
-- 


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Timestamp with repeater interval AND END DATE?
  2022-06-10 12:45         ` Robert Pluim
@ 2022-06-10 12:59           ` Ihor Radchenko
  2022-06-10 14:24             ` Robert Pluim
  2022-06-10 14:37             ` Ambiguity in commit message conventions for org Robert Pluim
  0 siblings, 2 replies; 14+ messages in thread
From: Ihor Radchenko @ 2022-06-10 12:59 UTC (permalink / raw)
  To: Robert Pluim; +Cc: Angel de Vicente, emacs-orgmode

Robert Pluim <rpluim@gmail.com> writes:

> I can send a patch against the org-mode repository main branch, or fix
> it directly in the emacs repo. What's the preferred workflow for this
> kind of change?

Just submit a patch here. Against the Org mode repository.
Org mode development happens in Org mode repository and in this mailing
list, not in Emacs repo.

See https://orgmode.org/worg/org-contribute.html

Also, if you think that any of the extra diary functions from Org can be
useful for Emacs, you can propose to include them directly into
diary-lib.el via M-x submit-emacs-patch (Emacs >=28) or
M-x report-emacs-bug. The latter is also for patches, unlike the command
name suggests.

Best,
Ihor


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Timestamp with repeater interval AND END DATE?
  2022-06-10 12:59           ` Ihor Radchenko
@ 2022-06-10 14:24             ` Robert Pluim
  2022-06-10 15:03               ` Ihor Radchenko
  2022-06-10 14:37             ` Ambiguity in commit message conventions for org Robert Pluim
  1 sibling, 1 reply; 14+ messages in thread
From: Robert Pluim @ 2022-06-10 14:24 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: Angel de Vicente, emacs-orgmode

>>>>> On Fri, 10 Jun 2022 20:59:22 +0800, Ihor Radchenko <yantar92@gmail.com> said:

    Ihor> Robert Pluim <rpluim@gmail.com> writes:
    >> I can send a patch against the org-mode repository main branch, or fix
    >> it directly in the emacs repo. What's the preferred workflow for this
    >> kind of change?

    Ihor> Just submit a patch here. Against the Org mode repository.
    Ihor> Org mode development happens in Org mode repository and in this mailing
    Ihor> list, not in Emacs repo.

Ok. I will, or rather I would, but Iʼm obviously doing something wrong
when building org:

  rltb:~/repos/org-mode (main)> cat local.mk
  EMACS   := /home/rpluim/repos/emacs-28/src/emacs
  rltb:~/repos/org-mode (main)> git pull
  Already up to date.
  rltb:~/repos/org-mode (main)> git status
  On branch main
  Your branch is up to date with 'origin/main'.

  nothing to commit, working tree clean
  rltb:~/repos/org-mode (main)> make doc
  make -C doc info
  make[1]: Entering directory '/home/rpluim/repos/org-mode/doc'
  /home/rpluim/repos/emacs-28/src/emacs  -Q -batch --eval '(setq vc-handled-backends nil org-startup-folded nil org-element-cache-persistent nil)'                                      \
    --eval '(add-to-list `load-path "../lisp")' \
    --eval '(load "../mk/org-fixup.el")'        \
    --eval '(org-make-manual)'
  Loading /home/rpluim/repos/org-mode/mk/org-fixup.el (source)...
  Debugger entered--Lisp error: (wrong-type-argument listp "Packages that conflict with Org mode")
    org-element-secondary-p(#("Conflicts" 0 9 (:parent (headline (:raw-value "Packages that conflict with Org mode" :begin 739020 :end 744524 :pre-blank 0 :contents-begin 739061 :contents-end 744523 :robust-begin 739148 :robust-end 744521 :level 3 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 739020 :DESCRIPTION "Packages that lead to conflicts." :ALT_TITLE "Conflicts" :title "Packages that conflict with Org mode" :parent (headline (:raw-value "Interaction with Other Packages" :begin 735540 :end 744524 :pre-blank 0 :contents-begin 735575 :contents-end 744523 :robust-begin 735658
  :robust-end 744521 :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 735540 :DESCRIPTION "With other Emacs packages." :ALT_TITLE "Interaction" :title "Interaction with Other Packages" :parent ... ...) (section ... ... ...) (headline ... ...) #4) ...) (section (:begin 739061 :end 744524 :contents-begin 739061 :contents-end 744523 :robust-begin 739061
  :robust-end 744521 :post-blank 1 :post-affiliated 739061 :mode section :granularity nil :parent #4) (keyword (:key "CINDEX" :value "shift-selection" :begin 739150 :end 739176 :post-blank 0 :post-affiliated 739150 :mode nil :granularity nil :parent #7)) (keyword (:key "VINDEX" :value "org-support-shift-select" :begin 739176 :end 739211 :post-blank 0 :post-affiliated 739176 :mode nil :granularity nil :parent #7)) (paragraph (:begin 739211 :end 739889 :contents-begin 739211 :contents-end 739888 :post-blank 1 :post-affiliated 739211 :mode nil :granularity nil :parent #7) #("In Emacs, shift-selection combines motions o..." 0 155 ...) (export-snippet ...) #("S-<cursor>" 0 10 ...) (export-snippet ...) #("commands to change timestamps,\nTODO keywords..." 0 93 ...) (export-snippet ...) #("S-<cursor>" 0 10 ...) (export-snippet ...) #("commands outside of specific contexts do not..." 0 82 ...) (code ...) #

    Ihor> See https://orgmode.org/worg/org-contribute.html

    Ihor> Also, if you think that any of the extra diary functions from Org can be
    Ihor> useful for Emacs, you can propose to include them directly into
    Ihor> diary-lib.el via M-x submit-emacs-patch (Emacs >=28) or
    Ihor> M-x report-emacs-bug. The latter is also for patches, unlike the command
    Ihor> name suggests.

Iʼll put that on my list (Iʼm guessing you'd want compatibility shims
in org-mode if I did that).

Robert
-- 


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Ambiguity in commit message conventions for org
  2022-06-10 12:59           ` Ihor Radchenko
  2022-06-10 14:24             ` Robert Pluim
@ 2022-06-10 14:37             ` Robert Pluim
  2022-06-10 15:11               ` Ihor Radchenko
  1 sibling, 1 reply; 14+ messages in thread
From: Robert Pluim @ 2022-06-10 14:37 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode

>>>>> On Fri, 10 Jun 2022 20:59:22 +0800, Ihor Radchenko <yantar92@gmail.com> said:

    Ihor> Just submit a patch here. Against the Org mode repository.
    Ihor> Org mode development happens in Org mode repository and in this mailing
    Ihor> list, not in Emacs repo.

    Ihor> See https://orgmode.org/worg/org-contribute.html

Those conventions are slightly different than Emacs', with one point
of ambiguity. They say

    * Line 1 of the commit message should always be a short description of
     the overall change. Line 1 does not get a dot at the end and does not
     start with a star. Generally, it starts with the filename that has been
     changed, followed by a colon, like this: 

    lisp/ol-man.el: Restore file
    * Line 2 is an empty line.
    * Line 3 starts the ChangeLog entry. It looks like this: 

    * org-timer.el (org-timer-cancel-timer, org-timer-stop): Enhance
    message.

The summary line contains the 'lisp' directory, but the ChangeLog entry
doesnʼt, and in the example just after itʼs the other way around:

    Here is an example for such a message: 


    org-capture.el: Fix the case of using a template file

    * lisp/org-capture.el (org-capture-set-plist): Make sure txt is a
    string before calling `string-match'.
    (org-capture-templates): Fix customization type.

    * doc/org.texi (Capture): Document using a file for a template.

Thanks

Robert
-- 


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Timestamp with repeater interval AND END DATE?
  2022-06-10 14:24             ` Robert Pluim
@ 2022-06-10 15:03               ` Ihor Radchenko
  2022-06-10 15:59                 ` Robert Pluim
  0 siblings, 1 reply; 14+ messages in thread
From: Ihor Radchenko @ 2022-06-10 15:03 UTC (permalink / raw)
  To: Robert Pluim; +Cc: Angel de Vicente, emacs-orgmode

Robert Pluim <rpluim@gmail.com> writes:

> Ok. I will, or rather I would, but Iʼm obviously doing something wrong
> when building org:
>
>   Debugger entered--Lisp error: (wrong-type-argument listp "Packages that conflict with Org mode")
>     org-element-secondary-p(#("Conflicts" 0 9 (:parent (headline (:raw-value "Packages that conflict with Org mode" :begin 739020 :end 744524 :pre-blank 0 :contents-begin 739061 :contents-end 744523 :robust-begin 739148 :robust-end 744521 :level 3 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 739020 :DESCRIPTION "Packages that lead to conflicts." :ALT_TITLE "Conflicts" :title "Packages that conflict with Org mode" :parent (headline (:raw-value "Interaction with Other Packages" :begin 735540 :end 744524 :pre-blank 0 :contents-begin 735575 :contents-end 744523 :robust-begin 735658

Oops. It was not caught by tests. Fixed on main now. You can pull the
latest main. The error should disappear.

Best,
Ihor


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Ambiguity in commit message conventions for org
  2022-06-10 14:37             ` Ambiguity in commit message conventions for org Robert Pluim
@ 2022-06-10 15:11               ` Ihor Radchenko
  2022-06-10 16:02                 ` Robert Pluim
  0 siblings, 1 reply; 14+ messages in thread
From: Ihor Radchenko @ 2022-06-10 15:11 UTC (permalink / raw)
  To: Robert Pluim; +Cc: emacs-orgmode

Robert Pluim <rpluim@gmail.com> writes:

>     Ihor> See https://orgmode.org/worg/org-contribute.html
>
> Those conventions are slightly different than Emacs', with one point
> of ambiguity. They say
> ...
>
> The summary line contains the 'lisp' directory, but the ChangeLog entry
> doesnʼt, and in the example just after itʼs the other way around:

You are right. The example is indeed a bit confusing. The main
difference between Emacs' and Org's converntions is in summary line. We
are less formal about and prefer shorter summaries. You can drop the
directory or even file name if it saves space and does not create
amiguity.

The most common types for summary lines are:
org-library.el: Changed this
library-name: Changed that
function-name: Fixed
variable-name: ...

Examples:

org-lint: Fix invocation with C-u prefix argument
org-cycle-hide-block-startup: Fix docstring
manual: Fix function name and key index reference

You can also refer to
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/log/

Best,
Ihor


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Timestamp with repeater interval AND END DATE?
  2022-06-10 15:03               ` Ihor Radchenko
@ 2022-06-10 15:59                 ` Robert Pluim
  2022-06-11  4:51                   ` Ihor Radchenko
  0 siblings, 1 reply; 14+ messages in thread
From: Robert Pluim @ 2022-06-10 15:59 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: Angel de Vicente, emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1308 bytes --]

>>>>> On Fri, 10 Jun 2022 23:03:38 +0800, Ihor Radchenko <yantar92@gmail.com> said:

    Ihor> Robert Pluim <rpluim@gmail.com> writes:
    >> Ok. I will, or rather I would, but Iʼm obviously doing something wrong
    >> when building org:
    >> 
    >> Debugger entered--Lisp error: (wrong-type-argument listp "Packages that conflict with Org mode")
    >> org-element-secondary-p(#("Conflicts" 0 9 (:parent (headline (:raw-value "Packages that conflict with Org mode" :begin 739020 :end 744524 :pre-blank 0 :contents-begin 739061 :contents-end 744523 :robust-begin 739148 :robust-end 744521 :level 3 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 739020 :DESCRIPTION "Packages that lead to conflicts." :ALT_TITLE "Conflicts" :title "Packages that conflict with Org mode" :parent (headline (:raw-value "Interaction with Other Packages" :begin 735540 :end 744524 :pre-blank 0 :contents-begin 735575 :contents-end 744523 :robust-begin 735658

    Ihor> Oops. It was not caught by tests. Fixed on main now. You can pull the
    Ihor> latest main. The error should disappear.

Working fine now, thanks. Doc patch attached (I have copyright
assignment on file for Emacs).

Thanks

Robert
-- 



[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-doc-org-manual.org-Reference-org-cyclic-and-org-bloc.patch --]
[-- Type: text/x-diff, Size: 1990 bytes --]

From 5437667a97dcd03a2993bfde93b0253590fae74a Mon Sep 17 00:00:00 2001
From: Robert Pluim <rpluim@gmail.com>
Date: Fri, 10 Jun 2022 17:53:12 +0200
Subject: [PATCH] doc/org-manual.org: Reference org-cyclic and org-block

* doc/org-manual.org (Footnotes): Add org-cyclic and org-block to note
about org diary functions.  Add function indices for org-{date,
anniversary, cyclic, block}.
---
 doc/org-manual.org | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/doc/org-manual.org b/doc/org-manual.org
index 32a45f884..d560562c5 100644
--- a/doc/org-manual.org
+++ b/doc/org-manual.org
@@ -22046,6 +22046,10 @@ * Footnotes
 However, any date inserted or modified by Org adds that day name, for
 reading convenience.
 
+#+findex: org-date
+#+findex: org-anniversary
+#+findex: org-cyclic
+#+findex: org-block
 [fn:60] When working with the standard diary expression functions, you
 need to be very careful with the order of the arguments.  That order
 depends evilly on the variable ~calendar-date-style~.  For example, to
@@ -22053,10 +22057,11 @@ * Footnotes
 =(diary-date 12 1 2005)= or =(diary-date 1 12 2005)= or =(diary-date
 2005 12 1)=, depending on the settings.  This has been the source of
 much confusion.  Org mode users can resort to special versions of
-these functions like ~org-date~ or ~org-anniversary~.  These work just
-like the corresponding ~diary-~ functions, but with stable ISO order
-of arguments (year, month, day) wherever applicable, independent of
-the value of ~calendar-date-style~.
+these functions, namely ~org-date~, ~org-anniversary~, ~org-cyclic, and
+~org-block~.  These work just like the corresponding ~diary-~
+functions, but with stable ISO order of arguments (year, month, day)
+wherever applicable, independent of the value of
+~calendar-date-style~.
 
 [fn:61] See the variable ~org-read-date-prefer-future~.  You may set
 that variable to the symbol ~time~ to even make a time before now
-- 
2.35.1.607.gf01e51a7cf


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* Re: Ambiguity in commit message conventions for org
  2022-06-10 15:11               ` Ihor Radchenko
@ 2022-06-10 16:02                 ` Robert Pluim
  0 siblings, 0 replies; 14+ messages in thread
From: Robert Pluim @ 2022-06-10 16:02 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode

>>>>> On Fri, 10 Jun 2022 23:11:09 +0800, Ihor Radchenko <yantar92@gmail.com> said:

    Ihor> Robert Pluim <rpluim@gmail.com> writes:
    Ihor> See https://orgmode.org/worg/org-contribute.html
    >> 
    >> Those conventions are slightly different than Emacs', with one point
    >> of ambiguity. They say
    >> ...
    >> 
    >> The summary line contains the 'lisp' directory, but the ChangeLog entry
    >> doesnʼt, and in the example just after itʼs the other way around:

    Ihor> You are right. The example is indeed a bit confusing. The main
    Ihor> difference between Emacs' and Org's converntions is in summary line. We
    Ihor> are less formal about and prefer shorter summaries. You can drop the
    Ihor> directory or even file name if it saves space and does not create
    Ihor> amiguity.

Emacs convention is to not mention the file name in the summary,
unless itʼs a one-file change, in which case you put the filename with
'* ' prepended (although some contributors prefer not to do that).

I went for 'dir/filename' in the summary, since Iʼm lazy and can copy
that from the ChangeLog commit message :-)

Robert
-- 


^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: Timestamp with repeater interval AND END DATE?
  2022-06-10 15:59                 ` Robert Pluim
@ 2022-06-11  4:51                   ` Ihor Radchenko
  0 siblings, 0 replies; 14+ messages in thread
From: Ihor Radchenko @ 2022-06-11  4:51 UTC (permalink / raw)
  To: Robert Pluim; +Cc: Angel de Vicente, emacs-orgmode

Robert Pluim <rpluim@gmail.com> writes:

>     Ihor> Oops. It was not caught by tests. Fixed on main now. You can pull the
>     Ihor> latest main. The error should disappear.
>
> Working fine now, thanks. Doc patch attached (I have copyright
> assignment on file for Emacs).

Thanks!
Applied onto main via a8b32247d.
I amended the commit message adding quotes around function names (`symbol').

Best,
Ihor


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2022-06-11  4:51 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-31 13:46 Timestamp with repeater interval AND END DATE? Angel de Vicente
2022-05-31 14:03 ` Eric S Fraga
2022-05-31 14:36   ` Angel de Vicente
2022-06-10  8:44     ` Robert Pluim
2022-06-10 11:27       ` Angel de Vicente
2022-06-10 12:45         ` Robert Pluim
2022-06-10 12:59           ` Ihor Radchenko
2022-06-10 14:24             ` Robert Pluim
2022-06-10 15:03               ` Ihor Radchenko
2022-06-10 15:59                 ` Robert Pluim
2022-06-11  4:51                   ` Ihor Radchenko
2022-06-10 14:37             ` Ambiguity in commit message conventions for org Robert Pluim
2022-06-10 15:11               ` Ihor Radchenko
2022-06-10 16:02                 ` Robert Pluim

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).