aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-10-01 02:05:32 +0000
committerGlenn Morris2009-10-01 02:05:32 +0000
commit3d9842c67e18fc78db3aeffba7b99a4e99320b97 (patch)
treecf7186a7b22142ca8b048ca8fb31abe20a9ee61f
parenta4d2c321a5c1802abf26c2366568340e51622de6 (diff)
downloademacs-3d9842c67e18fc78db3aeffba7b99a4e99320b97.tar.gz
emacs-3d9842c67e18fc78db3aeffba7b99a4e99320b97.zip
(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 @@
12009-10-01 Glenn Morris <rgm@gnu.org>
2
3 * functions.texi (Declaring Functions): Mention that we also search for
4 ".m" files in the src/ directory.
5
12009-09-25 David Engster <deng@randomsample.de> 62009-09-25 David Engster <deng@randomsample.de>
2 7
3 * display.texi (Managing Overlays): Document 8 * display.texi (Managing Overlays): Document copy-overlay (Bug#4549).
4 copy-overlay (Bug#4549).
5 9
62009-09-22 Glenn Morris <rgm@gnu.org> 102009-09-22 Glenn Morris <rgm@gnu.org>
7 11
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
1312expand the definition file name relative to the directory of the file 1312expand the definition file name relative to the directory of the file
1313that contains the @code{declare-function} call. 1313that contains the @code{declare-function} call.
1314 1314
1315 You can also say that a function is defined by C code by specifying 1315 You can also say that a function is defined by C code by specifying a
1316a file name ending in @samp{.c}. @code{check-declare-file} looks for 1316file name ending in @samp{.c} or @samp{.m}. @code{check-declare-file}
1317these files in the C source code directory. This is useful only when 1317looks for these files in the C source code directory. This is useful
1318you call a function that is defined only on certain systems. Most 1318only when you call a function that is defined only on certain systems.
1319of the primitive functions of Emacs are always defined so they will 1319Most of the primitive functions of Emacs are always defined so they will
1320never give you a warning. 1320never give you a warning.
1321 1321
1322 Sometimes a file will optionally use functions from an external package. 1322 Sometimes a file will optionally use functions from an external package.