"John A. Turner" <turner(a)blueskystudios.com> writes:
"here's the variable I want to modify - I even know the
exact name -
where in the hierarchy of death that is Options -> Customize do I need
to go to modify it?"
something analogous to C-h a
M-x customize-apropos ?
(or even just M-x customize-variable?)
Options -> Customize -> Emacs -> Data -> Compression
but the only thing there is jka-compr
That is because os-utils/custom-load.el is wrong. It has
(custom-add-loads 'compression '("jka-compr"))
is crypt++ somewhere else? is it deprecated? should I just punt
and
change to jka-compr?
I think it is just a bug. Note that crypt++ has
(progn
(defgroup crypt nil
"Handling compressed and encrypted files."
:group 'compression)
)
The progn probably confuses the custom-load scanner.
Jan