changeset 18690:df8ab82c73f3

(format-alist): Don't handle compression here.
author Richard M. Stallman <rms@gnu.org>
date Wed, 09 Jul 1997 04:20:46 +0000
parents d11c2164a6af
children 678528c8dd4f
files lisp/format.el
diffstat 1 files changed, 2 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/format.el	Wed Jul 09 02:47:07 1997 +0000
+++ b/lisp/format.el	Wed Jul 09 04:20:46 1997 +0000
@@ -64,10 +64,7 @@
 (put 'buffer-file-format 'permanent-local t)
 
 (defvar format-alist 
-  '((compressed "compressed" 
-	   "^\037\213"                       ; magic number for gzip
-	   "gunzip -f" "gzip -f" t nil)
-    (text/enriched "Extended MIME text/enriched format."
+  '((text/enriched "Extended MIME text/enriched format."
 		   "Content-[Tt]ype:[ \t]*text/enriched"
 		   enriched-decode enriched-encode t enriched-mode)
     (plain "ISO 8859-1 standard format, no text properties."
@@ -106,7 +103,7 @@
 	   iso-german iso-cvt-read-only t nil)
     (esnet "net Spanish" 
 	   "1\\(^\\)"
-	   iso-spanish iso-cvt-read-onlyt nil))
+	   iso-spanish iso-cvt-read-only t nil))
   "List of information about understood file formats.
 Elements are of the form \(NAME DOC-STR REGEXP FROM-FN TO-FN MODIFY MODE-FN).
 NAME    is a symbol, which is stored in `buffer-file-format'.