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 22:35: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 1192483786 17007 80.91.229.12 (15 Oct 2007 21:29:46 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 15 Oct 2007 21:29:46 +0000 (UTC) Cc: emacs-devel@gnu.org, Kenichi Handa To: "Stefan Monnier" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 15 23:29:36 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 1IhWfg-0003Qe-Ch for ged-emacs-devel@m.gmane.org; Mon, 15 Oct 2007 22:36:16 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IhWfZ-000695-L9 for ged-emacs-devel@m.gmane.org; Mon, 15 Oct 2007 16:36:09 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IhWfS-00065a-FT for emacs-devel@gnu.org; Mon, 15 Oct 2007 16:36:02 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IhWfP-00063m-QA for emacs-devel@gnu.org; Mon, 15 Oct 2007 16:36:02 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IhWfP-00063d-Gd for emacs-devel@gnu.org; Mon, 15 Oct 2007 16:35:59 -0400 Original-Received: from hs-out-0708.google.com ([64.233.178.244] helo=hs-out-2021.google.com) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IhWfP-0002pJ-8A for emacs-devel@gnu.org; Mon, 15 Oct 2007 16:35:59 -0400 Original-Received: by hs-out-2021.google.com with SMTP id 55so222973hsc for ; Mon, 15 Oct 2007 13:35: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=+OqnFyRTqSjVYcr+78+HZETQBbsvgbFxN5lXOoGxGhc=; b=h7U9HYNzSrq639L3vjYo0SowqxvbNs9h4uaRrtGZQX0OC3PXtIlu+10o9xLixdDfCMlBm3Twj8xU2dFwMD76W3Dnxef3c2YugZIEMx9BomzmyA9WLVJvn3l4px5lkfHkVvBwhpzSe+NLUa8XAxqya3trxShd8gHBzS9r6u7+7vg= 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=V+lVFxbZek5Qsv6RzmT49D9X81zbqlNAt66twTGsc3+aMNqHGH4LvVwtwjGwOFIOeNjbfNFkmhBu7rUiHlEc1vlQqGYgvWiUQVDbcY1h43M+xeDZdQ6od4vZb39RptdF3W7Ue2b6HmTbLrpk1LrkrBa7cX34+QYWo/7yrpovDXk= Original-Received: by 10.90.119.15 with SMTP id r15mr9349075agc.1192480558659; Mon, 15 Oct 2007 13:35:58 -0700 (PDT) Original-Received: by 10.90.103.8 with HTTP; Mon, 15 Oct 2007 13:35:58 -0700 (PDT) In-Reply-To: Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.4-2.6 (Google crawlbot) 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:80964 Archived-At: On 10/15/07, Stefan Monnier wrote: > Maybe those functions should simply be placed in the preloaded > help.el instead (they're also used by cl-macs.el IIRC). Those functions are used by advice.el, eldoc.el, cl-macs.el and autoload.el. I've tried moving them to help.el, but it caused other problems during bootstrapping. I don't think a single use of a one-line macro is worth the shuffling around... Perhaps it would be easier to just copy the relevant macro from advice.el to help-fns.el, or just use its expansion: (defmacro ad-get-advice-info (function) `(get ,function 'ad-advice-info)) Yes, I know, a horrible kludge. Juanma