Stephen J. Turnbull writes:
>>>> "Jeff" == Jeff Mincy
<jmincy(a)muniversal.com> writes:
Jeff> lisp/files.el (defvar auto-mode-alist '(...
("\\.tar\\'" . tar-mode)
I suspect this should go away, since tar-mode should do its own update
via auto-autoloads. In fact, maybe lisp/files.el should do
(defvar auto-mode-alist nil ...)
You mean let each autoload file do whatever modifications
to auto-mode-alist are necessary??? Sounds good.
Jeff> Perhaps this should be replaced with one pattern that
Jeff> matches .tar, .taz, and .tgz?
The last two cannot work without jka-compr, which some people do not
have in their environment because it can't be made buffer-local.
I'm not entirely sure what you mean by "can't be made buffer-local"?
But, yes, jka is required for tgz. So maybe one pattern
("\\.tar\\'" . tar-mode) and one pattern loaded by jka
("\\.t[ag]z\\'" . tar-mode)
The main complaint was that .taz wasn't in auto-mode-alist,
when .tgz was. And, I dislike the duplication of .tar.
-jeff