diff options
| author | Richard M. Stallman | 2007-11-20 12:39:52 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-11-20 12:39:52 +0000 |
| commit | 5ef5ef3febd0a508a9fd0ea8bfc916803fc6bac6 (patch) | |
| tree | d5d5440f13611036fdb277207008a6532a2a8e15 | |
| parent | b1dfec553a2be7e1bd027a9f7abdf328bcc379cb (diff) | |
| download | emacs-5ef5ef3febd0a508a9fd0ea8bfc916803fc6bac6.tar.gz emacs-5ef5ef3febd0a508a9fd0ea8bfc916803fc6bac6.zip | |
(Example -- Configuring a tool called directly): Update example.
| -rw-r--r-- | man/ChangeLog | 5 | ||||
| -rw-r--r-- | man/flymake.texi | 9 |
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 @@ | |||
| 1 | 2007-11-18 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * flymake.texi (Example -- Configuring a tool called directly): | ||
| 4 | Update example. | ||
| 5 | |||
| 1 | 2007-11-15 Juanma Barranquero <lekktu@gmail.com> | 6 | 2007-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 | ||