summaryrefslogtreecommitdiff
path: root/doc/lispref/functions.texi
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-10-01 02:05:32 +0000
committerGlenn Morris <rgm@gnu.org>2009-10-01 02:05:32 +0000
commit3d9842c67e18fc78db3aeffba7b99a4e99320b97 (patch)
treecf7186a7b22142ca8b048ca8fb31abe20a9ee61f /doc/lispref/functions.texi
parenta4d2c321a5c1802abf26c2366568340e51622de6 (diff)
(Declaring Functions): Mention that we also search for ".m" files in
the src/ directory.
Diffstat (limited to 'doc/lispref/functions.texi')
-rw-r--r--doc/lispref/functions.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi
index 75e4da0978d..6a8816d26d5 100644
--- a/doc/lispref/functions.texi
+++ b/doc/lispref/functions.texi
@@ -1312,11 +1312,11 @@ definition using @code{locate-library}; if that finds no file, they
expand the definition file name relative to the directory of the file
that contains the @code{declare-function} call.
- You can also say that a function is defined by C code by specifying
-a file name ending in @samp{.c}. @code{check-declare-file} looks for
-these files in the C source code directory. This is useful only when
-you call a function that is defined only on certain systems. Most
-of the primitive functions of Emacs are always defined so they will
+ You can also say that a function is defined by C code by specifying a
+file name ending in @samp{.c} or @samp{.m}. @code{check-declare-file}
+looks for these files in the C source code directory. This is useful
+only when you call a function that is defined only on certain systems.
+Most of the primitive functions of Emacs are always defined so they will
never give you a warning.
Sometimes a file will optionally use functions from an external package.