(while-no-input): Don't splice BODY directly into the `or' form.
[emacs.git] / man / flymake.texi
bloba47d4e8fa05a98fa371dcfcf96cc15c1d6826235
1 \input texinfo   @c -*-texinfo-*-
2 @comment %**start of header
3 @setfilename ../info/flymake
4 @set VERSION 0.3
5 @set UPDATED April 2004
6 @settitle GNU Flymake @value{VERSION}
7 @syncodeindex pg cp
8 @comment %**end of header
10 @copying
11 This manual is for GNU Flymake (version @value{VERSION}, @value{UPDATED}),
12 which is a universal on-the-fly syntax checker for GNU Emacs.
14 Copyright @copyright{} 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
16 @quotation
17 Permission is granted to copy, distribute and/or modify this document
18 under the terms of the GNU Free Documentation License, Version 1.2 or
19 any later version published by the Free Software Foundation; with no
20 Invariant Sections, with the Front-Cover texts being ``A GNU Manual,''
21 and with the Back-Cover Texts as in (a) below.  A copy of the license
22 is included in the section entitled ``GNU Free Documentation License''
23 in the Emacs manual.
25 (a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
26 this GNU Manual, like GNU software.  Copies published by the Free
27 Software Foundation raise funds for GNU development.''
29 This document is part of a collection distributed under the GNU Free
30 Documentation License.  If you want to distribute this document
31 separately from the collection, you can do so by adding a copy of the
32 license to the document, as described in section 6 of the license.
33 @end quotation
34 @end copying
36 @dircategory Emacs
37 @direntry
38 * Flymake: (flymake). A universal on-the-fly syntax checker.
39 @end direntry
41 @titlepage
42 @title GNU Flymake
43 @subtitle for version @value{VERSION}, @value{UPDATED}
44 @author Pavel Kobiakov(@email{pk_at_work@@yahoo.com})
45 @page
46 @vskip 0pt plus 1filll
47 @insertcopying
48 @end titlepage
50 @contents
52 @ifnottex
53 @node Top
54 @top GNU Flymake
55 @end ifnottex
57 @menu
58 * Overview of Flymake::
59 * Installing Flymake::
60 * Using Flymake::
61 * Configuring Flymake::
62 * Flymake Implementation::
63 * GNU Free Documentation License::
64 * Index::
65 @end menu
67 @node Overview of Flymake
68 @chapter Overview
69 @cindex Overview of Flymake
71 Flymake is a universal on-the-fly syntax checker implemented as an
72 Emacs minor mode. Flymake runs the pre-configured syntax check tool
73 (compiler for C++ files, @code{perl} for perl files, etc.) in the
74 background, passing it a temporary copy of the current buffer, and
75 parses the output for known error/warning message patterns. Flymake
76 then highlights erroneous lines (i.e. lines for which at least one
77 error or warning has been reported by the syntax check tool), and
78 displays an overall buffer status in the mode line. Status information
79 displayed by Flymake contains total number of errors and warnings
80 reported for the buffer during the last syntax check.
82 @code{flymake-goto-next-error} and @code{flymake-goto-prev-error}
83 functions allow for easy navigation to the next/previous erroneous
84 line, respectively.
86 Calling @code{flymake-display-err-menu-for-current-line} will popup a
87 menu containing error messages reported by the syntax check tool for
88 the current line. Errors/warnings belonging to another file, such as a
89 @code{.h} header file included by a @code{.c} file, are shown in the
90 current buffer as belonging to the first line. Menu items for such
91 messages also contain a filename and a line number. Selecting such a
92 menu item will automatically open the file and jump to the line with
93 error.
95 Syntax check is done 'on-the-fly'. It is started whenever
97 @itemize @bullet
98 @item buffer is loaded
99 @item a newline character is added to the buffer
100 @item some changes were made to the buffer more than @code{0.5} seconds ago (the
101 delay is configurable).
102 @end itemize
104 Flymake is a universal syntax checker in the sense that it's easily
105 extended to support new syntax check tools and error message
106 patterns. @xref{Configuring Flymake}.
108 @node Installing Flymake
109 @chapter Installing
110 @cindex Installing Flymake
113 Flymake is packaged in a single file, @code{flymake.el}.
115 To install/update Flymake, place @code{flymake.el} to a directory
116 somewhere on Emacs load path. You might also want to byte-compile
117 @code{flymake.el} to improve performance.
119 Also, place the following line in the @code{.emacs} file.
121 @lisp
122 (require 'flymake)
123 @end lisp
125 You might also map the most frequently used Flymake functions, such as
126 @code{flymake-goto-next-error}, to some keyboard shortcuts:
128 @lisp
129 (global-set-key [f3] 'flymake-display-err-menu-for-current-line)
130 (global-set-key [f4] 'flymake-goto-next-error)
131 @end lisp
133 @node Using Flymake
134 @chapter Using Flymake
135 @cindex Using Flymake
137 @menu
138 * Flymake mode::
139 * Running the syntax check::
140 * Navigating to error lines::
141 * Viewing error messages::
142 * Syntax check statuses::
143 * Troubleshooting::
144 @end menu
146 @node Flymake mode
147 @section Flymake mode
148 @cindex flymake-mode
150 Flymake is an Emacs minor mode. To use Flymake, you
151 must first activate @code{flymake-mode} by using the
152 @code{flymake-mode} function.
154 Instead of manually activating @code{flymake-mode}, you can configure
155 Flymake to automatically enable @code{flymake-mode} upon opening any
156 file for which syntax check is possible. To do so, place the following
157 line in @code{.emacs}:
159 @lisp
160 (add-hook 'find-file-hook 'flymake-find-file-hook)
161 @end lisp
163 @node Running the syntax check
164 @section Running the syntax check
165 @cindex Manually starting the syntax check
167 When @code{flymake-mode} is active, syntax check is started
168 automatically on any of the three conditions mentioned above. Syntax
169 check can also be started manually by using the
170 @code{flymake-start-syntax-check-for-current-buffer} function. This
171 can be used, for example, when changes were made to some other buffer
172 affecting the current buffer.
174 @node Navigating to error lines
175 @section Navigating to error lines
176 @cindex Navigating to error lines
178 After syntax check is completed, lines for which at least one error or
179 warning has been reported are highlighted, and total number of errors
180 and warning is shown in the mode line. Use the following functions to
181 navigate the highlighted lines.
183 @multitable @columnfractions 0.25 0.75
185 @item @code{flymake-goto-next-error}
186 @tab Moves point to the next erroneous line, if any.
188 @item @code{flymake-goto-prev-error}
189 @tab Moves point to the previous erroneous line.
191 @end multitable
193 These functions treat erroneous lines as a linked list. Therefore,
194 @code{flymake-goto-next-error} will go to the first erroneous line
195 when invoked in the end of the buffer.
197 @node Viewing error messages
198 @section Viewing error messages
199 @cindex Viewing error messages
201 To view error messages belonging to the current line, use the
202 @code{flymake-display-err-menu-for-current-line} function. If there's
203 at least one error or warning reported for the current line, this
204 function will display a popup menu with error/warning texts.
205 Selecting the menu item whose error belongs to another file brings
206 forward that file with the help of the
207 @code{flymake-goto-file-and-line} function.
209 @node Syntax check statuses
210 @section Syntax check statuses
211 @cindex Syntax check statuses
213 After syntax check is finished, its status is displayed in the mode line.
214 The following statuses are defined.
216 @multitable @columnfractions 0.25 0.75
217 @item Flymake* or Flymake:E/W*
218 @tab  Flymake is currently running. For the second case, E/W contains the
219       error and warning count for the previous run.
221 @item Flymake
222 @tab  Syntax check is not running. Usually this means syntax check was
223       successfully passed (no errors, no warnings). Other possibilities are:
224       syntax check was killed as a result of executing
225       @code{flymake-compile}, or syntax check cannot start as compilation
226       is currently in progress.
228 @item Flymake:E/W
229 @tab  Number of errors/warnings found by the syntax check process.
231 @item Flymake:!
232 @tab  Flymake was unable to find master file for the current buffer.
233 @end multitable
235 The following errors cause a warning message and switch flymake mode
236 OFF for the buffer.
238 @multitable @columnfractions 0.25 0.75
239 @item CFGERR
240 @tab  Syntax check process returned nonzero exit code, but no
241       errors/warnings were reported. This indicates a possible configuration
242       error (for example, no suitable error message patterns for the
243       syntax check tool).
245 @item NOMASTER
246 @tab  Flymake was unable to find master file for the current buffer.
248 @item NOMK
249 @tab  Flymake was unable to find a suitable buildfile for the current buffer.
251 @item PROCERR
252 @tab  Flymake was unable to launch a syntax check process.
253 @end multitable
256 @node Troubleshooting
257 @section Troubleshooting
258 @cindex Logging
259 @cindex Troubleshooting
261 Flymake uses a simple logging facility for indicating important points
262 in the control flow. The logging facility sends logging messages to
263 the @code{*Messages*} buffer. The information logged can be used for
264 resolving various problems related to Flymake.
266 Logging output is controlled by the @code{flymake-log-level}
267 variable. @code{3} is the  most verbose level, and @code{-1} switches
268 logging off.
270 @node Configuring Flymake
271 @chapter Configuring and Extending Flymake
272 @cindex Configuring and Extending Flymake
274 @menu
275 * Customizable variables::
276 * Adding support for a new syntax check tool::
277 @end menu
279 Flymake was designed to be easily extended for supporting new syntax
280 check tools and error message patterns.
282 @node Customizable variables
283 @section Customizable variables
284 @cindex Customizable variables
286 This section summarizes variables used for Flymake
287 configuration.
289 @table @code
290 @item flymake-log-level
291 Controls logging output, see @ref{Troubleshooting}.
293 @item flymake-allowed-file-name-masks
294 A list of @code{(filename-regexp, init-function, cleanup-function
295 getfname-function)} for configuring syntax check tools. @xref{Adding
296 support for a new syntax check tool}.
298 @item flymake-buildfile-dirs
299 A list of directories (relative paths) for searching a
300 buildfile. @xref{Locating the buildfile}.
302 @item flymake-master-file-dirs
303 A list of directories for searching a master file. @xref{Locating a
304 master file}.
306 @item flymake-get-project-include-dirs-function
307 A function used for obtaining a list of project include dirs (C/C++
308 specific). @xref{Getting the include directories}.
310 @item flymake-master-file-count-limit
311 @itemx flymake-check-file-limit
312 Used when looking for a master file. @xref{Locating a master file}.
314 @item flymake-err-line-patterns
315 Patterns for error/warning messages in the form @code{(regexp file-idx
316 line-idx col-idx err-text-idx)}. @xref{Parsing the output}.
318 @item flymake-compilation-prevents-syntax-check
319 A flag indicating whether compilation and syntax check of the same
320 file cannot be run simultaneously.
322 @item flymake-no-changes-timeout
323 If any changes are made to the buffer, syntax check is automatically
324 started after @code{flymake-no-changes-timeout} seconds.
326 @item flymake-gui-warnings-enabled
327 A boolean flag indicating whether Flymake will show message boxes for
328 non-recoverable errors. If @code{flymake-gui-warnings-enabled} is
329 @code{nil}, these errors will only be logged to the @code{*Messages*}
330 buffer.
332 @item flymake-start-syntax-check-on-newline
333 A boolean flag indicating whether to start syntax check after a
334 newline character is added to the buffer.
336 @item flymake-errline
337 A custom face for highlighting lines for which at least one error has
338 been reported.
340 @item flymake-warnline
341 A custom face for highlighting lines for which at least one warning
342 and no errors have been reported.
344 @end table
346 @node Adding support for a new syntax check tool
347 @section Adding support for a new syntax check tool
348 @cindex Adding support for a new syntax check tool
350 @menu
351 * Example -- Configuring a tool called directly::
352 * Example -- Configuring a tool called via make::
353 @end menu
355 Syntax check tools are configured using the
356 @code{flymake-allowed-file-name-masks} list. Each item of this list
357 has the following format:
359 @lisp
360 (filename-regexp, init-function, cleanup-function, getfname-function)
361 @end lisp
363 @table @code
364 @item filename-regexp
365 This field is used as a key for locating init/cleanup/getfname
366 functions for the buffer.  Items in
367 @code{flymake-allowed-file-name-masks} are searched sequentially. The
368 first item with @code{filename-regexp} matching buffer filename is
369 selected. If no match is found, @code{flymake-mode} is switched off.
371 @item init-function
372 @code{init-function} is required to initialize the syntax check,
373 usually by creating a temporary copy of the buffer contents. The
374 function must return @code{(list cmd-name arg-list)}. If
375 @code{init-function} returns null, syntax check is aborted, by
376 @code{flymake-mode} is not switched off.
378 @item cleanup-function
379 @code{cleanup-function} is called after the syntax check process is
380 complete and should take care of proper deinitialization, which is
381 usually deleting a temporary copy created by the @code{init-function}.
383 @item getfname-function
384 This function is used for translating filenames reported by the syntax
385 check tool into ``real'' filenames. Filenames reported by the tool
386 will be different from the real ones, as actually the tool works with
387 the temporary copy.  In most cases, the default implementation
388 provided by Flymake, @code{flymake-get-real-file-name}, can be used as
389 @code{getfname-function}.
391 @end table
393 To add support for a new syntax check tool, write corresponding
394 @code{init-function}, and, optionally @code{cleanup-function} and
395 @code{getfname-function}.  If the format of error messages reported by
396 the new tool is not yet supported by Flymake, add a new entry to
397 the @code{flymake-err-line-patterns} list.
399 The following sections contain some examples of configuring Flymake
400 support for various syntax check tools.
402 @node Example -- Configuring a tool called directly
403 @subsection Example -- Configuring a tool called directly
404 @cindex Adding support for perl
406 In this example, we will add support for @code{perl} as a syntax check
407 tool. @code{perl} supports the @code{-c} option which does syntax
408 checking.
410 First, we write the @code{init-function}:
412 @lisp
413 (defun flymake-perl-init ()
414   (let* ((temp-file (flymake-init-create-temp-buffer-copy
415                      'flymake-create-temp-inplace))
416          (local-file (file-relative-name
417                       temp-file
418                       (file-name-directory buffer-file-name))))
419     (list "perl" (list "-wc " local-file))))
420 @end lisp
422 @code{flymake-perl-init} creates a temporary copy of the buffer
423 contents with the help of
424 @code{flymake-init-create-temp-buffer-copy}, and builds an appropriate
425 command line.
427 Next, we add a new entry to the
428 @code{flymake-allowed-file-name-masks}:
430 @lisp
431 (setq flymake-allowed-file-name-masks
432       (cons '(".+\\.pl$"
433               flymake-perl-init
434               flymake-simple-cleanup
435               flymake-get-real-file-name)
436             flymake-allowed-file-name-masks))
437 @end lisp
439 Note that we use standard @code{cleanup-function} and
440 @code{getfname-function}.
442 Finally, we add an entry to @code{flymake-err-line-patterns}:
444 @lisp
445 (setq flymake-err-line-patterns
446       (cons '("\\(.*\\) at \\([^ \n]+\\) line \\([0-9]+\\)[,.\n]"
447               2 3 nil 1)
448             flymake-err-line-patterns))
449 @end lisp
451 @node Example -- Configuring a tool called via make
452 @subsection Example -- Configuring a tool called via make
453 @cindex Adding support for C (gcc+make)
455 In this example we will add support for C files syntax checked by
456 @code{gcc} called via @code{make}.
458 We're not required to write any new functions, as Flymake already has
459 functions for @code{make}. We just add a new entry to the
460 @code{flymake-allowed-file-name-masks}:
462 @lisp
463 (setq flymake-allowed-file-name-masks
464       (cons '(".+\\.c$"
465               flymake-simple-make-init
466               flymake-simple-cleanup
467               flymake-get-real-file-name)
468             flymake-allowed-file-name-masks))
469 @end lisp
471 @code{flymake-simple-make-init} builds the following @code{make}
472 command line:
474 @lisp
475 (list "make"
476       (list "-s" "-C"
477             base-dir
478             (concat "CHK_SOURCES=" source)
479             "SYNTAX_CHECK_MODE=1"
480             "check-syntax"))
481 @end lisp
483 @code{base-dir} is a directory containing @code{Makefile}, see @ref{Locating the buildfile}.
485 Thus, @code{Makefile} must contain the @code{check-syntax} target. In
486 our case this target might look like this:
488 @verbatim
489 check-syntax:
490         gcc -o nul -S ${CHK_SOURCES}
491 @end verbatim
493 The format of error messages reported by @code{gcc} is already
494 supported by Flymake, so we don't have to add a new entry to
495 @code{flymake-err-line-patterns}.
497 @node Flymake Implementation
498 @chapter Flymake Implementation
499 @cindex Implementation details
501 @menu
502 * Determining whether syntax check is possible::
503 * Making a temporary copy::
504 * Locating a master file::
505 * Getting the include directories::
506 * Locating the buildfile::
507 * Starting the syntax check process::
508 * Parsing the output::
509 * Highlighting erroneous lines::
510 * Interaction with other modes::
511 @end menu
513 Syntax check is started by calling @code{flymake-start-syntax-check-for-current-buffer}.
514 Flymake first determines whether it is able to do syntax
515 check. It then saves a copy of the buffer in a temporary file in the
516 buffer's directory (or in the system temp directory -- for java
517 files), creates a syntax check command and launches a process with
518 this command. The output is parsed using a list of error message patterns,
519 and error information (file name, line number, type and text) is
520 saved. After the process has finished, Flymake highlights erroneous
521 lines in the buffer using the accumulated error information.
523 @node Determining whether syntax check is possible
524 @section Determining whether syntax check is possible
525 @cindex Syntax check models
526 @cindex Master file
528 Syntax check is considered possible if there's an entry in
529 @code{flymake-allowed-file-name-masks} matching buffer's filename and
530 its @code{init-function} returns non-@code{nil} value.
532 Two syntax check modes are distinguished:
534 @enumerate
536 @item
537 Buffer can be syntax checked in a standalone fashion, that is, the
538 file (its temporary copy, in fact) can be passed over to the compiler to
539 do the syntax check. Examples are C/C++ (.c, .cpp) and Java (.java)
540 sources.
542 @item
543 Buffer can be syntax checked, but additional file, called master file,
544 is required to perform this operation. A master file is a file that
545 includes the current file, so that running a syntax check tool on it
546 will also check syntax in the current file. Examples are C/C++ (.h,
547 .hpp) headers.
549 @end enumerate
551 These modes are handled inside init/cleanup/getfname functions, see
552 @ref{Adding support for a new syntax check tool}.
554 Flymake contains implementations of all functionality required to
555 support different syntax check modes described above (making
556 temporary copies, finding master files, etc.), as well as some
557 tool-specific (routines for @code{make}, @code{Ant}, etc.) code.
560 @node Making a temporary copy
561 @section Making a temporary copy
562 @cindex Temporary copy of the buffer
563 @cindex Master file
565 After the possibility of the syntax check has been determined, a
566 temporary copy of the current buffer is made so that the most recent
567 unsaved changes could be seen by the syntax check tool. Making a copy
568 is quite straightforward in a standalone case (mode @code{1}), as it's
569 just saving buffer contents to a temporary file.
571 Things get trickier, however, when master file is involved, as it
572 requires to
574 @itemize @bullet
575 @item locate a master file
576 @item patch it to include the current file using its new (temporary)
577 name.
578 @end itemize
580 Locating a master file is discussed in the following section.
582 Patching just changes all appropriate lines of the master file so that they
583 use the new (temporary) name of the current file. For example, suppose current
584 file name is @code{file.h}, the master file is @code{file.cpp}, and
585 it includes current file via @code{#include "file.h"}. Current file's copy
586 is saved to file @code{file_flymake.h}, so the include line must be
587 changed to @code{#include "file_flymake.h"}. Finally, patched master file
588 is saved to @code{file_flymake_master.cpp}, and the last one is passed to
589 the syntax check tool.
591 @node Locating a master file
592 @section Locating a master file
593 @cindex Master file
595 Master file is located in two steps.
597 First, a list of possible master files is built. A simple name
598 matching is used to find the files. For a C++ header @code{file.h},
599 Flymake searches for all @code{.cpp} files in the directories whose relative paths are
600 stored in a customizable variable @code{flymake-master-file-dirs}, which
601 usually contains something like @code{("." "./src")}. No more than
602 @code{flymake-master-file-count-limit} entries is added to the master file
603 list. The list is then sorted to move files with names @code{file.cpp} to
604 the top.
606 Next, each master file in a list is checked to contain the appropriate
607 include directives. No more than @code{flymake-check-file-limit} of each
608 file are parsed.
610 For @code{file.h}, the include directives to look for are
611 @code{#include "file.h"}, @code{#include "../file.h"}, etc. Each
612 include is checked against a list of include directories
613 (see @ref{Getting the include directories}) to be sure it points to the
614 correct @code{file.h}.
616 First matching master file found stops the search. The master file is then
617 patched and saved to disk. In case no master file is found, syntax check is
618 aborted, and corresponding status (!) is reported in the mode line.
620 @node Getting the include directories
621 @section Getting the include directories
622 @cindex Include directories (C/C++ specific)
624 Two sets of include directories are distinguished: system include directories
625 and project include directories. The former is just the contents of the
626 @code{INCLUDE} environment variable. The latter is not so easy to obtain,
627 and the way it can be obtained can vary greatly for different projects.
628 Therefore, a customizable variable
629 @code{flymake-get-project-include-dirs-function} is used to provide the
630 way to implement the desired behavior.
632 The default implementation, @code{flymake-get-project-include-dirs-imp},
633 uses a @code{make} call. This requires a correct base directory, that is, a
634 directory containing a correct @code{Makefile}, to be determined.
636 As obtaining the project include directories might be a costly operation, its
637 return value is cached in the hash table. The cache is cleared in the beginning
638 of every syntax check attempt.
640 @node Locating the buildfile
641 @section Locating the buildfile
642 @cindex Locating the buildfile
643 @cindex buildfile, locating
644 @cindex Makefile, locating
646 Flymake can be configured to use different tools for performing syntax
647 checks. For example, it can use direct compiler call to syntax check a perl
648 script or a call to @code{make} for a more complicated case of a
649 @code{C/C++} source. The general idea is that simple files, like perl
650 scripts and html pages, can be checked by directly invoking a
651 corresponding tool. Files that are usually more complex and generally
652 used as part of larger projects, might require non-trivial options to
653 be passed to the syntax check tool, like include directories for
654 C++. The latter files are syntax checked using some build tool, like
655 @code{make} or @code{Ant}.
657 All @code{make} configuration data is usually stored in a file called
658 @code{Makefile}. To allow for future extensions, flymake uses a notion of
659 buildfile to reference the 'project configuration' file.
661 Special function, @code{flymake-find-buildfile} is provided for locating buildfiles.
662 Searching for a buildfile is done in a manner similar to that of searching
663 for possible master files. A customizable variable
664 @code{flymake-buildfile-dirs} holds a list of relative paths to the
665 buildfile. They are checked sequentially until a buildfile is found. In case
666 there's no build file, syntax check is aborted.
668 Buildfile values are also cached.
670 @node Starting the syntax check process
671 @section Starting the syntax check process
672 @cindex Syntax check process
674 The command line (command name and the list of arguments) for launching a process is returned by the
675 initialization function. Flymake then just calls @code{start-process}
676 to start an asynchronous process and configures process filter and
677 sentinel which is used for processing the output of the syntax check
678 tool.
680 @node Parsing the output
681 @section Parsing the output
682 @cindex Parsing the output
684 The output generated by the syntax check tool is parsed in the process
685 filter/sentinel using the error message patterns stored in the
686 @code{flymake-err-line-patterns} variable. This variable contains a
687 list of items of the form @code{(regexp file-idx line-idx
688 err-text-idx)}, used to determine whether a particular line is an
689 error message and extract file name, line number and error text,
690 respectively. Error type (error/warning) is also guessed by matching
691 error text with the '@code{^[wW]arning}' pattern. Anything that was not
692 classified as a warning is considered an error. Type is then used to
693 sort error menu items, which shows error messages first.
695 Flymake is also able to interpret error message patterns missing err-text-idx
696 information. This is done by merely taking the rest of the matched line
697 (@code{(substring line (match-end 0))}) as error text. This trick allows
698 to make use of a huge collection of error message line patterns from
699 @code{compile.el}. All these error patterns are appended to
700 the end of @code{flymake-err-line-patterns}.
702 The error information obtained is saved in a buffer local
703 variable. The buffer for which the process output belongs is
704 determined from the process-id@w{}->@w{}buffer mapping updated
705 after every process launch/exit.
707 @node Highlighting erroneous lines
708 @section Highlighting erroneous lines
709 @cindex Erroneous lines, faces
711 Highlighting is implemented with overlays and happens in the process
712 sentinel, after calling the cleanup function. Two customizable faces
713 are used: @code{flymake-errline} and
714 @code{flymake-warnline}.  Errors belonging outside the current
715 buffer are considered to belong to line 1 of the current buffer.
717 @node Interaction with other modes
718 @section Interaction with other modes
719 @cindex Interaction with other modes
720 @cindex Interaction with compile mode
722 The only mode flymake currently knows about is @code{compile}.
724 Flymake can be configured to not start syntax check if it thinks the
725 compilation is in progress. The check is made by the
726 @code{flymake-compilation-is-running}, which tests the
727 @code{compilation-in-progress} variable. The reason why this might be
728 useful is saving CPU time in case both syntax check and compilation
729 are very CPU intensive. The original reason for adding this feature,
730 though, was working around a locking problem with MS Visual C++ compiler.
732 Flymake also provides an alternative command for starting compilation,
733 @code{flymake-compile}:
735 @lisp
736 (defun flymake-compile ()
737   "Kill all flymake syntax checks then start compilation."
738   (interactive)
739   (flymake-stop-all-syntax-checks)
740   (call-interactively 'compile))
741 @end lisp
743 It just kills all the active syntax check processes before calling
744 @code{compile}.
746 @node GNU Free Documentation License
747 @appendix GNU Free Documentation License
748 @include doclicense.texi
750 @node Index
751 @unnumbered Index
753 @printindex cp
755 @bye
757 @ignore
758    arch-tag: 9f0db077-5598-49ab-90b9-8df9248a63ec
759 @end ignore