aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2007-09-20 17:12:10 +0000
committerRichard M. Stallman2007-09-20 17:12:10 +0000
commit176c6903e82d3a4325e40bb38edc0b92044cd6b4 (patch)
tree9eb9f202c097304b2573d7b742714568039a1679
parent13a9d12b66ddebff6fdd06da78dd3c804a887626 (diff)
downloademacs-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/ChangeLog7
-rw-r--r--man/flymake.texi14
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 @@
12007-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
12007-09-05 Glenn Morris <rgm@gnu.org> 82007-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
315Patterns for error/warning messages in the form @code{(regexp file-idx 315Patterns for error/warning messages in the form @code{(regexp file-idx
316line-idx err-text-idx)}. @xref{Parsing the output}. 316line-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
319A flag indicating whether compilation and syntax check of the same 319A flag indicating whether compilation and syntax check of the same
@@ -333,11 +333,11 @@ buffer.
333A boolean flag indicating whether to start syntax check after a 333A boolean flag indicating whether to start syntax check after a
334newline character is added to the buffer. 334newline character is added to the buffer.
335 335
336@item flymake-errline-face 336@item flymake-errline
337A custom face for highlighting lines for which at least one error has 337A custom face for highlighting lines for which at least one error has
338been reported. 338been reported.
339 339
340@item flymake-warnline-face 340@item flymake-warnline
341A custom face for highlighting lines for which at least one warning 341A custom face for highlighting lines for which at least one warning
342and no errors have been reported. 342and no errors have been reported.
343 343
@@ -410,9 +410,9 @@ checking.
410First, we write the @code{init-function}: 410First, 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
714Highlighting is implemented with overlays and happens in the process 714Highlighting is implemented with overlays and happens in the process
715sentinel, after calling the cleanup function. Two customizable faces 715sentinel, after calling the cleanup function. Two customizable faces
716are used: @code{flymake-errline-face} and 716are used: @code{flymake-errline} and
717@code{flymake-warnline-face}. Errors belonging outside the current 717@code{flymake-warnline}. Errors belonging outside the current
718buffer are considered to belong to line 1 of the current buffer. 718buffer 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