From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/31551 Path: main.gmane.org!not-for-mail From: Dave Love Newsgroups: gmane.emacs.gnus.general Subject: Re: Scoring on From: with non-ascii chars Date: Wed, 28 Jun 2000 18:08:03 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: <200006281708.SAA00728@djlvig.dl.ac.uk> References: <200006201457.QAA14572@SnowWhite.inet.cz> <200006271319.OAA00010@djlvig.dl.ac.uk> <2ng0pyd9at.fsf@tiger.jia.vnet> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035167948 14758 80.91.224.250 (21 Oct 2002 02:39:08 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:39:08 +0000 (UTC) Return-Path: Original-Received: from karazm.math.uh.edu (karazm.math.uh.edu [129.7.128.1]) by mailhost.sclp.com (Postfix) with ESMTP id 3A008D0541 for ; Wed, 28 Jun 2000 13:13:25 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by karazm.math.uh.edu (8.9.3/8.9.3) with ESMTP id MAC02950; Wed, 28 Jun 2000 12:09:09 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 28 Jun 2000 12:07:50 -0500 (CDT) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id MAA09988 for ; Wed, 28 Jun 2000 12:07:39 -0500 (CDT) Original-Received: from djlvig.dl.ac.uk (djlvig.dl.ac.uk [148.79.112.146]) by mailhost.sclp.com (Postfix) with ESMTP id 51307D0540 for ; Wed, 28 Jun 2000 13:08:07 -0400 (EDT) Original-Received: (from fx@localhost) by djlvig.dl.ac.uk (8.8.7/8.8.5) id SAA00728; Wed, 28 Jun 2000 18:08:03 +0100 X-Authentication-Warning: djlvig.dl.ac.uk: fx set sender to d.love@dl.ac.uk using -f Original-To: ding@gnus.org In-Reply-To: Shenghuo ZHU's message of "27 Jun 2000 18:54:34 -0400" User-Agent: Gnus/5.0807 (Gnus v5.8.7) Emacs/21.0.90 Original-Lines: 57 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:31551 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:31551 >>>>> "ZSH" == Shenghuo ZHU writes: ZSH> Maybe not. When writing a SCORE file, Gnus binds ZSH> coding-system-for-write to score-mode-coding-system (which is binary). Thanks for the correction. How about this? 2000-06-28 Dave Love * score-mode.el: Don't require easymenu (autoloaded). Require mm-util. (score-mode-coding-system): Default to mm-auto-save-coding-system. Index: score-mode.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/score-mode.el,v retrieving revision 5.4 diff -u -p -c -r5.4 score-mode.el cvs server: conflicting specifications of output style *** score-mode.el 1998/10/19 22:25:10 5.4 --- score-mode.el 2000/06/27 17:05:14 *************** *** 25,32 **** ;;; Code: - (require 'easymenu) (eval-when-compile (require 'cl)) (defvar gnus-score-mode-hook nil "*Hook run in score mode buffers.") --- 25,32 ---- ;;; Code: (eval-when-compile (require 'cl)) + (require 'mm-util) ; for mm-auto-save-coding-system (defvar gnus-score-mode-hook nil "*Hook run in score mode buffers.") *************** *** 51,57 **** table) "Syntax table used in score-mode buffers.") ! (defvar score-mode-coding-system 'binary) ;;;###autoload (defun gnus-score-mode () --- 51,57 ---- table) "Syntax table used in score-mode buffers.") ! (defvar score-mode-coding-system mm-auto-save-coding-system) ;;;###autoload (defun gnus-score-mode ()