summaryrefslogtreecommitdiffstats
path: root/textproc/coco
diff options
context:
space:
mode:
authortaoka <taoka@FreeBSD.org>2000-02-21 05:13:49 +0000
committertaoka <taoka@FreeBSD.org>2000-02-21 05:13:49 +0000
commit5d0d1ce8d4669eee642b5d6cead0611aea52ba46 (patch)
treecbd4e5e650b958a2fffffb18b89ecce2f2b3e07b /textproc/coco
parent4f112d459161eaabee8929dfe3570baa1695acef (diff)
downloadFreeBSD-ports-5d0d1ce8d4669eee642b5d6cead0611aea52ba46.zip
FreeBSD-ports-5d0d1ce8d4669eee642b5d6cead0611aea52ba46.tar.gz
Cannot view gzipped info files if the next line is in ~/.emacs:
(set-default-process-coding-system *autoconv*unix *junet*) PR: 16817 Submitted by: amagai@nue.org (Y.Amagai)
Diffstat (limited to 'textproc/coco')
-rw-r--r--textproc/coco/files/patch-ca26
1 files changed, 26 insertions, 0 deletions
diff --git a/textproc/coco/files/patch-ca b/textproc/coco/files/patch-ca
new file mode 100644
index 0000000..c3fdb46
--- /dev/null
+++ b/textproc/coco/files/patch-ca
@@ -0,0 +1,26 @@
+Cannot view a gzpipped info file in mule Info-mode
+when the next line is in ~/.emacs:
+ (set-default-process-coding-system *autoconv*unix *junet*)
+
+--- 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*")
+
OpenPOWER on IntegriCloud