[O] bug#29694: Quoting of consts in org-agenda-custom-commands-local-options

2017-12-13 Thread Nicolas Goaziou
Hello,

Glenn Morris  writes:

> Package: org-mode
>
> In code like
>
> (defcustom ...
>   :type '(const some-constant))
>
> it's a mistake to write 'some-constant.
>
> So I'm guessing that various instances of quoted consts in
> org-agenda-custom-commands-local-options are a mistake. Eg
>
> (const :tag "scheduled" 'scheduled)

Fixed. Thank you.

Regards,

-- 
Nicolas Goaziou





[O] bug#29694: Quoting of consts in org-agenda-custom-commands-local-options

2017-12-13 Thread Glenn Morris
Package: org-mode

In code like

(defcustom ...
  :type '(const some-constant))

it's a mistake to write 'some-constant.

So I'm guessing that various instances of quoted consts in
org-agenda-custom-commands-local-options are a mistake. Eg

(const :tag "scheduled" 'scheduled)

etc