diff options
| author | Richard M. Stallman | 2007-09-20 17:12:10 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-09-20 17:12:10 +0000 |
| commit | 176c6903e82d3a4325e40bb38edc0b92044cd6b4 (patch) | |
| tree | 9eb9f202c097304b2573d7b742714568039a1679 | |
| parent | 13a9d12b66ddebff6fdd06da78dd3c804a887626 (diff) | |
| download | emacs-176c6903e82d3a4325e40bb38edc0b92044cd6b4.tar.gz emacs-176c6903e82d3a4325e40bb38edc0b92044cd6b4.zip | |
(Customizable variables): Face names don't end in -face.
Fix flymake-err-line-patterns template.
(Example -- Configuring a tool called directly): Fix init-function.
(Highlighting erroneous lines): Face names don't end in -face.
| -rw-r--r-- | man/ChangeLog | 7 | ||||
| -rw-r--r-- | man/flymake.texi | 14 |
2 files changed, 14 insertions, 7 deletions
diff --git a/man/ChangeLog b/man/ChangeLog index 9c0295b1e7d..3f19e76b698 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2007-09-20 Eduard Wiebe <usenet@pusto.de> (tiny change) | ||
| 2 | |||
| 3 | * flymake.texi (Customizable variables): Face names don't end in -face. | ||
| 4 | Fix flymake-err-line-patterns template. | ||
| 5 | (Example -- Configuring a tool called directly): Fix init-function. | ||
| 6 | (Highlighting erroneous lines): Face names don't end in -face. | ||
| 7 | |||
| 1 | 2007-09-05 Glenn Morris <rgm@gnu.org> | 8 | 2007-09-05 Glenn Morris <rgm@gnu.org> |
| 2 | 9 | ||
| 3 | * custom.texi (Safe File Variables): Clarify `!' and risky variables. | 10 | * custom.texi (Safe File Variables): Clarify `!' and risky variables. |
diff --git a/man/flymake.texi b/man/flymake.texi index 16947d7f2de..340a1d164fd 100644 --- a/man/flymake.texi +++ b/man/flymake.texi | |||
| @@ -313,7 +313,7 @@ Used when looking for a master file. @xref{Locating a master file}. | |||
| 313 | 313 | ||
| 314 | @item flymake-err-line-patterns | 314 | @item flymake-err-line-patterns |
| 315 | Patterns for error/warning messages in the form @code{(regexp file-idx | 315 | Patterns for error/warning messages in the form @code{(regexp file-idx |
| 316 | line-idx err-text-idx)}. @xref{Parsing the output}. | 316 | line-idx col-idx err-text-idx)}. @xref{Parsing the output}. |
| 317 | 317 | ||
| 318 | @item flymake-compilation-prevents-syntax-check | 318 | @item flymake-compilation-prevents-syntax-check |
| 319 | A flag indicating whether compilation and syntax check of the same | 319 | A flag indicating whether compilation and syntax check of the same |
| @@ -333,11 +333,11 @@ buffer. | |||
| 333 | A boolean flag indicating whether to start syntax check after a | 333 | A boolean flag indicating whether to start syntax check after a |
| 334 | newline character is added to the buffer. | 334 | newline character is added to the buffer. |
| 335 | 335 | ||
| 336 | @item flymake-errline-face | 336 | @item flymake-errline |
| 337 | A custom face for highlighting lines for which at least one error has | 337 | A custom face for highlighting lines for which at least one error has |
| 338 | been reported. | 338 | been reported. |
| 339 | 339 | ||
| 340 | @item flymake-warnline-face | 340 | @item flymake-warnline |
| 341 | A custom face for highlighting lines for which at least one warning | 341 | A custom face for highlighting lines for which at least one warning |
| 342 | and no errors have been reported. | 342 | and no errors have been reported. |
| 343 | 343 | ||
| @@ -410,9 +410,9 @@ checking. | |||
| 410 | First, we write the @code{init-function}: | 410 | First, we write the @code{init-function}: |
| 411 | 411 | ||
| 412 | @lisp | 412 | @lisp |
| 413 | (defun flymake-perl-init (buffer) | 413 | (defun flymake-perl-init () |
| 414 | (let* ((temp-file (flymake-init-create-temp-buffer-copy | 414 | (let* ((temp-file (flymake-init-create-temp-buffer-copy |
| 415 | buffer 'flymake-create-temp-inplace)) | 415 | 'flymake-create-temp-inplace)) |
| 416 | (local-file (concat (flymake-build-relative-filename | 416 | (local-file (concat (flymake-build-relative-filename |
| 417 | (file-name-directory | 417 | (file-name-directory |
| 418 | (buffer-file-name | 418 | (buffer-file-name |
| @@ -713,8 +713,8 @@ after every process launch/exit. | |||
| 713 | 713 | ||
| 714 | Highlighting is implemented with overlays and happens in the process | 714 | Highlighting is implemented with overlays and happens in the process |
| 715 | sentinel, after calling the cleanup function. Two customizable faces | 715 | sentinel, after calling the cleanup function. Two customizable faces |
| 716 | are used: @code{flymake-errline-face} and | 716 | are used: @code{flymake-errline} and |
| 717 | @code{flymake-warnline-face}. Errors belonging outside the current | 717 | @code{flymake-warnline}. Errors belonging outside the current |
| 718 | buffer are considered to belong to line 1 of the current buffer. | 718 | buffer are considered to belong to line 1 of the current buffer. |
| 719 | 719 | ||
| 720 | @node Interaction with other modes | 720 | @node Interaction with other modes |