Mercurial > hg > xemacs-beta
comparison lisp/w3/mm.el @ 82:6a378aca36af r20-0b91
Import from CVS: tag r20-0b91
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:07:36 +0200 |
parents | 9ee227acff29 |
children | 821dec489c24 |
comparison
equal
deleted
inserted
replaced
81:ebca3d831cea | 82:6a378aca36af |
---|---|
4 ;; Version: 1.96 | 4 ;; Version: 1.96 |
5 ;; Keywords: mail, news, hypermedia | 5 ;; Keywords: mail, news, hypermedia |
6 | 6 |
7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
8 ;;; Copyright (c) 1994, 1995, 1996 by William M. Perry (wmperry@cs.indiana.edu) | 8 ;;; Copyright (c) 1994, 1995, 1996 by William M. Perry (wmperry@cs.indiana.edu) |
9 ;;; Copyright (c) 1996 Free Software Foundation, Inc. | 9 ;;; Copyright (c) 1996, 1997 Free Software Foundation, Inc. |
10 ;;; | 10 ;;; |
11 ;;; This file is not part of GNU Emacs, but the same permissions apply. | 11 ;;; This file is not part of GNU Emacs, but the same permissions apply. |
12 ;;; | 12 ;;; |
13 ;;; GNU Emacs is free software; you can redistribute it and/or modify | 13 ;;; GNU Emacs is free software; you can redistribute it and/or modify |
14 ;;; it under the terms of the GNU General Public License as published by | 14 ;;; it under the terms of the GNU General Public License as published by |
296 viewer specified is always valid. If it is a list of strings, | 296 viewer specified is always valid. If it is a list of strings, |
297 these are used to determine whether a viewer passes the 'test' or | 297 these are used to determine whether a viewer passes the 'test' or |
298 not.") | 298 not.") |
299 | 299 |
300 (defvar mm-content-transfer-encodings | 300 (defvar mm-content-transfer-encodings |
301 '(("base64" . base64-decode) | 301 '(("base64" . base64-decode-region) |
302 ("7bit" . ignore) | 302 ("7bit" . ignore) |
303 ("8bit" . ignore) | 303 ("8bit" . ignore) |
304 ("binary" . ignore) | 304 ("binary" . ignore) |
305 ("x-compress" . ("uncompress" "-c")) | 305 ("x-compress" . ("uncompress" "-c")) |
306 ("x-gzip" . ("gzip" "-dc")) | 306 ("x-gzip" . ("gzip" "-dc")) |