aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/format.el
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-09 04:20:46 +0000
committerRichard M. Stallman1997-07-09 04:20:46 +0000
commit8d0dd9d2dd7bc7693eb953b2cc4150e771e4f95c (patch)
tree6606f8e1dd1db7d1276f586df9d6b8b5c0dd9c86 /lisp/format.el
parent3bb846b8713fcd14236b2ba3f5fc204ecd3eb220 (diff)
downloademacs-8d0dd9d2dd7bc7693eb953b2cc4150e771e4f95c.tar.gz
emacs-8d0dd9d2dd7bc7693eb953b2cc4150e771e4f95c.zip
(format-alist): Don't handle compression here.
Diffstat (limited to 'lisp/format.el')
-rw-r--r--lisp/format.el7
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/format.el b/lisp/format.el
index 872f5894ca9..ad109a41c95 100644
--- a/lisp/format.el
+++ b/lisp/format.el
@@ -64,10 +64,7 @@
64(put 'buffer-file-format 'permanent-local t) 64(put 'buffer-file-format 'permanent-local t)
65 65
66(defvar format-alist 66(defvar format-alist
67 '((compressed "compressed" 67 '((text/enriched "Extended MIME text/enriched format."
68 "^\037\213" ; magic number for gzip
69 "gunzip -f" "gzip -f" t nil)
70 (text/enriched "Extended MIME text/enriched format."
71 "Content-[Tt]ype:[ \t]*text/enriched" 68 "Content-[Tt]ype:[ \t]*text/enriched"
72 enriched-decode enriched-encode t enriched-mode) 69 enriched-decode enriched-encode t enriched-mode)
73 (plain "ISO 8859-1 standard format, no text properties." 70 (plain "ISO 8859-1 standard format, no text properties."
@@ -106,7 +103,7 @@
106 iso-german iso-cvt-read-only t nil) 103 iso-german iso-cvt-read-only t nil)
107 (esnet "net Spanish" 104 (esnet "net Spanish"
108 "1\\(^\\)" 105 "1\\(^\\)"
109 iso-spanish iso-cvt-read-onlyt nil)) 106 iso-spanish iso-cvt-read-only t nil))
110 "List of information about understood file formats. 107 "List of information about understood file formats.
111Elements are of the form \(NAME DOC-STR REGEXP FROM-FN TO-FN MODIFY MODE-FN). 108Elements are of the form \(NAME DOC-STR REGEXP FROM-FN TO-FN MODIFY MODE-FN).
112NAME is a symbol, which is stored in `buffer-file-format'. 109NAME is a symbol, which is stored in `buffer-file-format'.