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] emacs-26 8f18d12: Improve documentation of decoding into a unibyte buffer Date: Sat, 25 May 2019 15:41:46 -0400 Message-ID: References: <20190525191039.14136.23307@vcs0.savannah.gnu.org> <20190525191040.CCD6C207F5@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="258188"; 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: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat May 25 21:42:56 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 1hUcZB-00150k-73 for ged-emacs-devel@m.gmane.org; Sat, 25 May 2019 21:42:53 +0200 Original-Received: from localhost ([127.0.0.1]:45677 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hUcZA-00071H-8v for ged-emacs-devel@m.gmane.org; Sat, 25 May 2019 15:42:52 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:40637) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hUcYJ-0006sS-5H for emacs-devel@gnu.org; Sat, 25 May 2019 15:42:00 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hUcYI-0001SL-5m for emacs-devel@gnu.org; Sat, 25 May 2019 15:41:59 -0400 Original-Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:1727) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hUcYB-0001J8-U7; Sat, 25 May 2019 15:41:52 -0400 Original-Received: from pmg1.iro.umontreal.ca (localhost.localdomain [127.0.0.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id ED7D91011C4; Sat, 25 May 2019 15:41:48 -0400 (EDT) Original-Received: from mail02.iro.umontreal.ca (unknown [172.31.2.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id DE922101138; Sat, 25 May 2019 15:41:47 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1558813307; bh=9KVaPeiAdEiB3vKEH+M32hmy0rr1tu7Cl2qGXNMrCp4=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=Ic6u5zvPtMxgzD3lUyczM54RrseHg35pcc2/jNnFYtugNtwLCuc7GYhGUpBeUvUOz tI7nXkcRiIKHSDHBQ86qKfZxpKxuhx5eARxEqHzVFC2N37WwCVhC4ZKSc40q2FRbwj H0KOWENTLzYZxzJyop2pcuiNBJlfMp/CQFa+0gq0bUrJ+CWMqpf5v41Vjpb9QOx/OQ HrFJGsePtKAahayBW6+UtoTfBph2hEYkBG/qsQ8Xnwy/YUFX3vGzxKOW2LGNH9gVdd 97eey7xTPXQYwdGjBCUHPK15cTBKdGgC3E+zcuvt4LVKyYE77GeTUeA3h9S7ibxLnX EEU0/dd7pVbHQ== Original-Received: from pastel (unknown [167.88.27.42]) by mail02.iro.umontreal.ca (Postfix) with ESMTPSA id B43E3120900; Sat, 25 May 2019 15:41:47 -0400 (EDT) In-Reply-To: <20190525191040.CCD6C207F5@vcs0.savannah.gnu.org> (Eli Zaretskii's message of "Sat, 25 May 2019 15:10:40 -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:236987 Archived-At: > +length of the decoded text. If that buffer is a unibyte buffer > +(@pxref{Selecting a Representations}), the internal representation of > +the decoded text (@pxref{Text Representations}) is inserted into the > +buffer as individual bytes. If the decoded char is a byte between 128-255, is it inserted as a single byte or as the two-byte sequence used internally for those "eight-bit" chars? Stefan