From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: Assertion failes in w32uniscribe.c Date: Thu, 3 Apr 2008 19:22:05 +0200 Message-ID: References: <47F4F272.8050204@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1207243344 25225 80.91.229.12 (3 Apr 2008 17:22:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 3 Apr 2008 17:22:24 +0000 (UTC) Cc: Emacs Devel To: "Jason Rumney" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Apr 03 19:22:54 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JhT9J-0007yk-89 for ged-emacs-devel@m.gmane.org; Thu, 03 Apr 2008 19:22:53 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JhT8g-0008NJ-Dv for ged-emacs-devel@m.gmane.org; Thu, 03 Apr 2008 13:22:14 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JhT8b-0008L0-N0 for emacs-devel@gnu.org; Thu, 03 Apr 2008 13:22:09 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JhT8Z-0008IT-1n for emacs-devel@gnu.org; Thu, 03 Apr 2008 13:22:09 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JhT8Y-0008IN-V3 for emacs-devel@gnu.org; Thu, 03 Apr 2008 13:22:06 -0400 Original-Received: from wa-out-1112.google.com ([209.85.146.179]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JhT8Y-0003X6-Mx for emacs-devel@gnu.org; Thu, 03 Apr 2008 13:22:06 -0400 Original-Received: by wa-out-1112.google.com with SMTP id k34so3697712wah.10 for ; Thu, 03 Apr 2008 10:22:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=vaYh0VDzXUrgzELi07emacDrFEQo0pv4SfpHXS+lR68=; b=hp8/PRMfi353WRQ5Gkh88aGtELvuuOcQIq0ChtwZLM1Zm3qTHvlYuH3EmUeHhnfQSSkzxOdiAqQwjd87zPXvNtVfQSJjaEVfvb//GwZogp9B3PC8VWbePxQx5Q2H7pJ8J+cnjNijDSudaY6TM5KAquRJ12gjczyCLeF34rMdcgg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=jTOzDf9sDoQffcbR4L+ffc0q/lbBn9l5e3vxTrQ9VUOaYhgWcVJrQW8qB72+aP4AOjeaEJ/m3fLYJL6a/EMpWlt0n+HF7yc4XgHcYyBJ7cjrVaNRiDnTpt0yGBmOdLxxGz0Hv7LMhYNZY4p1XTbBIm+MscNaahvriw8KgIJVQME= Original-Received: by 10.115.79.1 with SMTP id g1mr171523wal.43.1207243325455; Thu, 03 Apr 2008 10:22:05 -0700 (PDT) Original-Received: by 10.115.72.13 with HTTP; Thu, 3 Apr 2008 10:22:05 -0700 (PDT) In-Reply-To: <47F4F272.8050204@gnu.org> Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:94275 Archived-At: On Thu, Apr 3, 2008 at 5:06 PM, Jason Rumney wrote: > I'll add code to avoid the assertion In + /* Check the spec is in the right format. */ + if (!CONSP (otf_spec) || Flength (val) < 3) + return 0; + I suppose it's really Flength (otf_spec), isn't it? > but can you debug and see where this > bogus font spec is coming from? Yes. Juanma