aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2007-11-20 12:39:52 +0000
committerRichard M. Stallman2007-11-20 12:39:52 +0000
commit5ef5ef3febd0a508a9fd0ea8bfc916803fc6bac6 (patch)
treed5d5440f13611036fdb277207008a6532a2a8e15
parentb1dfec553a2be7e1bd027a9f7abdf328bcc379cb (diff)
downloademacs-5ef5ef3febd0a508a9fd0ea8bfc916803fc6bac6.tar.gz
emacs-5ef5ef3febd0a508a9fd0ea8bfc916803fc6bac6.zip
(Example -- Configuring a tool called directly): Update example.
-rw-r--r--man/ChangeLog5
-rw-r--r--man/flymake.texi9
2 files changed, 8 insertions, 6 deletions
diff --git a/man/ChangeLog b/man/ChangeLog
index 955ce866033..88b4087d6ca 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,8 @@
12007-11-18 Richard Stallman <rms@gnu.org>
2
3 * flymake.texi (Example -- Configuring a tool called directly):
4 Update example.
5
12007-11-15 Juanma Barranquero <lekktu@gmail.com> 62007-11-15 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * cc-mode.texi (Electric Keys, Custom Macros): Fix typos. 8 * cc-mode.texi (Electric Keys, Custom Macros): Fix typos.
diff --git a/man/flymake.texi b/man/flymake.texi
index 340a1d164fd..b5ad634c803 100644
--- a/man/flymake.texi
+++ b/man/flymake.texi
@@ -413,12 +413,9 @@ First, we write the @code{init-function}:
413(defun flymake-perl-init () 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 'flymake-create-temp-inplace)) 415 'flymake-create-temp-inplace))
416 (local-file (concat (flymake-build-relative-filename 416 (local-file (file-relative-name
417 (file-name-directory 417 temp-file
418 (buffer-file-name 418 (file-name-directory buffer-file-name))))
419 (current-buffer)))
420 (file-name-directory temp-file))
421 (file-name-nondirectory temp-file))))
422 (list "perl" (list "-wc " local-file)))) 419 (list "perl" (list "-wc " local-file))))
423@end lisp 420@end lisp
424 421