summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2007-09-20 17:12:10 +0000
committerRichard M. Stallman <rms@gnu.org>2007-09-20 17:12:10 +0000
commit176c6903e82d3a4325e40bb38edc0b92044cd6b4 (patch)
tree9eb9f202c097304b2573d7b742714568039a1679 /man
parent13a9d12b66ddebff6fdd06da78dd3c804a887626 (diff)
downloademacs-176c6903e82d3a4325e40bb38edc0b92044cd6b4.tar.gz
(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.
Diffstat (limited to 'man')
-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 @@
+2007-09-20 Eduard Wiebe <usenet@pusto.de> (tiny change)
+
+ * flymake.texi (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.
+
2007-09-05 Glenn Morris <rgm@gnu.org>
* 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}.
@item flymake-err-line-patterns
Patterns for error/warning messages in the form @code{(regexp file-idx
-line-idx err-text-idx)}. @xref{Parsing the output}.
+line-idx col-idx err-text-idx)}. @xref{Parsing the output}.
@item flymake-compilation-prevents-syntax-check
A flag indicating whether compilation and syntax check of the same
@@ -333,11 +333,11 @@ buffer.
A boolean flag indicating whether to start syntax check after a
newline character is added to the buffer.
-@item flymake-errline-face
+@item flymake-errline
A custom face for highlighting lines for which at least one error has
been reported.
-@item flymake-warnline-face
+@item flymake-warnline
A custom face for highlighting lines for which at least one warning
and no errors have been reported.
@@ -410,9 +410,9 @@ checking.
First, we write the @code{init-function}:
@lisp
-(defun flymake-perl-init (buffer)
+(defun flymake-perl-init ()
(let* ((temp-file (flymake-init-create-temp-buffer-copy
- buffer 'flymake-create-temp-inplace))
+ 'flymake-create-temp-inplace))
(local-file (concat (flymake-build-relative-filename
(file-name-directory
(buffer-file-name
@@ -713,8 +713,8 @@ after every process launch/exit.
Highlighting is implemented with overlays and happens in the process
sentinel, after calling the cleanup function. Two customizable faces
-are used: @code{flymake-errline-face} and
-@code{flymake-warnline-face}. Errors belonging outside the current
+are used: @code{flymake-errline} and
+@code{flymake-warnline}. Errors belonging outside the current
buffer are considered to belong to line 1 of the current buffer.
@node Interaction with other modes