From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Andreas Schwab Newsgroups: gmane.emacs.devel Subject: Re: [elpa] master 88578a4: Increase the default number of hits Date: Wed, 06 Jan 2016 21:12:37 +0100 Message-ID: <87fuyalb62.fsf@igel.home> References: <20151224213932.12107.84317@vcs.savannah.gnu.org> <87wps1ghyu.fsf@gnus.org> <0xd1ttrmgp.fsf@fencepost.gnu.org> <87si2oq5z2.fsf@gnus.org> <90mvswd7ej.fsf@fencepost.gnu.org> <87ege8l98o.fsf@gnus.org> <87si2lppuq.fsf@gmx.de> <87fuyhpq28.fsf@gmx.de> <8360zccqud.fsf@gnu.org> <83wprm3ena.fsf@gnu.org> <83r3hu36ea.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1452111187 20275 80.91.229.3 (6 Jan 2016 20:13:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 6 Jan 2016 20:13:07 +0000 (UTC) Cc: John Wiegley , larsi@gnus.org, emacs-devel@gnu.org, michael.albinus@gmx.de, rgm@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jan 06 21:12:54 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1aGuRx-0003P6-MA for ged-emacs-devel@m.gmane.org; Wed, 06 Jan 2016 21:12:53 +0100 Original-Received: from localhost ([::1]:55957 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGuRw-00037j-VU for ged-emacs-devel@m.gmane.org; Wed, 06 Jan 2016 15:12:52 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:52077) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGuRr-000378-4b for emacs-devel@gnu.org; Wed, 06 Jan 2016 15:12:50 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aGuRq-0008Km-7d for emacs-devel@gnu.org; Wed, 06 Jan 2016 15:12:47 -0500 Original-Received: from mail-out.m-online.net ([212.18.0.9]:35349) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGuRk-0008Jx-GI; Wed, 06 Jan 2016 15:12:40 -0500 Original-Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3pbMLb0MsVz3hj06; Wed, 6 Jan 2016 21:12:39 +0100 (CET) Original-Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3pbMLZ5ypnzvh1j; Wed, 6 Jan 2016 21:12:38 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Original-Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id V-wvw9odmngh; Wed, 6 Jan 2016 21:12:37 +0100 (CET) X-Auth-Info: MxFjljhfLirqWE4J0VgRDLcBI1PbrNlLSFuDiAh49PWraDI+Xl1O0WAUoCiggCsM Original-Received: from igel.home (host-188-174-197-141.customer.m-online.net [188.174.197.141]) by mail.mnet-online.de (Postfix) with ESMTPA; Wed, 6 Jan 2016 21:12:37 +0100 (CET) Original-Received: by igel.home (Postfix, from userid 1000) id 11BAC2C5D89; Wed, 6 Jan 2016 21:12:37 +0100 (CET) X-Yow: Imagine--a WORLD without POODLES... In-Reply-To: <83r3hu36ea.fsf@gnu.org> (Eli Zaretskii's message of "Wed, 06 Jan 2016 20:33:01 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 212.18.0.9 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 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-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:197709 Archived-At: Eli Zaretskii writes: > Lars, please update both the emacs-25 branch and elpa, and try again > accessing debbugs bugs with non-ASCII characters (using emacs-25.0.50, > not 25.1.50 from master). At least your simplified example: > > (async-get (async-start `(lambda () "báh"))) > > now works for me. I don't think debbugs will, but maybe now the patch > proposed by Andreas will help. If not, I will continue debugging this > later. The problem is that unibyte strings are received as multibyte strings. ELISP> (async-get (async-start (lambda () "\303"))) "Ã" Binding print-escape-nonascii fixes that. I have also enabled print-circle to avoid problems with circular data structures. (There was also a bug in soap-client in the way it handles a base64Binary data element, which was the reason the unibyte string was returned in the debbugs query in the first place.) Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different."