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: Wed, 17 Oct 2007 11:35:06 +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 1192613721 28039 80.91.229.12 (17 Oct 2007 09:35:21 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 17 Oct 2007 09:35:21 +0000 (UTC) Cc: emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Oct 17 11:35:21 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 1Ii5JA-0005RA-JN for ged-emacs-devel@m.gmane.org; Wed, 17 Oct 2007 11:35:21 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ii5J3-0003rU-8U for ged-emacs-devel@m.gmane.org; Wed, 17 Oct 2007 05:35:13 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ii5J0-0003rB-VW for emacs-devel@gnu.org; Wed, 17 Oct 2007 05:35:11 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ii5Iz-0003qx-Em for emacs-devel@gnu.org; Wed, 17 Oct 2007 05:35:10 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ii5Iz-0003qu-2u for emacs-devel@gnu.org; Wed, 17 Oct 2007 05:35:09 -0400 Original-Received: from nz-out-0506.google.com ([64.233.162.229]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ii5Iy-00038V-Jn for emacs-devel@gnu.org; Wed, 17 Oct 2007 05:35:08 -0400 Original-Received: by nz-out-0506.google.com with SMTP id f1so1439495nzc for ; Wed, 17 Oct 2007 02:35:07 -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=9L24zstC8AfcFw3QUtekxN8PgUb5f3V3j1HS6T+tCj4=; b=cqbdRNr8WZw5poSpkXXEbLwOrsjJvD3OWzsyc0mUyCe10wNZ5JVhxR2T34Q6v/UZdGEVtMrgAeoHmYzAIlRGS2dvNSA/xxsOcD6eSjgoWK9OtOrnK4w9hfUc0KT7gC52japDjZxVuPupYk4sXz7WxXEYSv526VI16yokEoNEJdY= 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=ifmfyKxs44quVuPi0XVP6DIi0VqjUgjj8ylNZ2utJzlzv6U+0m06+SIu2H4X9vzhIqz1EVz+B1KpF7VxggxvaHdLwwtWglwH50w64xK1JBavj4rWiQSoSNVI5a+Vq5o1P+UKr3C+JOBYCr4GuDbiO8ugTcbaR/+aWTDGQqOVpFI= Original-Received: by 10.114.150.1 with SMTP id x1mr9591905wad.1192613706675; Wed, 17 Oct 2007 02:35:06 -0700 (PDT) Original-Received: by 10.115.72.13 with HTTP; Wed, 17 Oct 2007 02:35:06 -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:81057 Archived-At: On 10/16/07, Richard Stallman wrote: > I made a change in advice.el which ought to fix that. There are two regressions. (defun test () "My test docstring." t) M-: (defadvice test (before doc-bug)) [RET] C-h f test [RET] => Symbol's function definition is void: ad-Orig-test M-: (defadvice test (before doc-bug activate)) [RET] C-h f test [RET] => test is a Lisp function. (test) Advice doc string [back] Juanma