From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] scratch/gnus-decoded d23d12a 1/2: Make sure to decode group names read from newsrc files Date: Mon, 17 Jun 2019 08:14:10 -0400 Message-ID: References: <20190617020741.8052.32294@vcs0.savannah.gnu.org> <20190617020743.1458420B45@vcs0.savannah.gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="153058"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) Cc: emacs-devel@gnu.org To: Eric Abrahamsen Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 17 14:30:19 2019 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hcqmA-000di6-Sy for ged-emacs-devel@m.gmane.org; Mon, 17 Jun 2019 14:30:19 +0200 Original-Received: from localhost ([::1]:46874 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hcqm9-00043M-QL for ged-emacs-devel@m.gmane.org; Mon, 17 Jun 2019 08:30:17 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:37358) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hcqWe-0002NB-PI for emacs-devel@gnu.org; Mon, 17 Jun 2019 08:14:19 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hcqWd-0000zX-4q for emacs-devel@gnu.org; Mon, 17 Jun 2019 08:14:16 -0400 Original-Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:46434) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hcqWc-0000xU-Dk for emacs-devel@gnu.org; Mon, 17 Jun 2019 08:14:14 -0400 Original-Received: from pmg2.iro.umontreal.ca (localhost.localdomain [127.0.0.1]) by pmg2.iro.umontreal.ca (Proxmox) with ESMTP id E8D9B81172; Mon, 17 Jun 2019 08:14:12 -0400 (EDT) Original-Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg2.iro.umontreal.ca (Proxmox) with ESMTP id D8C7181162; Mon, 17 Jun 2019 08:14:11 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1560773651; bh=S5ur4uVu23n/E6g7Bc5jWeNpUjAi4Kxcs7rvGDsLD6U=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=CTepmpWB69rggkqognl16mXA6kHGQOyl4tzqAbEf/kJWLtor+0HErfYLDS5gE1jWV o5R95sB2a2Zjik+Zwgf1Mnai81N/9ZtbX/GfuRDfj0PUodiJYy97hKZPDq0DTgFs5o Wv+80uwaEMgxpFhrzGXQLmr2mUCGkxdGBB77acV6TktiiGrc7UXoLufh6hVXu/qGuo AA663PJeStSz+Z4jYbpiGUFwtotPvJD3NnE0yiSSP/gIYh4491dtcqSP0OvIRMBFHJ SIUIlbvirlBFZAROBettHZwcwH7tH6MdelKvjPBwlyThvoqIq6wHEEzJ6EZTk5WKch bCZwpkxFGoXSw== Original-Received: from pastel (unknown [157.52.10.58]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id AF97F120A5E; Mon, 17 Jun 2019 08:14:11 -0400 (EDT) In-Reply-To: <20190617020743.1458420B45@vcs0.savannah.gnu.org> (Eric Abrahamsen's message of "Sun, 16 Jun 2019 22:07:42 -0400 (EDT)") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 132.204.25.50 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:237780 Archived-At: > + ;; newsrc files are written as 'raw-text. > + (decode-coding-string > + (symbol-name group) 'utf-8))) Huh... so if it's written as `raw-text` why do we decode with `utf-8` instead of `raw-text`? Stefan