Date: Sat, 19 Feb 2000 16:04:28 +0900 (JST) From: amagai@nue.org (Y.Amagai) To: FreeBSD-gnats-submit@freebsd.org Subject: ports/16817: ports/mule-common, cannot view gzipped Info file Message-ID: <200002190704.QAA05352@may.nue.org>
next in thread | raw e-mail | index | archive | help
>Number: 16817 >Category: ports >Synopsis: ports/mule-common, cannot view gzipped Info file >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 18 23:10:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: Y.Amagai >Release: FreeBSD 3.4-STABLE i386 >Organization: New Unified Environment Project >Environment: FreeBSD 2.X ~ FreeBSD 3.4S >Description: Gzpipped info file cannot view in mule Info-mode. >How-To-Repeat: >Fix: --- lisp/info.el.save Thu Jan 6 17:26:03 2000 +++ lisp/info.el Wed Feb 19 15:17:14 2000 @@ -204,12 +204,13 @@ (jka-compr-installed-p) (jka-compr-get-compression-info fullname)) (setq decoder nil)) - (insert-file-contents fullname visit) - (if decoder - (let ((buffer-read-only nil) - (default-directory (or (file-name-directory fullname) - default-directory))) - (call-process-region (point-min) (point-max) decoder t t))))) + (cond (decoder + (let ((buffer-read-only nil) + (default-directory (or (file-name-directory fullname) + default-directory))) + (call-process decoder fullname t) )) + (t + (insert-file-contents fullname visit) )))) ;;;###autoload (add-hook 'same-window-buffer-names "*info*") >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200002190704.QAA05352>