From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.devel Subject: [Unicode-2] C-h f doesn't work Date: Tue, 16 Oct 2007 17:55:11 +0900 Organization: Emacsen advocacy group Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1192525072 21373 80.91.229.12 (16 Oct 2007 08:57:52 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 16 Oct 2007 08:57:52 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Oct 16 10:57:43 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 1IhiEu-0001E0-9t for ged-emacs-devel@m.gmane.org; Tue, 16 Oct 2007 10:57:24 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IhiEn-0007kZ-2a for ged-emacs-devel@m.gmane.org; Tue, 16 Oct 2007 04:57:17 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IhiEi-0007iq-6h for emacs-devel@gnu.org; Tue, 16 Oct 2007 04:57:12 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IhiEh-0007h6-1J for emacs-devel@gnu.org; Tue, 16 Oct 2007 04:57:11 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IhiEg-0007gz-P8 for emacs-devel@gnu.org; Tue, 16 Oct 2007 04:57:10 -0400 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IhiEg-0000tG-AG for emacs-devel@gnu.org; Tue, 16 Oct 2007 04:57:10 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1IhiEN-0006YA-RF for emacs-devel@gnu.org; Tue, 16 Oct 2007 08:56:52 +0000 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 16 Oct 2007 08:56:51 +0000 Original-Received: from yamaoka by orlando.hostforweb.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 16 Oct 2007 08:56:51 +0000 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 23 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: orlando.hostforweb.net User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:B5zsqFK76sYlJPin7OdGXeFqx6Q= X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:81002 Archived-At: Hi, Debugger entered--Lisp error: (invalid-function ad-get-advice-info) ad-get-advice-info(find-file) describe-function-1(find-file) describe-function(find-file) call-interactively(describe-function) Because `describe-function-1' is compiled w/o loading advice and funcalls the macro. Here's a workaround: *** help-fns.el~ Mon Oct 15 07:02:46 2007 --- help-fns.el Tue Oct 16 08:53:55 2007 *************** *** 253,255 **** (defun describe-function-1 (function) ! (let* ((advised (and (featurep 'advice) (ad-get-advice-info function))) ;; If the function is advised, get the symbol that has the --- 253,256 ---- (defun describe-function-1 (function) ! (let* ((advised (and (featurep 'advice) ! (eval '(ad-get-advice-info function)))) ;; If the function is advised, get the symbol that has the