# HG changeset patch # User Juanma Barranquero # Date 1196066911 0 # Node ID 598f0ef502b464f88b8f8867e75f102a8587c495 # Parent 39b77bce26fd1239c6aded65b1d826644a3febb6 (Declaring Functions): Fix typo in directive. diff -r 39b77bce26fd -r 598f0ef502b4 doc/lispref/functions.texi --- a/doc/lispref/functions.texi Mon Nov 26 07:28:37 2007 +0000 +++ b/doc/lispref/functions.texi Mon Nov 26 08:48:31 2007 +0000 @@ -1252,12 +1252,12 @@ @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