From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/16406 Path: main.gmane.org!not-for-mail From: SL Baur Newsgroups: gmane.emacs.gnus.general Subject: Re: Pterodactyl Gnus v0.5 is released Date: 29 Aug 1998 15:35:05 -0700 Sender: owner-ding@hpc.uh.edu Message-ID: References: <87g1eflbbv.fsf@mharnois.workgroup.net> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035155285 27622 80.91.224.250 (20 Oct 2002 23:08:05 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:08:05 +0000 (UTC) Return-Path: Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id SAA01331 for ; Sat, 29 Aug 1998 18:38:09 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id RAF14671; Sat, 29 Aug 1998 17:09:05 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 29 Aug 1998 17:36:29 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [209.195.19.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id RAA06964 for ; Sat, 29 Aug 1998 17:36:20 -0500 (CDT) Original-Received: from altair.xemacs.org (steve@altair.xemacs.org [206.190.83.19]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id SAA01305 for ; Sat, 29 Aug 1998 18:36:14 -0400 (EDT) Original-Received: (from steve@localhost) by altair.xemacs.org (8.9.1/8.9.1) id PAA28304; Sat, 29 Aug 1998 15:35:05 -0700 Mail-Copies-To: never Original-To: ding@gnus.org X-Face: (:YAD@JS'&Kz'M}n7eX7gEvPR6U1mJ-kt;asEc2qAv;h{Yw7ckz<7+X_SYeTNAaPui:e~x$ ,A=gkt*>UPL/}\a/#C~v2%ETiAY_sx;xve0yL??JWTtX_-NUzXyP38UdW#cmN1\4(X!c3m#%IbtB-3 Z-!xpZi!`E.s{(;aP=b11"!3wQu]1j@^V|;n=B|{l writes in ding@gnus.org: > SL Baur writes: >> Lars Magne Ingebrigtsen writes in ding@gnus.org: >> >> > Michael Harnois writes: >> >> It's 54 bytes long. That certainly does represent a size reduction ... >> >> > It's the new, effective, but instable compression technology. The >> > size spontaneously expanded to ~700kb a few jiffies ago. >> >> Yup. I'm trying a test build now. > No go. encode-coding-string is undefined. Please try evaluating (fset 'encode-coding-string 'ignore) and applying this patch and see if you get any further. 1998-08-29 SL Baur * gnus-art.el (gnus-article-mode): Don't use `set-buffer-multibyte' atrocity in XEmacs. --- pgnus-0.5/lisp/gnus-art.el~ Sat Aug 29 14:25:45 1998 +++ pgnus-0.5/lisp/gnus-art.el Sat Aug 29 15:21:31 1998 @@ -1935,7 +1935,7 @@ (buffer-disable-undo (current-buffer)) (setq buffer-read-only t) (set-syntax-table gnus-article-mode-syntax-table) - (set-buffer-multibyte t) + (and (fboundp 'set-buffer-multibyte) (set-buffer-multibyte t)) (gnus-run-hooks 'gnus-article-mode-hook)) (defun gnus-article-setup-buffer ()