Gregory Neil Shapiro writes:
When visiting files using version control (SCCS) under xemacs 20.4,
the
modeline would indicate the version control system in use and the current
version of the file. I could use C-x C-q to check out/in files, etc.
Under 21.0-b48, this is no longer the case. I need to manually
(require 'vc)
to get all that back. Is this change intentional? I didn't see anything
in the NEWS file.
You can (require 'vc-hooks) instead. I noticed the change in the
change logs but I don't know the reason for it. A likely reason is
to get rid of the requirement that VC be installed before XEmacs is
dumped. Semms like (require 'vc-hooks) could be (crockishly) put
into vc/auto-autoloads.el to get the same effect as dumping
vc-hooks. If you consider auto-autoloads.el as a general place
for putting early init stuff instead of just autoloads then it
loses its dry, crockish flavor.