Re: Bug in definition of org-encode-time

2022-07-24 Thread Kenneth Stuart
This appears to be an issue with the emacs native compiler, as using a build without it enabled works as expected, and using a build with the native compiler enabled but before the relevant .eln files have been built also works as expected, once they've been built the issue mentioned by Morgan on

Re: Bug in definition of org-encode-time

2022-07-24 Thread Kenneth Stuart
Yes, you're right I should have looked more closely, I also see 'Morgan Smith' has already raised the issue more clearly. Please ignore the noise ;) Ihor Radchenko writes: > Kenneth Stuart writes: > >> Macro `org-encode-time` (lisp/org-macs.el +1395) does not get defined >> for emacs >= 27.1 a

Re: Bug in definition of org-encode-time

2022-07-24 Thread Ihor Radchenko
Kenneth Stuart writes: > Macro `org-encode-time` (lisp/org-macs.el +1395) does not get defined > for emacs >= 27.1 as the top level if statement is missing its ELSE clause. Are you sure? > #+begin_src elisp > (if (version< emacs-version "27.1") > (defmacro org-encode-time (&rest time) >

Bug in definition of org-encode-time

2022-07-24 Thread Kenneth Stuart
Hello, Macro `org-encode-time` (lisp/org-macs.el +1395) does not get defined for emacs >= 27.1 as the top level if statement is missing its ELSE clause. #+begin_src elisp (if (version< emacs-version "27.1") (defmacro org-encode-time (&rest time) (if (cdr time) `(encode-time ,@