home *** CD-ROM | disk | FTP | other *** search
- Xref: sparky fj.editor.emacs:1356 fj.sources:927
- Newsgroups: fj.editor.emacs,fj.sources
- Path: sparky!uunet!stanford.edu!sun-barr!sh.wide!wnoc-kyo!kuis!kubotaj!kubotaj!kazushi
- From: kazushi@kubota.co.jp (Kazushi (Jam) Marukawa)
- Subject: jam-zcat.el-1.42 patch (Re: jam-zcat.el-1.41 patch)
- Organization: Computer Development Engineering Dept., Kubota Co.
- Distribution: fj
- Date: Tue, 29 Dec 1992 09:47:59 GMT
- Message-ID: <KAZUSHI.92Dec29184800@nekobus.kubota.co.jp>
- In-Reply-To: kazushi@kubota.co.jp's message of Tue, 29 Dec 1992 06:12:01 GMT
- References: <KAZUSHI.92Dec22222821@shado.kubota.co.jp>
- <KAZUSHI.92Dec29151206@shado.kubota.co.jp>
- Sender: news@kubotaj.tt.kubota.co.jp (News System)
- Nntp-Posting-Host: nekobus
- Lines: 49
-
-
- $B$7$/$7$/!"!"!"(B;_;
- loadablep$B$N<~$j$K%P%0$,;D$C$F$*$j$^$7$F!"99$K(B$B0J2<$N%Q%C%A$rEv$F$F2<$5$$!#(B
-
- P.S.
- ange-ftp$B$H0l=o$K;H$&$H!"(Bautoload$B$,CY$/$J(B$B$j$^$9!#2?8N$G$7$g$&$+!)(B
-
-
- $BG/$b=*$o$j$H$$$&$N$K!"?'!9$H$*$5$,$o$;$7$^(B$B$7$?!#$_$J$5$sNI$$$*G/$r!#(B
-
- -- $B$+$:$7(B
-
- *** 1.41 1992/12/29 03:48:14
- --- jam-zcat.el 1992/12/29 09:04:53
- ***************
- *** 2,8 ****
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- ;;
- ;; File: jam-zcat.el
- ! ;; RCS: $Id: jam-zcat.el,v 1.41 1992/12/29 03:48:14 kazushi Exp $
- ;; Description: simple file access through SOME PROGRAMS from GNU Emacs
- ;; Author: Kazushi Jam Marukawa, kazushi@kubota.co.jp
- ;; Created: Fri Jan 4 12:29:21 JST 1991
- --- 2,8 ----
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- ;;
- ;; File: jam-zcat.el
- ! ;; RCS: $Id: jam-zcat.el,v 1.42 1992/12/29 09:04:52 kazushi Exp $
- ;; Description: simple file access through SOME PROGRAMS from GNU Emacs
- ;; Author: Kazushi Jam Marukawa, kazushi@kubota.co.jp
- ;; Created: Fri Jan 4 12:29:21 JST 1991
- ***************
- *** 536,542 ****
- (let ((file (expand-file-name str dir)))
- (mapcar
- '(lambda (ext)
- ! (if (file-readable-p (concat file ext))
- (throw 'exit (concat file ext))))
- (if nosuffix
- '(nil)
- --- 536,543 ----
- (let ((file (expand-file-name str dir)))
- (mapcar
- '(lambda (ext)
- ! (if (and (not (file-directory-p (concat file ext)))
- ! (file-readable-p (concat file ext)))
- (throw 'exit (concat file ext))))
- (if nosuffix
- '(nil)
-