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: 23.0.50;(set-language-environment 'Chinese-GB) error Date: Mon, 15 Oct 2007 15:46:58 +0200 Message-ID: References: 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 1192456590 14320 80.91.229.12 (15 Oct 2007 13:56:30 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 15 Oct 2007 13:56:30 +0000 (UTC) Cc: emacs-devel@gnu.org To: "Kenichi Handa" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 15 15:56:20 2007 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 1IhQHo-0003Kb-Sz for ged-emacs-devel@m.gmane.org; Mon, 15 Oct 2007 15:47:13 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IhQHi-0003kE-67 for ged-emacs-devel@m.gmane.org; Mon, 15 Oct 2007 09:47:06 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IhQHe-0003jT-NO for emacs-devel@gnu.org; Mon, 15 Oct 2007 09:47:02 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IhQHc-0003ip-0W for emacs-devel@gnu.org; Mon, 15 Oct 2007 09:47:02 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IhQHb-0003ij-Sj for emacs-devel@gnu.org; Mon, 15 Oct 2007 09:46:59 -0400 Original-Received: from wx-out-0506.google.com ([66.249.82.238]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IhQHb-0003UB-Fq for emacs-devel@gnu.org; Mon, 15 Oct 2007 09:46:59 -0400 Original-Received: by wx-out-0506.google.com with SMTP id s7so1520244wxc for ; Mon, 15 Oct 2007 06:46:58 -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=cVtcHHLq0/opBbYk4R40jmjm/DtuiZRzDshndpXNz+M=; b=ax0flGZJV6PwbGtWdoyZVatvebMHUbIUfMPdoUuSd8c9oUCKpcTNK7DZt9rc+k8n6I0YomYoopSFvm+VbUmJ5S3soPZ0OOR7bR2ffoEGrOI00JfMruI5xochdQ9Rl1mhpL7W1uIdA7fnKO1XhcJM7vWHYpOu0XxyzvXq6gT4PSs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=XoCQV2epsqRPXoMQdzxCpa2mIAz444Flfi7wDxUJqLo6g0C2j6P49uixuzVL3DWLYdRJAcIQZaUyh2a1w96+y9sB0W9rzlSafEUTdjiAAvevYLMJ1TyCy7L+YyvgHn4rD8nFVcES7lBourYe11kRkyC0PQ+2IiCq6sgBqXtvqCc= Original-Received: by 10.90.118.12 with SMTP id q12mr8715764agc.1192456018373; Mon, 15 Oct 2007 06:46:58 -0700 (PDT) Original-Received: by 10.90.103.8 with HTTP; Mon, 15 Oct 2007 06:46:58 -0700 (PDT) In-Reply-To: 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:80920 Archived-At: On 10/15/07, Kenichi Handa wrote: > FYI, when I try "make bootstrap", this error happens: > > Recursive `require' for feature `help-fns' That's my fault: 2007-10-15 Juanma Barranquero * help-fns.el: Require advice when compiling. and I didn't realize that advice.el requires help-fns.el. I was trying to fix this recent breakage: emacs -Q -D M-: (setq debug-on-error t) M-x load-library [RET] advice [RET] C-h f getenv [RET] => Debugger entered--Lisp error: (invalid-function ad-get-advice-info) ad-get-advice-info(getenv) describe-function-1(getenv) describe-function(getenv) call-interactively(describe-function) which is caused by this change: 2007-10-14 Richard Stallman * help-fns.el (describe-function-1): Find source of advised functions. because it uses ad-get-advice-info, which is a macro. Juanma