diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-07-21 18:15:36 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-07-21 18:15:36 +0000 |
commit | 70f89778c0f2f76bc2f8046e99cc55f2962ac9c2 (patch) | |
tree | 14c35099cfb4f4257c5e0b8e589d530fcb829468 /textproc/coco/files/patch-ca | |
parent | Fix typo. (ghostscript55htff -> ghostscript55httf) (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_1_0'.release/4.1.0
Notes
Notes:
svn path=/head/; revision=30942
svn path=/tags/RELEASE_4_1_0/; revision=30943; tag=release/4.1.0
Diffstat (limited to 'textproc/coco/files/patch-ca')
-rw-r--r-- | textproc/coco/files/patch-ca | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/textproc/coco/files/patch-ca b/textproc/coco/files/patch-ca deleted file mode 100644 index c3fdb4604aa6..000000000000 --- a/textproc/coco/files/patch-ca +++ /dev/null @@ -1,26 +0,0 @@ -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*") - |