unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#541: Trouble getting archive files to load
@ 2008-07-07  1:16 Davin Pearson
  2008-07-07 10:53 ` Jason Rumney
  0 siblings, 1 reply; 4+ messages in thread
From: Davin Pearson @ 2008-07-07  1:16 UTC (permalink / raw)
  To: bug-gnu-emacs

Please write in English if possible, because the Emacs maintainers
usually do not have translators to read other languages for them.

Running Emacs with -Q and -q and executing the following code:

(add-to-list 'auto-mode-alist
'("\\.\\(arc\\|zip\\|tar\\|gz\\|lzh\\|zoo\\)\\'" . archive-mode))

gives the following error when I try to load a *.tar or *.tar.gz file:

File mode specification error: (error "Buffer format not recognized")

It works fine loading *.zip files however.

If Emacs crashed, and you have the Emacs process in the gdb debugger,
please include the output from the following gdb commands:
    `bt full' and `xbacktrace'.
If you would like to further debug the crash, please read the file
d:/Program Files/emacs-22.2/etc/DEBUG for instructions.


In GNU Emacs 22.2.1 (i386-mingw-nt5.1.2600)
 of 2008-03-27 on RELEASE
Windowing system distributor `Microsoft Corp.', version 5.1.2600
configured using `configure --with-gcc (3.4)'

Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: ENZ
  locale-coding-system: cp1252
  default-enable-multibyte-characters: t

Major mode: Dired by name

Minor modes in effect:
  encoded-kbd-mode: t
  tooltip-mode: t
  tool-bar-mode: t
  mouse-wheel-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  unify-8859-on-encoding-mode: t
  utf-translate-cjk-mode: t
  auto-compression-mode: t
  line-number-mode: t

Recent input:
<help-echo> <help-echo> <help-echo> <help-echo> C-x
C-f <M-backspace> <M-backspace> <M-backspace> <M-backspace>
<M-backspace> <M-backspace> h o <tab> / . <backspace>
<backspace> / . <backspace> <backspace> . e m <tab>
<return> <down> <down> <down> <down> <down> <down>
<down> <down> <down> <down> <down> <down> <down> <down>
<down> <down> <down> <down> <down> <down> <down> <down>
<down> <down> <down> <down> <down> <down> <down> <down>
<down> <down> <down> <down> <down> <down> <down> <down>
<down> <down> <down> <down> <down> <up> <up> <up> <right>
<right> <right> <right> <right> <right> <right> <right>
<right> <right> <right> <right> <end> <left> <left>
<left> <left> <left> <left> <left> <left> <left> <left>
<left> <left> <left> <left> <left> <left> <up> <left>
<left> <down> <left> <left> <left> C-k C-x u <escape>
<escape> <escape> <up> M-: C-y <return> C-d C-x C-f
b a <tab> <return> <return> C-x k <return> <down> <down>
<return> C-x k <return> M-x r e p r <tab> <backspace>
r <tab> <backspace> o r <tab> <return>

Recent messages:
Loading dired...
Loading regexp-opt...done
Loading dired...done
Loading arc-mode...done
File mode specification error: (error "Buffer format not recognized")
Loading jka-compr...done
uncompressing Carls-Latex-Stuff-20050828-233128.tar.gz...done
Note: file is write protected
File mode specification error: (error "Buffer format not recognized")
Loading emacsbug...done


-- 
Sincerely and kindest regards, Davin.
Davin Pearson http://www.davinpearson.com







^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#541: Trouble getting archive files to load
  2008-07-07  1:16 bug#541: Trouble getting archive files to load Davin Pearson
@ 2008-07-07 10:53 ` Jason Rumney
  2008-07-07 11:05   ` Processed: " Emacs bug Tracking System
  2011-07-09  5:35   ` Glenn Morris
  0 siblings, 2 replies; 4+ messages in thread
From: Jason Rumney @ 2008-07-07 10:53 UTC (permalink / raw)
  To: Davin Pearson, 541

tags 541 wontfix
thanks

Davin Pearson wrote:

> Running Emacs with -Q and -q and executing the following code:
> 
> (add-to-list 'auto-mode-alist
> '("\\.\\(arc\\|zip\\|tar\\|gz\\|lzh\\|zoo\\)\\'" . archive-mode))
> 
> gives the following error when I try to load a *.tar or *.tar.gz file:
> 
> File mode specification error: (error "Buffer format not recognized")

Archive mode is not supposed to handle those formats. gz is handled by
jka-compr, which is enabled by default, and tar is handled by tar-mode,
also enabled by default. archive-mode is enabled by default for .arc,
.zip, .lzh and .zoo files as well as other formats, so removing that
line from your .emacs should make things work as desired.







^ permalink raw reply	[flat|nested] 4+ messages in thread

* Processed: Re: bug#541: Trouble getting archive files to load
  2008-07-07 10:53 ` Jason Rumney
@ 2008-07-07 11:05   ` Emacs bug Tracking System
  2011-07-09  5:35   ` Glenn Morris
  1 sibling, 0 replies; 4+ messages in thread
From: Emacs bug Tracking System @ 2008-07-07 11:05 UTC (permalink / raw)
  To: Jason Rumney; +Cc: Emacs Bugs

Processing commands for control@emacsbugs.donarmstrong.com:

> tags 541 wontfix
bug#541: Trouble getting archive files to load
There were no tags set.
Tags added: wontfix

> thanks
Stopping processing here.

Please contact me if you need assistance.

Don Armstrong
(administrator, Emacs bugs database)





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#541: Trouble getting archive files to load
  2008-07-07 10:53 ` Jason Rumney
  2008-07-07 11:05   ` Processed: " Emacs bug Tracking System
@ 2011-07-09  5:35   ` Glenn Morris
  1 sibling, 0 replies; 4+ messages in thread
From: Glenn Morris @ 2011-07-09  5:35 UTC (permalink / raw)
  To: 541-done


I don't see a need to keep open this particular report, which was marked
"wontfix" some time ago.





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-07-09  5:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-07  1:16 bug#541: Trouble getting archive files to load Davin Pearson
2008-07-07 10:53 ` Jason Rumney
2008-07-07 11:05   ` Processed: " Emacs bug Tracking System
2011-07-09  5:35   ` Glenn Morris

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).