comparison lisp/mel/mel-g.el @ 110:fe104dbd9147 r20-1b7

Import from CVS: tag r20-1b7
author cvs
date Mon, 13 Aug 2007 09:19:45 +0200
parents 360340f9fd5f
children
comparison
equal deleted inserted replaced
109:e183fc049578 110:fe104dbd9147
5 5
6 ;; Author: Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp> 6 ;; Author: Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
7 ;; modified by MORIOKA Tomohiko <morioka@jaist.ac.jp> 7 ;; modified by MORIOKA Tomohiko <morioka@jaist.ac.jp>
8 ;; Maintainer: Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp> 8 ;; Maintainer: Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
9 ;; Created: 1995/10/25 9 ;; Created: 1995/10/25
10 ;; Version: $Id: mel-g.el,v 1.4 1997/03/08 23:26:22 steve Exp $ 10 ;; Version: $Id: mel-g.el,v 1.5 1997/03/16 03:05:14 steve Exp $
11 ;; Keywords: Gzip64, base64, gzip, MIME 11 ;; Keywords: Gzip64, base64, gzip, MIME
12 12
13 ;; This file is not part of MEL (MIME Encoding Library) yet. 13 ;; This file is not part of MEL (MIME Encoding Library) yet.
14 14
15 ;; This program is free software; you can redistribute it and/or 15 ;; This program is free software; you can redistribute it and/or
35 35
36 ;;; @ variables 36 ;;; @ variables
37 ;;; 37 ;;;
38 38
39 (defvar gzip64-external-encoder 39 (defvar gzip64-external-encoder
40 (let ((file (file-installed-p "mmencode" exec-path))) 40 (let ((file (exec-installed-p "mmencode")))
41 (and file 41 (and file
42 (` ("sh" "-c" (, (concat "gzip -c | " file)))) 42 (` ("sh" "-c" (, (concat "gzip -c | " file))))
43 )) 43 ))
44 "*list of gzip64 encoder program name and its arguments.") 44 "*list of gzip64 encoder program name and its arguments.")
45 45
46 (defvar gzip64-external-decoder 46 (defvar gzip64-external-decoder
47 (let ((file (file-installed-p "mmencode" exec-path))) 47 (let ((file (exec-installed-p "mmencode")))
48 (and file 48 (and file
49 (` ("sh" "-c" (, (concat file " -u | gzip -dc")))) 49 (` ("sh" "-c" (, (concat file " -u | gzip -dc"))))
50 )) 50 ))
51 "*list of gzip64 decoder program name and its arguments.") 51 "*list of gzip64 decoder program name and its arguments.")
52 52