summaryrefslogtreecommitdiff
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
commit2f6f5759c523efdb3a987937e95744660dc65b5a (patch)
tree46d03d0b9167ba771464e97ff0976dfe9bc87263
parent615f9f9d2a447d3abb4d87aaf1ab45d4f358b8f2 (diff)
downloademacs-2f6f5759c523efdb3a987937e95744660dc65b5a.tar.gz
(Declaring Functions): Mention that we also search for ".m" files in
the src/ directory.
-rw-r--r--doc/lispref/ChangeLog8
-rw-r--r--doc/lispref/functions.texi10
2 files changed, 11 insertions, 7 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index d121127f31e..d83e65b9aa4 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,7 +1,11 @@
+2009-10-01 Glenn Morris <rgm@gnu.org>
+
+ * functions.texi (Declaring Functions): Mention that we also search for
+ ".m" files in the src/ directory.
+
2009-09-25 David Engster <deng@randomsample.de>
- * display.texi (Managing Overlays): Document
- copy-overlay (Bug#4549).
+ * display.texi (Managing Overlays): Document copy-overlay (Bug#4549).
2009-09-22 Glenn Morris <rgm@gnu.org>
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.