nilninull writes: > The Emacs customization system is unable to display some parameter types > for the variable `org-agenda-category-icon-alist'. > > I encountered this bug when I specified :width and :height. > > :width and :height use integers, but the symbol type doesn't parse it well. > > > diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el > index 90129b23e..b6e92c643 100644 > --- a/lisp/org-agenda.el > +++ b/lisp/org-agenda.el > @@ -2008,7 +2008,7 @@ category, you can use: > (string :tag "File or data") > (symbol :tag "Type") > (boolean :tag "Data?") > - (repeat :tag "Extra image properties" :inline t > symbol)) > + (repeat :tag "Extra image properties" :inline t sexp)) > (list :tag "Display properties" sexp))))
Looks like a good fix to me. Would you like to wrap this into a patch with a commit message? (Information about contributing is at <https://orgmode.org/worg/org-contribute.html>.) Thanks.