From: Juanma Barranquero Date: Mon, 26 Nov 2007 08:48:31 +0000 (+0000) Subject: (Declaring Functions): Fix typo in directive. X-Git-Tag: emacs-pretest-23.0.90~9466 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7a6a17280d3bb921023587ba549398eea0d0ecf3;p=emacs.git (Declaring Functions): Fix typo in directive. --- diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index b8fc9a41954..182d26511b1 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi @@ -1252,12 +1252,12 @@ first use of the function in question: @smallexample (declare-function gud-find-c-expr "gud.el" nil) -@end smalllexample +@end smallexample This says that @code{gud-find-c-expr} is defined in @file{gud.el} (the @samp{.el} can be omitted). The compiler takes for granted that that file really defines the function, and does not check. - + The optional third argument specifies the argument list of @code{gud-find-c-expr}. In this case, it takes no arguments (@code{nil} is different from not specifying a value). In other