"Stephen J. Turnbull" <turnbull(a)sk.tsukuba.ac.jp> writes:
John> '(uniquify-buffer-name-style (quote
post-forward-angle-brackets))
John> in the variables section - great
John> however, it doesn't seem to work unless I still put a
John> (require 'uniquify)
John> before the custom-set stuff
John> that shouldn't be necessary, should it?
It shouldn't.
Custom doesn't know about package dependencies, if that's
what you
mean. So uniquify )or any other package) won't get used at all unless
it is require'd or autoloaded somewhere. Custom doesn't do that for
you at this point.
No this is a case that customize can handle (because it is so common).
I guess uniquify needs a :require in the defcustom of its main
enabling variable.
Jan