From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Mathias Dahl" Newsgroups: gmane.emacs.devel Subject: Re: dotimes-with-progress-reporter doc string lacks SPEC Date: Fri, 7 Jul 2006 07:58:45 +0200 Message-ID: <7dbe73ed0607062258u277655a4i47546cf26f14590a@mail.gmail.com> References: <44AD7613.1060805@student.lu.se> <200607070028.12058.pogonyshev@gmx.net> <7dbe73ed0607061437g5c1b59a3o87d6a28cf14c0ac6@mail.gmail.com> <44AD8526.5040700@student.lu.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1152251944 27717 80.91.229.2 (7 Jul 2006 05:59:04 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 7 Jul 2006 05:59:04 +0000 (UTC) Cc: emacs-devel@gnu.org, Paul Pogonyshev Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jul 07 07:59:02 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FyjMj-0001tu-Oy for ged-emacs-devel@m.gmane.org; Fri, 07 Jul 2006 07:59:02 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FyjMj-0005S1-B9 for ged-emacs-devel@m.gmane.org; Fri, 07 Jul 2006 01:59:01 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FyjMX-0005RS-22 for emacs-devel@gnu.org; Fri, 07 Jul 2006 01:58:49 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FyjMU-0005R7-MI for emacs-devel@gnu.org; Fri, 07 Jul 2006 01:58:47 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FyjMU-0005R4-GE for emacs-devel@gnu.org; Fri, 07 Jul 2006 01:58:46 -0400 Original-Received: from [64.233.182.189] (helo=nf-out-0910.google.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FyjMq-0006aa-1D for emacs-devel@gnu.org; Fri, 07 Jul 2006 01:59:08 -0400 Original-Received: by nf-out-0910.google.com with SMTP id l37so12877nfc for ; Thu, 06 Jul 2006 22:58:45 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=A+9b3/FCM0W05rdDRsY0r9L9GttybkAcE3y2oytUWolb4qh9BWLcjiTdxi43NdUwiAdnhEYQaU7itwD5YkvxM9uhyI7pDFsq7V9TtVp41yIwDv5q5zEuRFJ4f8elH4wNPmj6ka72uCCjf2KyPmTGs9jcnlkUtZZVhq8ez60ngY0= Original-Received: by 10.49.21.7 with SMTP id y7mr1030665nfi; Thu, 06 Jul 2006 22:58:45 -0700 (PDT) Original-Received: by 10.48.248.13 with HTTP; Thu, 6 Jul 2006 22:58:45 -0700 (PDT) Original-To: "Lennart Borgman" In-Reply-To: <44AD8526.5040700@student.lu.se> Content-Disposition: inline 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:56697 Archived-At: > Hm, thanks. I can see the pattern. Searching elisp Info I found the > explanation in "(elisp) Function Documentation": > > The last line of the documentation string can specify calling > conventions different from the actual function arguments. Write text > like this: > > \(fn ARGLIST) Ah, there it is! I was lazy and just checked the docstring of defmacro, where I could see no mentioning of this. Thanks!