# HG changeset patch # User Glenn Morris # Date 1254362732 0 # Node ID 179b0f945895cb65033a8375bf4429688426ceae # Parent 78728d295b597fb0ea03428fa764bd7e25fe1ae3 (Declaring Functions): Mention that we also search for ".m" files in the src/ directory. diff -r 78728d295b59 -r 179b0f945895 doc/lispref/ChangeLog --- a/doc/lispref/ChangeLog Thu Oct 01 02:03:38 2009 +0000 +++ b/doc/lispref/ChangeLog Thu Oct 01 02:05:32 2009 +0000 @@ -1,7 +1,11 @@ +2009-10-01 Glenn Morris + + * functions.texi (Declaring Functions): Mention that we also search for + ".m" files in the src/ directory. + 2009-09-25 David Engster - * display.texi (Managing Overlays): Document - copy-overlay (Bug#4549). + * display.texi (Managing Overlays): Document copy-overlay (Bug#4549). 2009-09-22 Glenn Morris diff -r 78728d295b59 -r 179b0f945895 doc/lispref/functions.texi --- a/doc/lispref/functions.texi Thu Oct 01 02:03:38 2009 +0000 +++ b/doc/lispref/functions.texi Thu Oct 01 02:05:32 2009 +0000 @@ -1312,11 +1312,11 @@ 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.