Gnus development mailing list
 help / color / mirror / Atom feed
From: Tatsuya Ichikawa <ichikawa@hv.epson.co.jp>
Subject: .overview file coding system when caching article.
Date: 25 Aug 1998 17:05:15 +0900	[thread overview]
Message-ID: <un28t1o78.fsf@hv08.hv.epson.co.jp> (raw)

[-- Attachment #1: Type: text/plain, Size: 208 bytes --]


  When gnus-cache-enter-article cache article , .overview file wrote
  in sjis-dos file coding system on mule that works on Microsoft
  Windows.

  I correct this problem following patch.

  Any problem ??


[-- Attachment #2: gnus-util.el.diff --]
[-- Type: application/octet-stream, Size: 974 bytes --]

*** gnus-util.el.orig	Tue Aug 25 17:01:32 1998
--- gnus-util.el	Tue Aug 25 10:39:20 1998
***************
*** 537,542 ****
--- 537,544 ----
  
  (defvar gnus-work-buffer " *gnus work*")
  
+ (defvar gnus-write-file-coding-system 'raw-text)
+ 
  (defun gnus-set-work-buffer ()
    "Put point in the empty Gnus work buffer."
    (if (get-buffer gnus-work-buffer)
***************
*** 605,611 ****
    ;; Make sure the directory exists.
    (gnus-make-directory (file-name-directory file))
    ;; Write the buffer.
!   (write-region (point-min) (point-max) file nil 'quietly))
  
  (defun gnus-delete-file (file)
    "Delete FILE if it exists."
--- 607,614 ----
    ;; Make sure the directory exists.
    (gnus-make-directory (file-name-directory file))
    ;; Write the buffer.
!   (let ((coding-system-for-write gnus-write-file-coding-system))
!     (write-region (point-min) (point-max) file nil 'quietly)))
  
  (defun gnus-delete-file (file)
    "Delete FILE if it exists."

[-- Attachment #3: Type: text/plain, Size: 377 bytes --]


  And I always reading mail from "Multiple" pop3 servers.
  So , I write "Front End" package enable to get mail from multiple
  pop3 servers.

  If someone needs this package , please merge this package.
  Package name is "pop3-fma" (pop3 For Multi Account).

  Thanks.

-- 
  Tatsuya Ichikawa <ichikawa@hv.epson.co.jp>
  # PGP Public Key : See X-Info header in this message.

             reply	other threads:[~1998-08-25  8:05 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1998-08-25  8:05 Tatsuya Ichikawa [this message]
1998-08-25  8:20 ` Lars Magne Ingebrigtsen
1998-08-25  9:03   ` Tatsuya Ichikawa

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=un28t1o78.fsf@hv08.hv.epson.co.jp \
    --to=ichikawa@hv.epson.co.jp \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).