aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-12-12 13:37:52 -0500
committerGlenn Morris2012-12-12 13:37:52 -0500
commit9b97b14348484722bde7bf1213816b6d9dd7cf3f (patch)
treeb1f396369977296f88808bd72941157f628b19a3
parent0f59daafb7912f1e0057fd62e3bbb8bcb5693913 (diff)
downloademacs-9b97b14348484722bde7bf1213816b6d9dd7cf3f.tar.gz
emacs-9b97b14348484722bde7bf1213816b6d9dd7cf3f.zip
flymake.texi fix for flymake-buildfile-dirs (bug#13148)
* doc/misc/flymake.texi (Customizable variables, Locating the buildfile): Remove refs to flymake-buildfile-dirs, removed 2007-07-20.
-rw-r--r--doc/misc/ChangeLog3
-rw-r--r--doc/misc/flymake.texi11
2 files changed, 11 insertions, 3 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 7bbb0384641..22e0e9d85ae 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,5 +1,8 @@
12012-12-12 Glenn Morris <rgm@gnu.org> 12012-12-12 Glenn Morris <rgm@gnu.org>
2 2
3 * flymake.texi (Customizable variables, Locating the buildfile):
4 Remove refs to flymake-buildfile-dirs, removed 2007-07-20. (Bug#13148)
5
3 * srecode.texi: Small edits. Set copyright to FSF, add explicit 6 * srecode.texi: Small edits. Set copyright to FSF, add explicit
4 GFDL 1.3+ license, fix up index. 7 GFDL 1.3+ license, fix up index.
5 * Makefile.in (INFO_TARGETS, DVI_TARGETS, PDF_TARGETS): Add srecode. 8 * Makefile.in (INFO_TARGETS, DVI_TARGETS, PDF_TARGETS): Add srecode.
diff --git a/doc/misc/flymake.texi b/doc/misc/flymake.texi
index 98279c8dae3..e82bfdfa6c5 100644
--- a/doc/misc/flymake.texi
+++ b/doc/misc/flymake.texi
@@ -291,9 +291,11 @@ A list of @code{(filename-regexp, init-function, cleanup-function
291getfname-function)} for configuring syntax check tools. @xref{Adding 291getfname-function)} for configuring syntax check tools. @xref{Adding
292support for a new syntax check tool}. 292support for a new syntax check tool}.
293 293
294@ignore
294@item flymake-buildfile-dirs 295@item flymake-buildfile-dirs
295A list of directories (relative paths) for searching a 296A list of directories (relative paths) for searching a
296buildfile. @xref{Locating the buildfile}. 297buildfile. @xref{Locating the buildfile}.
298@end ignore
297 299
298@item flymake-master-file-dirs 300@item flymake-master-file-dirs
299A list of directories for searching a master file. @xref{Locating a 301A list of directories for searching a master file. @xref{Locating a
@@ -675,10 +677,13 @@ buildfile to reference the 'project configuration' file.
675 677
676Special function, @code{flymake-find-buildfile} is provided for locating buildfiles. 678Special function, @code{flymake-find-buildfile} is provided for locating buildfiles.
677Searching for a buildfile is done in a manner similar to that of searching 679Searching for a buildfile is done in a manner similar to that of searching
678for possible master files. A customizable variable 680for possible master files.
681@ignore
682A customizable variable
679@code{flymake-buildfile-dirs} holds a list of relative paths to the 683@code{flymake-buildfile-dirs} holds a list of relative paths to the
680buildfile. They are checked sequentially until a buildfile is found. In case 684buildfile. They are checked sequentially until a buildfile is found.
681there's no build file, syntax check is aborted. 685@end ignore
686In case there's no build file, syntax check is aborted.
682 687
683Buildfile values are also cached. 688Buildfile values are also cached.
684 689