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] master 83c3a61: lisp/gnus/message.el (message-send-mail): Don't wrongly assert on Unicode msg Date: Mon, 03 Jun 2019 13:16:55 -0400 Message-ID: References: <20190603135626.32064.50250@vcs0.savannah.gnu.org> <20190603135628.1D13220AD1@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="22951"; 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: Oleh Krehel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 03 19:28:12 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.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.89) (envelope-from ) id 1hXqkg-0005hp-8w for ged-emacs-devel@m.gmane.org; Mon, 03 Jun 2019 19:28:06 +0200 Original-Received: from localhost ([127.0.0.1]:38490 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hXqkf-00048W-3e for ged-emacs-devel@m.gmane.org; Mon, 03 Jun 2019 13:28:05 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:45319) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hXqa2-0003gD-S1 for emacs-devel@gnu.org; Mon, 03 Jun 2019 13:17:07 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hXqa2-0005qp-08 for emacs-devel@gnu.org; Mon, 03 Jun 2019 13:17:06 -0400 Original-Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:21014) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hXqa1-0005nF-Pr for emacs-devel@gnu.org; Mon, 03 Jun 2019 13:17:05 -0400 Original-Received: from pmg3.iro.umontreal.ca (localhost [127.0.0.1]) by pmg3.iro.umontreal.ca (Proxmox) with ESMTP id 55343443124; Mon, 3 Jun 2019 13:17:04 -0400 (EDT) Original-Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg3.iro.umontreal.ca (Proxmox) with ESMTP id 3BB73443121; Mon, 3 Jun 2019 13:17:03 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1559582223; bh=dp7c41IHTBWdm5MGbsEdBk0Q/7OXgN+VP7ODjEYWTnQ=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=Gl8wXBSPQkfdGwfs8t4EG7zDDaG0zKU1/3jqTVmK29b7EeBJmGeJPHy9/SfTsjRKl Acz46nmTZkeF/+eHbRJ74SSCRykcy211eLUgrU+APhGRrQTAvezetCEBz+Z8D+0ijT Kf88RyQ/NA9oXo9ULk/P0nPrKNjH1hoOam1yDpNi+1JAisoRoWVtv8M5Bo+Md7//ym tgMPa8Z3go79p4pOkjlHWQhHIPOjNHlI+57WSiWr15wXJ0476HYHuWgUmVEoIviBC8 VpMo0zd7NjR/M4khUG134y8QWljaNoqntv/jLDGR4FgAYNbYWemYg1len5P07gEXyG 6QaViuTH/vGxg== Original-Received: from ceviche (unknown [45.72.167.35]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id 14509120921; Mon, 3 Jun 2019 13:17:03 -0400 (EDT) In-Reply-To: <20190603135628.1D13220AD1@vcs0.savannah.gnu.org> (Oleh Krehel's message of "Mon, 3 Jun 2019 09:56:27 -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.21 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:237226 Archived-At: > the message seding is handled by an external program, so no Unicode > encoding is performed in Emacs. Thus Emacs must not assert that the > Unicode encoding was performed. Not sure what this has to do with Unicode. It seems to just be about encoding or not encoding: whether encoding is done with one of the Unicode coding-systems (e.g. utf-8) or something else (e.g. latin-1) doesn't seem to make a difference. Or am I missing something? Stefan