Mercurial > emacs
comparison doc/misc/flymake.texi @ 109302:60516122d066
Merge changes from emacs-23 branch.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sat, 10 Jul 2010 14:52:53 -0400 |
parents | a91e94388547 |
children | 376148b31b5e |
comparison
equal
deleted
inserted
replaced
109190:8afa85da3f2d | 109302:60516122d066 |
---|---|
9 | 9 |
10 @copying | 10 @copying |
11 This manual is for GNU Flymake (version @value{VERSION}, @value{UPDATED}), | 11 This manual is for GNU Flymake (version @value{VERSION}, @value{UPDATED}), |
12 which is a universal on-the-fly syntax checker for GNU Emacs. | 12 which is a universal on-the-fly syntax checker for GNU Emacs. |
13 | 13 |
14 Copyright @copyright{} 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software | 14 Copyright @copyright{} 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
15 Foundation, Inc. | 15 Free Software Foundation, Inc. |
16 | 16 |
17 @quotation | 17 @quotation |
18 Permission is granted to copy, distribute and/or modify this document | 18 Permission is granted to copy, distribute and/or modify this document |
19 under the terms of the GNU Free Documentation License, Version 1.3 or | 19 under the terms of the GNU Free Documentation License, Version 1.3 or |
20 any later version published by the Free Software Foundation; with no | 20 any later version published by the Free Software Foundation; with no |
28 @end quotation | 28 @end quotation |
29 @end copying | 29 @end copying |
30 | 30 |
31 @dircategory Emacs | 31 @dircategory Emacs |
32 @direntry | 32 @direntry |
33 * Flymake: (flymake). A universal on-the-fly syntax checker. | 33 * Flymake: (flymake). A universal on-the-fly syntax checker. |
34 @end direntry | 34 @end direntry |
35 | 35 |
36 @titlepage | 36 @titlepage |
37 @title GNU Flymake | 37 @title GNU Flymake |
38 @subtitle for version @value{VERSION}, @value{UPDATED} | 38 @subtitle for version @value{VERSION}, @value{UPDATED} |
407 | 407 |
408 @lisp | 408 @lisp |
409 (defun flymake-perl-init () | 409 (defun flymake-perl-init () |
410 (let* ((temp-file (flymake-init-create-temp-buffer-copy | 410 (let* ((temp-file (flymake-init-create-temp-buffer-copy |
411 'flymake-create-temp-inplace)) | 411 'flymake-create-temp-inplace)) |
412 (local-file (file-relative-name | 412 (local-file (file-relative-name |
413 temp-file | 413 temp-file |
414 (file-name-directory buffer-file-name)))) | 414 (file-name-directory buffer-file-name)))) |
415 (list "perl" (list "-wc " local-file)))) | 415 (list "perl" (list "-wc " local-file)))) |
416 @end lisp | 416 @end lisp |
417 | 417 |