diff lisp/mel/mel-g.el @ 32:e04119814345 r19-15b99

Import from CVS: tag r19-15b99
author cvs
date Mon, 13 Aug 2007 08:52:56 +0200
parents ec9a17fef872
children 131b0175ea99
line wrap: on
line diff
--- a/lisp/mel/mel-g.el	Mon Aug 13 08:52:30 2007 +0200
+++ b/lisp/mel/mel-g.el	Mon Aug 13 08:52:56 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.5 1997/03/09 02:37:18 steve Exp $
+;; Version: $Id: mel-g.el,v 1.6 1997/03/16 05:55:17 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"))))
 	 ))