From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: Symbol's function definition is void: < Date: Fri, 26 Jun 2009 01:11:25 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1245971506 32755 80.91.229.12 (25 Jun 2009 23:11:46 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 25 Jun 2009 23:11:46 +0000 (UTC) Cc: Emacs-Devel devel To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 26 01:11:39 2009 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 1MJy6U-0002rY-Lt for ged-emacs-devel@m.gmane.org; Fri, 26 Jun 2009 01:11:38 +0200 Original-Received: from localhost ([127.0.0.1]:35182 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MJy6T-0001Op-Nm for ged-emacs-devel@m.gmane.org; Thu, 25 Jun 2009 19:11:37 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MJy6O-0001OR-Gc for emacs-devel@gnu.org; Thu, 25 Jun 2009 19:11:32 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MJy6J-0001NR-I8 for emacs-devel@gnu.org; Thu, 25 Jun 2009 19:11:31 -0400 Original-Received: from [199.232.76.173] (port=41498 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MJy6J-0001NN-A3 for emacs-devel@gnu.org; Thu, 25 Jun 2009 19:11:27 -0400 Original-Received: from mail-bw0-f217.google.com ([209.85.218.217]:44969) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MJy6I-0002pE-Sf for emacs-devel@gnu.org; Thu, 25 Jun 2009 19:11:27 -0400 Original-Received: by bwz17 with SMTP id 17so2092554bwz.42 for ; Thu, 25 Jun 2009 16:11:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=0xM8kp39a7BDXn6XfEN4Sm1JyYg8tXn2NE/FcONrRsQ=; b=j1lWrLDs3VVVLFCRFX9+aVf3gzfJ7T07FH6WhEfPZ1xLcfW233IMxUGUCZ+elVQwIR O4WlgEEvc5QrKsOfXkjTSltzNtbosJlBFwiAf5JkvJ0CpYYCQt3vGZkebAgbzZSqTAGQ fA4CZjkqyvA6GscjnUFFUVlkRe7oySitzJprg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=ayZ8oKvutZS7s3Q3VEjjKiyNPUAZJx/7Roscs0c28XtNBL5CPxDWlgHvRTXp+aJrrR 61WB57HEpyPB5MMV7m0t63ugI1xp+WAxfm27bc1yIgedV1PQQRD9AexZB/5vEcNY1wAY QpQai2t2JnzH0HlAbUY8rXRmWbM9u1YWSQD1s= Original-Received: by 10.239.135.129 with SMTP id d1mr231444hbd.137.1245971485865; Thu, 25 Jun 2009 16:11:25 -0700 (PDT) In-Reply-To: X-detected-operating-system: by monty-python.gnu.org: GNU/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:111735 Archived-At: On Thu, Jun 25, 2009 at 10:59 PM, Stefan Monnier wrote: >> I have got a strange bug report for nXhtml. The report says that < is >> not defined. Please see > >> =C2=A0 =C2=A0 http://www.emacswiki.org/emacs/NxhtmlMode#toc13 > >> What functions could make < void? fset? > > It might also just be an uninterned symbol, so it has the same name as > the "strictly greater" but doesn't have any function associated with it. Thanks. What do we need to do to catch that possibility? I suggested a defadvice on fmakunbound (which the user reporting the problem now is using). Maybe defadvice on make-symbol and unintern could catch this possibility? Some more function to watch?