aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJuanma Barranquero2007-11-26 08:48:31 +0000
committerJuanma Barranquero2007-11-26 08:48:31 +0000
commit7a6a17280d3bb921023587ba549398eea0d0ecf3 (patch)
treeee6aa6f6d1bfc954c01a34274451f1a1bba44436 /doc
parent60806b7399683a8bddf4cb25ecce2534b4784e76 (diff)
downloademacs-7a6a17280d3bb921023587ba549398eea0d0ecf3.tar.gz
emacs-7a6a17280d3bb921023587ba549398eea0d0ecf3.zip
(Declaring Functions): Fix typo in directive.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/functions.texi4
1 files changed, 2 insertions, 2 deletions
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:
1252 1252
1253@smallexample 1253@smallexample
1254(declare-function gud-find-c-expr "gud.el" nil) 1254(declare-function gud-find-c-expr "gud.el" nil)
1255@end smalllexample 1255@end smallexample
1256 1256
1257This says that @code{gud-find-c-expr} is defined in @file{gud.el} (the 1257This says that @code{gud-find-c-expr} is defined in @file{gud.el} (the
1258@samp{.el} can be omitted). The compiler takes for granted that that file 1258@samp{.el} can be omitted). The compiler takes for granted that that file
1259really defines the function, and does not check. 1259really defines the function, and does not check.
1260 1260
1261 The optional third argument specifies the argument list of 1261 The optional third argument specifies the argument list of
1262@code{gud-find-c-expr}. In this case, it takes no arguments 1262@code{gud-find-c-expr}. In this case, it takes no arguments
1263(@code{nil} is different from not specifying a value). In other 1263(@code{nil} is different from not specifying a value). In other