* configure.ac: If with-file-notification=yes, if gfile not found,
[emacs.git] / doc / misc / flymake.texi
blobd1f3e21c20ead508c5be4320fa3631876684befc
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--2013 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.3 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''.
24 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
25 modify this GNU manual.''
26 @end quotation
27 @end copying
29 @dircategory Emacs misc features
30 @direntry
31 * Flymake: (flymake).           A universal on-the-fly syntax checker.
32 @end direntry
34 @titlepage
35 @title GNU Flymake
36 @subtitle for version @value{VERSION}, @value{UPDATED}
37 @author Pavel Kobiakov(@email{pk_at_work@@yahoo.com})
38 @page
39 @vskip 0pt plus 1filll
40 @insertcopying
41 @end titlepage
43 @contents
45 @ifnottex
46 @node Top
47 @top GNU Flymake
48 @insertcopying
49 @end ifnottex
51 @menu
52 * Overview of Flymake::
53 * Installing Flymake::
54 * Using Flymake::
55 * Configuring Flymake::
56 * Flymake Implementation::
57 * GNU Free Documentation License::
58 * Index::
59 @end menu
61 @node Overview of Flymake
62 @chapter Overview
63 @cindex Overview of Flymake
65 Flymake is a universal on-the-fly syntax checker implemented as an
66 Emacs minor mode.  Flymake runs the pre-configured syntax check tool
67 (compiler for C++ files, @code{perl} for perl files, etc.)@: in the
68 background, passing it a temporary copy of the current buffer, and
69 parses the output for known error/warning message patterns.  Flymake
70 then highlights erroneous lines (i.e., lines for which at least one
71 error or warning has been reported by the syntax check tool), and
72 displays an overall buffer status in the mode line.  Status information
73 displayed by Flymake contains total number of errors and warnings
74 reported for the buffer during the last syntax check.
76 @code{flymake-goto-next-error} and @code{flymake-goto-prev-error}
77 functions allow for easy navigation to the next/previous erroneous
78 line, respectively.
80 Calling @code{flymake-display-err-menu-for-current-line} will popup a
81 menu containing error messages reported by the syntax check tool for
82 the current line.  Errors/warnings belonging to another file, such as a
83 @code{.h} header file included by a @code{.c} file, are shown in the
84 current buffer as belonging to the first line.  Menu items for such
85 messages also contain a filename and a line number.  Selecting such a
86 menu item will automatically open the file and jump to the line with
87 error.
89 Syntax check is done 'on-the-fly'.  It is started whenever
91 @itemize @bullet
92 @item buffer is loaded
93 @item a newline character is added to the buffer
94 @item some changes were made to the buffer more than @code{0.5} seconds ago (the
95 delay is configurable).
96 @end itemize
98 Flymake is a universal syntax checker in the sense that it's easily
99 extended to support new syntax check tools and error message
100 patterns.  @xref{Configuring Flymake}.
102 @node Installing Flymake
103 @chapter Installing
104 @cindex Installing Flymake
107 Flymake is packaged in a single file, @code{flymake.el}.
109 To install/update Flymake, place @code{flymake.el} to a directory
110 somewhere on Emacs load path.  You might also want to byte-compile
111 @code{flymake.el} to improve performance.
113 Also, place the following line in the @code{.emacs} file.
115 @lisp
116 (require 'flymake)
117 @end lisp
119 You might also map the most frequently used Flymake functions, such as
120 @code{flymake-goto-next-error}, to some keyboard shortcuts:
122 @lisp
123 (global-set-key [f3] 'flymake-display-err-menu-for-current-line)
124 (global-set-key [f4] 'flymake-goto-next-error)
125 @end lisp
127 @node Using Flymake
128 @chapter Using Flymake
129 @cindex Using Flymake
131 @menu
132 * Flymake mode::
133 * Running the syntax check::
134 * Navigating to error lines::
135 * Viewing error messages::
136 * Syntax check statuses::
137 * Troubleshooting::
138 @end menu
140 @node Flymake mode
141 @section Flymake mode
142 @cindex flymake-mode
144 Flymake is an Emacs minor mode.  To use Flymake, you
145 must first activate @code{flymake-mode} by using the
146 @code{flymake-mode} function.
148 Instead of manually activating @code{flymake-mode}, you can configure
149 Flymake to automatically enable @code{flymake-mode} upon opening any
150 file for which syntax check is possible.  To do so, place the following
151 line in @code{.emacs}:
153 @lisp
154 (add-hook 'find-file-hook 'flymake-find-file-hook)
155 @end lisp
157 @node Running the syntax check
158 @section Running the syntax check
159 @cindex Manually starting the syntax check
161 When @code{flymake-mode} is active, syntax check is started
162 automatically on any of the three conditions mentioned above.  Syntax
163 check can also be started manually by using the
164 @code{flymake-start-syntax-check-for-current-buffer} function.  This
165 can be used, for example, when changes were made to some other buffer
166 affecting the current buffer.
168 @node Navigating to error lines
169 @section Navigating to error lines
170 @cindex Navigating to error lines
172 After syntax check is completed, lines for which at least one error or
173 warning has been reported are highlighted, and total number of errors
174 and warning is shown in the mode line.  Use the following functions to
175 navigate the highlighted lines.
177 @multitable @columnfractions 0.25 0.75
179 @item @code{flymake-goto-next-error}
180 @tab Moves point to the next erroneous line, if any.
182 @item @code{flymake-goto-prev-error}
183 @tab Moves point to the previous erroneous line.
185 @end multitable
187 These functions treat erroneous lines as a linked list.  Therefore,
188 @code{flymake-goto-next-error} will go to the first erroneous line
189 when invoked in the end of the buffer.
191 @node Viewing error messages
192 @section Viewing error messages
193 @cindex Viewing error messages
195 To view error messages belonging to the current line, use the
196 @code{flymake-display-err-menu-for-current-line} function.  If there's
197 at least one error or warning reported for the current line, this
198 function will display a popup menu with error/warning texts.
199 Selecting the menu item whose error belongs to another file brings
200 forward that file with the help of the
201 @code{flymake-goto-file-and-line} function.
203 @node Syntax check statuses
204 @section Syntax check statuses
205 @cindex Syntax check statuses
207 After syntax check is finished, its status is displayed in the mode line.
208 The following statuses are defined.
210 @multitable @columnfractions 0.25 0.75
211 @item Flymake* or Flymake:E/W*
212 @tab  Flymake is currently running.  For the second case, E/W contains the
213 error and warning count for the previous run.
215 @item Flymake
216 @tab  Syntax check is not running.  Usually this means syntax check was
217 successfully passed (no errors, no warnings).  Other possibilities are:
218 syntax check was killed as a result of executing
219 @code{flymake-compile}, or syntax check cannot start as compilation
220 is currently in progress.
222 @item Flymake:E/W
223 @tab  Number of errors/warnings found by the syntax check process.
225 @item Flymake:!
226 @tab  Flymake was unable to find master file for the current buffer.
227 @end multitable
229 The following errors cause a warning message and switch flymake mode
230 OFF for the buffer.
232 @multitable @columnfractions 0.25 0.75
233 @item CFGERR
234 @tab  Syntax check process returned nonzero exit code, but no
235 errors/warnings were reported.  This indicates a possible configuration
236 error (for example, no suitable error message patterns for the
237 syntax check tool).
239 @item NOMASTER
240 @tab  Flymake was unable to find master file for the current buffer.
242 @item NOMK
243 @tab  Flymake was unable to find a suitable buildfile for the current buffer.
245 @item PROCERR
246 @tab  Flymake was unable to launch a syntax check process.
247 @end multitable
250 @node Troubleshooting
251 @section Troubleshooting
252 @cindex Logging
253 @cindex Troubleshooting
255 Flymake uses a simple logging facility for indicating important points
256 in the control flow.  The logging facility sends logging messages to
257 the @code{*Messages*} buffer.  The information logged can be used for
258 resolving various problems related to Flymake.
260 Logging output is controlled by the @code{flymake-log-level}
261 variable.  @code{3} is the  most verbose level, and @code{-1} switches
262 logging off.
264 @node Configuring Flymake
265 @chapter Configuring and Extending Flymake
266 @cindex Configuring and Extending Flymake
268 @menu
269 * Customizable variables::
270 * Adding support for a new syntax check tool::
271 @end menu
273 Flymake was designed to be easily extended for supporting new syntax
274 check tools and error message patterns.
276 @node Customizable variables
277 @section Customizable variables
278 @cindex Customizable variables
280 This section summarizes variables used for Flymake
281 configuration.
283 @table @code
284 @item flymake-log-level
285 Controls logging output, see @ref{Troubleshooting}.
287 @item flymake-allowed-file-name-masks
288 A list of @code{(filename-regexp, init-function, cleanup-function
289 getfname-function)} for configuring syntax check tools.  @xref{Adding
290 support for a new syntax check tool}.
292 @ignore
293 @item flymake-buildfile-dirs
294 A list of directories (relative paths) for searching a
295 buildfile.  @xref{Locating the buildfile}.
296 @end ignore
298 @item flymake-master-file-dirs
299 A list of directories for searching a master file.  @xref{Locating a
300 master file}.
302 @item flymake-get-project-include-dirs-function
303 A function used for obtaining a list of project include dirs (C/C++
304 specific).  @xref{Getting the include directories}.
306 @item flymake-master-file-count-limit
307 @itemx flymake-check-file-limit
308 Used when looking for a master file.  @xref{Locating a master file}.
310 @item flymake-err-line-patterns
311 Patterns for error/warning messages in the form @code{(regexp file-idx
312 line-idx col-idx err-text-idx)}.  @xref{Parsing the output}.
314 @item flymake-warning-predicate
315 Predicate to classify error text as warning. @xref{Parsing the output}.
317 @item flymake-compilation-prevents-syntax-check
318 A flag indicating whether compilation and syntax check of the same
319 file cannot be run simultaneously.
321 @item flymake-no-changes-timeout
322 If any changes are made to the buffer, syntax check is automatically
323 started after @code{flymake-no-changes-timeout} seconds.
325 @item flymake-gui-warnings-enabled
326 A boolean flag indicating whether Flymake will show message boxes for
327 non-recoverable errors.  If @code{flymake-gui-warnings-enabled} is
328 @code{nil}, these errors will only be logged to the @code{*Messages*}
329 buffer.
331 @item flymake-start-syntax-check-on-newline
332 A boolean flag indicating whether to start syntax check after a
333 newline character is added to the buffer.
335 @item flymake-errline
336 A custom face for highlighting lines for which at least one error has
337 been reported.
339 @item flymake-warnline
340 A custom face for highlighting lines for which at least one warning
341 and no errors have been reported.
343 @item flymake-error-bitmap
344 A bitmap used in the fringe to mark lines for which an error has
345 been reported.
347 @item flymake-warning-bitmap
348 A bitmap used in the fringe to mark lines for which a warning has
349 been reported.
351 @item flymake-fringe-indicator-position
352 Which fringe (if any) should show the warning/error bitmaps.
354 @end table
356 @node Adding support for a new syntax check tool
357 @section Adding support for a new syntax check tool
358 @cindex Adding support for a new syntax check tool
360 @menu
361 * Example---Configuring a tool called directly::
362 * Example---Configuring a tool called via make::
363 @end menu
365 Syntax check tools are configured using the
366 @code{flymake-allowed-file-name-masks} list.  Each item of this list
367 has the following format:
369 @lisp
370 (filename-regexp, init-function, cleanup-function, getfname-function)
371 @end lisp
373 @table @code
374 @item filename-regexp
375 This field is used as a key for locating init/cleanup/getfname
376 functions for the buffer.  Items in
377 @code{flymake-allowed-file-name-masks} are searched sequentially.  The
378 first item with @code{filename-regexp} matching buffer filename is
379 selected.  If no match is found, @code{flymake-mode} is switched off.
381 @item init-function
382 @code{init-function} is required to initialize the syntax check,
383 usually by creating a temporary copy of the buffer contents.  The
384 function must return @code{(list cmd-name arg-list)}.  If
385 @code{init-function} returns null, syntax check is aborted, by
386 @code{flymake-mode} is not switched off.
388 @item cleanup-function
389 @code{cleanup-function} is called after the syntax check process is
390 complete and should take care of proper deinitialization, which is
391 usually deleting a temporary copy created by the @code{init-function}.
393 @item getfname-function
394 This function is used for translating filenames reported by the syntax
395 check tool into ``real'' filenames.  Filenames reported by the tool
396 will be different from the real ones, as actually the tool works with
397 the temporary copy.  In most cases, the default implementation
398 provided by Flymake, @code{flymake-get-real-file-name}, can be used as
399 @code{getfname-function}.
401 @end table
403 To add support for a new syntax check tool, write corresponding
404 @code{init-function}, and, optionally @code{cleanup-function} and
405 @code{getfname-function}.  If the format of error messages reported by
406 the new tool is not yet supported by Flymake, add a new entry to
407 the @code{flymake-err-line-patterns} list.
409 The following sections contain some examples of configuring Flymake
410 support for various syntax check tools.
412 @node Example---Configuring a tool called directly
413 @subsection Example---Configuring a tool called directly
414 @cindex Adding support for perl
416 In this example, we will add support for @code{perl} as a syntax check
417 tool.  @code{perl} supports the @code{-c} option which does syntax
418 checking.
420 First, we write the @code{init-function}:
422 @lisp
423 (defun flymake-perl-init ()
424   (let* ((temp-file (flymake-init-create-temp-buffer-copy
425                      'flymake-create-temp-inplace))
426          (local-file (file-relative-name
427                       temp-file
428                       (file-name-directory buffer-file-name))))
429     (list "perl" (list "-wc " local-file))))
430 @end lisp
432 @code{flymake-perl-init} creates a temporary copy of the buffer
433 contents with the help of
434 @code{flymake-init-create-temp-buffer-copy}, and builds an appropriate
435 command line.
437 Next, we add a new entry to the
438 @code{flymake-allowed-file-name-masks}:
440 @lisp
441 (setq flymake-allowed-file-name-masks
442       (cons '(".+\\.pl$"
443               flymake-perl-init
444               flymake-simple-cleanup
445               flymake-get-real-file-name)
446             flymake-allowed-file-name-masks))
447 @end lisp
449 Note that we use standard @code{cleanup-function} and
450 @code{getfname-function}.
452 Finally, we add an entry to @code{flymake-err-line-patterns}:
454 @lisp
455 (setq flymake-err-line-patterns
456       (cons '("\\(.*\\) at \\([^ \n]+\\) line \\([0-9]+\\)[,.\n]"
457               2 3 nil 1)
458             flymake-err-line-patterns))
459 @end lisp
461 @node Example---Configuring a tool called via make
462 @subsection Example---Configuring a tool called via make
463 @cindex Adding support for C (gcc+make)
465 In this example we will add support for C files syntax checked by
466 @command{gcc} called via @command{make}.
468 We're not required to write any new functions, as Flymake already has
469 functions for @command{make}.  We just add a new entry to the
470 @code{flymake-allowed-file-name-masks}:
472 @lisp
473 (setq flymake-allowed-file-name-masks
474       (cons '(".+\\.c$"
475               flymake-simple-make-init
476               flymake-simple-cleanup
477               flymake-get-real-file-name)
478             flymake-allowed-file-name-masks))
479 @end lisp
481 @code{flymake-simple-make-init} builds the following @command{make}
482 command line:
484 @lisp
485 (list "make"
486       (list "-s" "-C"
487             base-dir
488             (concat "CHK_SOURCES=" source)
489             "SYNTAX_CHECK_MODE=1"
490             "check-syntax"))
491 @end lisp
493 @code{base-dir} is a directory containing @code{Makefile}, see @ref{Locating the buildfile}.
495 Thus, @code{Makefile} must contain the @code{check-syntax} target.  In
496 our case this target might look like this:
498 @verbatim
499 check-syntax:
500         gcc -o /dev/null -S ${CHK_SOURCES}
501 @end verbatim
503 @noindent
504 The format of error messages reported by @command{gcc} is already
505 supported by Flymake, so we don't have to add a new entry to
506 @code{flymake-err-line-patterns}.  Note that if you are using
507 Automake, you may want to replace @code{gcc} with the standard
508 Automake variable @code{COMPILE}:
510 @verbatim
511 check-syntax:
512         $(COMPILE) -o /dev/null -S ${CHK_SOURCES}
513 @end verbatim
515 @node Flymake Implementation
516 @chapter Flymake Implementation
517 @cindex Implementation details
519 @menu
520 * Determining whether syntax check is possible::
521 * Making a temporary copy::
522 * Locating a master file::
523 * Getting the include directories::
524 * Locating the buildfile::
525 * Starting the syntax check process::
526 * Parsing the output::
527 * Highlighting erroneous lines::
528 * Interaction with other modes::
529 @end menu
531 Syntax check is started by calling @code{flymake-start-syntax-check-for-current-buffer}.
532 Flymake first determines whether it is able to do syntax
533 check.  It then saves a copy of the buffer in a temporary file in the
534 buffer's directory (or in the system temp directory, for java
535 files), creates a syntax check command and launches a process with
536 this command.  The output is parsed using a list of error message patterns,
537 and error information (file name, line number, type and text) is
538 saved.  After the process has finished, Flymake highlights erroneous
539 lines in the buffer using the accumulated error information.
541 @node Determining whether syntax check is possible
542 @section Determining whether syntax check is possible
543 @cindex Syntax check models
544 @cindex Master file
546 Syntax check is considered possible if there's an entry in
547 @code{flymake-allowed-file-name-masks} matching buffer's filename and
548 its @code{init-function} returns non-@code{nil} value.
550 Two syntax check modes are distinguished:
552 @enumerate
554 @item
555 Buffer can be syntax checked in a standalone fashion, that is, the
556 file (its temporary copy, in fact) can be passed over to the compiler to
557 do the syntax check.  Examples are C/C++ (.c, .cpp) and Java (.java)
558 sources.
560 @item
561 Buffer can be syntax checked, but additional file, called master file,
562 is required to perform this operation.  A master file is a file that
563 includes the current file, so that running a syntax check tool on it
564 will also check syntax in the current file.  Examples are C/C++ (.h,
565 .hpp) headers.
567 @end enumerate
569 These modes are handled inside init/cleanup/getfname functions, see
570 @ref{Adding support for a new syntax check tool}.
572 Flymake contains implementations of all functionality required to
573 support different syntax check modes described above (making temporary
574 copies, finding master files, etc.), as well as some tool-specific
575 (routines for Make, Ant, etc.)@: code.
578 @node Making a temporary copy
579 @section Making a temporary copy
580 @cindex Temporary copy of the buffer
581 @cindex Master file
583 After the possibility of the syntax check has been determined, a
584 temporary copy of the current buffer is made so that the most recent
585 unsaved changes could be seen by the syntax check tool.  Making a copy
586 is quite straightforward in a standalone case (mode @code{1}), as it's
587 just saving buffer contents to a temporary file.
589 Things get trickier, however, when master file is involved, as it
590 requires to
592 @itemize @bullet
593 @item locate a master file
594 @item patch it to include the current file using its new (temporary)
595 name.
596 @end itemize
598 Locating a master file is discussed in the following section.
600 Patching just changes all appropriate lines of the master file so that they
601 use the new (temporary) name of the current file.  For example, suppose current
602 file name is @code{file.h}, the master file is @code{file.cpp}, and
603 it includes current file via @code{#include "file.h"}.  Current file's copy
604 is saved to file @code{file_flymake.h}, so the include line must be
605 changed to @code{#include "file_flymake.h"}.  Finally, patched master file
606 is saved to @code{file_flymake_master.cpp}, and the last one is passed to
607 the syntax check tool.
609 @node Locating a master file
610 @section Locating a master file
611 @cindex Master file
613 Master file is located in two steps.
615 First, a list of possible master files is built.  A simple name
616 matching is used to find the files.  For a C++ header @code{file.h},
617 Flymake searches for all @code{.cpp} files in the directories whose relative paths are
618 stored in a customizable variable @code{flymake-master-file-dirs}, which
619 usually contains something like @code{("." "./src")}.  No more than
620 @code{flymake-master-file-count-limit} entries is added to the master file
621 list.  The list is then sorted to move files with names @code{file.cpp} to
622 the top.
624 Next, each master file in a list is checked to contain the appropriate
625 include directives.  No more than @code{flymake-check-file-limit} of each
626 file are parsed.
628 For @code{file.h}, the include directives to look for are
629 @code{#include "file.h"}, @code{#include "../file.h"}, etc.  Each
630 include is checked against a list of include directories
631 (see @ref{Getting the include directories}) to be sure it points to the
632 correct @code{file.h}.
634 First matching master file found stops the search.  The master file is then
635 patched and saved to disk.  In case no master file is found, syntax check is
636 aborted, and corresponding status (!) is reported in the mode line.
638 @node Getting the include directories
639 @section Getting the include directories
640 @cindex Include directories (C/C++ specific)
642 Two sets of include directories are distinguished: system include directories
643 and project include directories.  The former is just the contents of the
644 @code{INCLUDE} environment variable.  The latter is not so easy to obtain,
645 and the way it can be obtained can vary greatly for different projects.
646 Therefore, a customizable variable
647 @code{flymake-get-project-include-dirs-function} is used to provide the
648 way to implement the desired behavior.
650 The default implementation, @code{flymake-get-project-include-dirs-imp},
651 uses a @command{make} call.  This requires a correct base directory, that is, a
652 directory containing a correct @file{Makefile}, to be determined.
654 As obtaining the project include directories might be a costly operation, its
655 return value is cached in the hash table.  The cache is cleared in the beginning
656 of every syntax check attempt.
658 @node Locating the buildfile
659 @section Locating the buildfile
660 @cindex Locating the buildfile
661 @cindex buildfile, locating
662 @cindex Makefile, locating
664 Flymake can be configured to use different tools for performing syntax
665 checks.  For example, it can use direct compiler call to syntax check a perl
666 script or a call to @command{make} for a more complicated case of a
667 @code{C/C++} source.  The general idea is that simple files, like perl
668 scripts and html pages, can be checked by directly invoking a
669 corresponding tool.  Files that are usually more complex and generally
670 used as part of larger projects, might require non-trivial options to
671 be passed to the syntax check tool, like include directories for
672 C++.  The latter files are syntax checked using some build tool, like
673 Make or Ant.
675 All Make configuration data is usually stored in a file called
676 @code{Makefile}.  To allow for future extensions, flymake uses a notion of
677 buildfile to reference the 'project configuration' file.
679 Special function, @code{flymake-find-buildfile} is provided for locating buildfiles.
680 Searching for a buildfile is done in a manner similar to that of searching
681 for possible master files.
682 @ignore
683 A customizable variable
684 @code{flymake-buildfile-dirs} holds a list of relative paths to the
685 buildfile.  They are checked sequentially until a buildfile is found.
686 @end ignore
687 In case there's no build file, syntax check is aborted.
689 Buildfile values are also cached.
691 @node Starting the syntax check process
692 @section Starting the syntax check process
693 @cindex Syntax check process
695 The command line (command name and the list of arguments) for launching a process is returned by the
696 initialization function.  Flymake then just calls @code{start-process}
697 to start an asynchronous process and configures process filter and
698 sentinel which is used for processing the output of the syntax check
699 tool.
701 @node Parsing the output
702 @section Parsing the output
703 @cindex Parsing the output
705 The output generated by the syntax check tool is parsed in the process
706 filter/sentinel using the error message patterns stored in the
707 @code{flymake-err-line-patterns} variable.  This variable contains a
708 list of items of the form @code{(regexp file-idx line-idx
709 err-text-idx)}, used to determine whether a particular line is an
710 error message and extract file name, line number and error text,
711 respectively.  Error type (error/warning) is also guessed by matching
712 error text with the '@code{^[wW]arning}' pattern.  Anything that was not
713 classified as a warning is considered an error.  Type is then used to
714 sort error menu items, which shows error messages first.
716 Flymake is also able to interpret error message patterns missing err-text-idx
717 information.  This is done by merely taking the rest of the matched line
718 (@code{(substring line (match-end 0))}) as error text.  This trick allows
719 to make use of a huge collection of error message line patterns from
720 @code{compile.el}.  All these error patterns are appended to
721 the end of @code{flymake-err-line-patterns}.
723 The error information obtained is saved in a buffer local
724 variable.  The buffer for which the process output belongs is
725 determined from the process-id@w{}->@w{}buffer mapping updated
726 after every process launch/exit.
728 @node Highlighting erroneous lines
729 @section Highlighting erroneous lines
730 @cindex Erroneous lines, faces
732 Highlighting is implemented with overlays and happens in the process
733 sentinel, after calling the cleanup function.  Two customizable faces
734 are used: @code{flymake-errline} and
735 @code{flymake-warnline}.  Errors belonging outside the current
736 buffer are considered to belong to line 1 of the current buffer.
738 @c This manual does not use vindex.
739 @c @vindex flymake-fringe-indicator-position
740 @c @vindex flymake-error-bitmap
741 @c @vindex flymake-warning-bitmap
742 If the option @code{flymake-fringe-indicator-position} is non-@code{nil},
743 errors and warnings are also highlighted in the left or right fringe,
744 using the bitmaps specified by @code{flymake-error-bitmap}
745 and @code{flymake-warning-bitmap}.
747 @node Interaction with other modes
748 @section Interaction with other modes
749 @cindex Interaction with other modes
750 @cindex Interaction with compile mode
752 The only mode flymake currently knows about is @code{compile}.
754 Flymake can be configured to not start syntax check if it thinks the
755 compilation is in progress.  The check is made by the
756 @code{flymake-compilation-is-running}, which tests the
757 @code{compilation-in-progress} variable.  The reason why this might be
758 useful is saving CPU time in case both syntax check and compilation
759 are very CPU intensive.  The original reason for adding this feature,
760 though, was working around a locking problem with MS Visual C++
761 compiler.
763 Flymake also provides an alternative command for starting compilation,
764 @code{flymake-compile}:
766 @lisp
767 (defun flymake-compile ()
768   "Kill all flymake syntax checks then start compilation."
769   (interactive)
770   (flymake-stop-all-syntax-checks)
771   (call-interactively 'compile))
772 @end lisp
774 It just kills all the active syntax check processes before calling
775 @code{compile}.
777 @node GNU Free Documentation License
778 @appendix GNU Free Documentation License
779 @include doclicense.texi
781 @node Index
782 @unnumbered Index
784 @printindex cp
786 @bye