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: Thu, 25 Jun 2009 17:54:13 +0200 Message-ID: References: <37805.130.55.118.19.1245942784.squirrel@webmail.lanl.gov> 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 1245945314 16115 80.91.229.12 (25 Jun 2009 15:55:14 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 25 Jun 2009 15:55:14 +0000 (UTC) Cc: Emacs-Devel devel To: herring@lanl.gov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 25 17:55:07 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 1MJrHq-0005WY-6l for ged-emacs-devel@m.gmane.org; Thu, 25 Jun 2009 17:54:54 +0200 Original-Received: from localhost ([127.0.0.1]:34871 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MJrHp-00030G-KQ for ged-emacs-devel@m.gmane.org; Thu, 25 Jun 2009 11:54:53 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MJrHH-0002pM-Rq for emacs-devel@gnu.org; Thu, 25 Jun 2009 11:54:19 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MJrHD-0002nc-DJ for emacs-devel@gnu.org; Thu, 25 Jun 2009 11:54:19 -0400 Original-Received: from [199.232.76.173] (port=35858 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MJrHD-0002nY-8J for emacs-devel@gnu.org; Thu, 25 Jun 2009 11:54:15 -0400 Original-Received: from mail-bw0-f217.google.com ([209.85.218.217]:49730) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MJrHC-0004rA-Ru for emacs-devel@gnu.org; Thu, 25 Jun 2009 11:54:15 -0400 Original-Received: by bwz17 with SMTP id 17so1823675bwz.42 for ; Thu, 25 Jun 2009 08:54:13 -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=xxO9sfoPi7O4i8o7XlLZh/F2XaS4RoeJ5h6g4d4Onkc=; b=QkFf+KilJE0hyNO9UQpiTU7K3hHqHkTp/WWM0jBPeDdnysqUdIK40zM5QHTOo16fuG fE9Z7UPq/PVoieQmf3dmjfvO5gLLzjvmLU8+xnAqsAObEFqUhiWtjKR/kk249TcHmVlO McJg6vqrNdQwv6U3eQiiMy3wbfb280A4ERxj4= 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=MO1y9auL3hFOUvjQ5JQb6srhRrCoMzDTKBO1BFpsZrPvWhkTM5AKQKND0eWVIgBdOt WmSoUkcy44sr2KvfjLZMhGiYJqC3k82AFc4/m9nve5e9+hn3Sse1/JJbIozXBpLEZ2jd lgNSAC3sG5QbFzkR/IA+KvcNKQjnC4WqGhmyQ= Original-Received: by 10.239.136.68 with SMTP id g4mr258316hbg.58.1245945253571; Thu, 25 Jun 2009 08:54:13 -0700 (PDT) In-Reply-To: <37805.130.55.118.19.1245942784.squirrel@webmail.lanl.gov> 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:111726 Archived-At: On Thu, Jun 25, 2009 at 5:13 PM, Davis Herring 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? > > fmakunbound is it AFAIK (I replied there too). Thanks Davis. So something like this would help (defadvice fmakunbound (before test-ad-makunbound activate compile ) (message "fmakunbound %s, backtrace\n%s" (ad-get-arg 0) (with-output-to-string (backtrace))))