How to identify the parent group(s) of a symbol defined with a defcustom form with elisp code?
For instance I would like to use or write a function custom-group-of such that
(custom-group-of 'delete-trailing-lines) would return editing, the group symbol of the delete-trailing-list defcustom.
Does such a function exist?
At first I assumed that the symbol would have a group property I could use, but
(symbol-plist 'delete-trailing-lines) does not return a group property or something that identifies it.