Mercurial > hg > xemacs-beta
diff 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 |
line wrap: on
line diff
--- a/lisp/mel/mel-g.el Mon Aug 13 09:18:41 2007 +0200 +++ b/lisp/mel/mel-g.el Mon Aug 13 09:19:45 2007 +0200 @@ -7,7 +7,7 @@ ;; modified by MORIOKA Tomohiko <morioka@jaist.ac.jp> ;; Maintainer: Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp> ;; Created: 1995/10/25 -;; Version: $Id: mel-g.el,v 1.4 1997/03/08 23:26:22 steve Exp $ +;; Version: $Id: mel-g.el,v 1.5 1997/03/16 03:05:14 steve Exp $ ;; Keywords: Gzip64, base64, gzip, MIME ;; This file is not part of MEL (MIME Encoding Library) yet. @@ -37,14 +37,14 @@ ;;; (defvar gzip64-external-encoder - (let ((file (file-installed-p "mmencode" exec-path))) + (let ((file (exec-installed-p "mmencode"))) (and file (` ("sh" "-c" (, (concat "gzip -c | " file)))) )) "*list of gzip64 encoder program name and its arguments.") (defvar gzip64-external-decoder - (let ((file (file-installed-p "mmencode" exec-path))) + (let ((file (exec-installed-p "mmencode"))) (and file (` ("sh" "-c" (, (concat file " -u | gzip -dc")))) ))