diff options
| -rw-r--r-- | doc/lispref/ChangeLog | 8 | ||||
| -rw-r--r-- | doc/lispref/functions.texi | 10 |
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 @@ | |||
| 1 | 2009-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 | |||
| 1 | 2009-09-25 David Engster <deng@randomsample.de> | 6 | 2009-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 | ||
| 6 | 2009-09-22 Glenn Morris <rgm@gnu.org> | 10 | 2009-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 | |||
| 1312 | expand the definition file name relative to the directory of the file | 1312 | expand the definition file name relative to the directory of the file |
| 1313 | that contains the @code{declare-function} call. | 1313 | that 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 |
| 1316 | a file name ending in @samp{.c}. @code{check-declare-file} looks for | 1316 | file name ending in @samp{.c} or @samp{.m}. @code{check-declare-file} |
| 1317 | these files in the C source code directory. This is useful only when | 1317 | looks for these files in the C source code directory. This is useful |
| 1318 | you call a function that is defined only on certain systems. Most | 1318 | only when you call a function that is defined only on certain systems. |
| 1319 | of the primitive functions of Emacs are always defined so they will | 1319 | Most of the primitive functions of Emacs are always defined so they will |
| 1320 | never give you a warning. | 1320 | never 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. |