From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chong Yidong Newsgroups: gmane.emacs.devel Subject: Comparing font objects Date: Sun, 15 Jun 2008 16:12:17 -0400 Message-ID: <87ej6ywj8e.fsf@stupidchicken.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1213561028 25244 80.91.229.12 (15 Jun 2008 20:17:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 15 Jun 2008 20:17:08 +0000 (UTC) Cc: emacs-devel@gnu.org To: Kenichi Handa Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jun 15 22:17:52 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 1K7yfe-00039O-UQ for ged-emacs-devel@m.gmane.org; Sun, 15 Jun 2008 22:17:51 +0200 Original-Received: from localhost ([127.0.0.1]:53990 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K7yep-0003ce-5B for ged-emacs-devel@m.gmane.org; Sun, 15 Jun 2008 16:16:59 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K7yek-0003bU-5U for emacs-devel@gnu.org; Sun, 15 Jun 2008 16:16:54 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K7yei-0003bG-8M for emacs-devel@gnu.org; Sun, 15 Jun 2008 16:16:53 -0400 Original-Received: from [199.232.76.173] (port=47190 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K7yei-0003bD-2x for emacs-devel@gnu.org; Sun, 15 Jun 2008 16:16:52 -0400 Original-Received: from cyd.mit.edu ([18.115.2.24]:44521) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K7yeh-00012R-O1 for emacs-devel@gnu.org; Sun, 15 Jun 2008 16:16:51 -0400 Original-Received: by cyd.mit.edu (Postfix, from userid 1000) id 5A04E4E47E; Sun, 15 Jun 2008 16:12:17 -0400 (EDT) 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:99269 Archived-At: emacs -fn "Monospace-12" M-: (set-face-attribute 'default nil :font "Monospace-12") RET Debugger entered--Lisp error: (error "Stack overflow in equal") internal-set-lisp-face-attribute(default :font "Monospace-12" 0) set-face-attribute(default nil :font "Monospace-12") eval((set-face-attribute (quote default) nil :font "Monospace-12")) eval-expression((set-face-attribute (quote default) nil :font "Monospace-12") nil) call-interactively(eval-expression nil nil) It appears that Fequal is looping while comparing font vectors. Maybe we need to handle font vector comparison specially (see fns.c:2205)?