From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: drkm Newsgroups: gmane.emacs.devel Subject: Wrong indentation in help-fns.el Date: Fri, 07 Jan 2005 00:44:40 +0100 Organization: None Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1105055325 10082 80.91.229.6 (6 Jan 2005 23:48:45 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 6 Jan 2005 23:48:45 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jan 07 00:48:40 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CmhMu-0004FO-00 for ; Fri, 07 Jan 2005 00:48:40 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CmhYD-0006Ws-PN for ged-emacs-devel@m.gmane.org; Thu, 06 Jan 2005 19:00:21 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CmhX5-00066o-BH for emacs-devel@gnu.org; Thu, 06 Jan 2005 18:59:11 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CmhX3-00064q-BO for emacs-devel@gnu.org; Thu, 06 Jan 2005 18:59:09 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CmhX3-00064A-4X for emacs-devel@gnu.org; Thu, 06 Jan 2005 18:59:09 -0500 Original-Received: from [80.91.229.2] (helo=main.gmane.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CmhJB-0000WW-Ft for emacs-devel@gnu.org; Thu, 06 Jan 2005 18:44:49 -0500 Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1CmhJA-0007vU-00 for ; Fri, 07 Jan 2005 00:44:48 +0100 Original-Received: from 192-227.242.81.adsl.skynet.be ([81.242.227.192]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 07 Jan 2005 00:44:48 +0100 Original-Received: from darkman_spam by 192-227.242.81.adsl.skynet.be with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 07 Jan 2005 00:44:48 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: emacs-devel@gnu.org Original-Lines: 18 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 192-227.242.81.adsl.skynet.be User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (windows-nt) Cancel-Lock: sha1:ljuexKFD5A/kKIYfPR/5/0qYlIE= 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: main.gmane.org gmane.emacs.devel:31983 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:31983 Hello I was not understanding the code of `help-C-file-name', when I understood it is wrongly indented: (let ((pnt (search-forward (concat "" name "\n")))) (re-search-backward "S\\(.*\\)") (let ((file (match-string 1))) (if (member file build-files) in place of: (let ((pnt (search-forward (concat "" name "\n")))) (re-search-backward "S\\(.*\\)") (let ((file (match-string 1))) (if (member file build-files) --drkm