diff options
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/ChangeLog | 7 | ||||
| -rw-r--r-- | doc/misc/flymake.texi | 4 | ||||
| -rw-r--r-- | doc/misc/tramp.texi | 10 |
3 files changed, 14 insertions, 7 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index e2ef448c3cd..7dbf46cf1a2 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2014-02-21 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * flymake.texi (Starting the syntax check process): Grammar fix. | ||
| 4 | |||
| 5 | * tramp.texi (External packages): Grammar fix. | ||
| 6 | Reword for default sentinel not being nil any more. | ||
| 7 | |||
| 1 | 2014-02-19 Michael Albinus <michael.albinus@gmx.de> | 8 | 2014-02-19 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 9 | ||
| 3 | * trampver.texi: Update release number. | 10 | * trampver.texi: Update release number. |
diff --git a/doc/misc/flymake.texi b/doc/misc/flymake.texi index a9904530e13..5125acd1f0d 100644 --- a/doc/misc/flymake.texi +++ b/doc/misc/flymake.texi | |||
| @@ -695,8 +695,8 @@ Buildfile values are also cached. | |||
| 695 | 695 | ||
| 696 | The command line (command name and the list of arguments) for launching a process is returned by the | 696 | The command line (command name and the list of arguments) for launching a process is returned by the |
| 697 | initialization function. Flymake then just calls @code{start-process} | 697 | initialization function. Flymake then just calls @code{start-process} |
| 698 | to start an asynchronous process and configures process filter and | 698 | to start an asynchronous process and configures a process filter and |
| 699 | sentinel which is used for processing the output of the syntax check | 699 | sentinel, which are used for processing the output of the syntax check |
| 700 | tool. | 700 | tool. |
| 701 | 701 | ||
| 702 | @node Parsing the output | 702 | @node Parsing the output |
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi index b3057c255fc..6dd5d2a88d8 100644 --- a/doc/misc/tramp.texi +++ b/doc/misc/tramp.texi | |||
| @@ -3766,10 +3766,10 @@ its complete cache keeping attributes for all files of the remote host | |||
| 3766 | it has seen so far. | 3766 | it has seen so far. |
| 3767 | 3767 | ||
| 3768 | This is a performance degradation, because the lost file attributes | 3768 | This is a performance degradation, because the lost file attributes |
| 3769 | must be recomputed when needed again. In cases the caller of | 3769 | must be recomputed when needed again. In cases where the caller of |
| 3770 | @code{process-file} knows that there are no file attribute changes, it | 3770 | @code{process-file} knows that there are no file attribute changes, it |
| 3771 | shall let-bind the variable @code{process-file-side-effects} to | 3771 | should let-bind the variable @code{process-file-side-effects} to |
| 3772 | @code{nil}. @value{tramp} wouldn't flush the file attributes cache then. | 3772 | @code{nil}. Then @value{tramp} won't flush the file attributes cache. |
| 3773 | 3773 | ||
| 3774 | @lisp | 3774 | @lisp |
| 3775 | (let (process-file-side-effects) | 3775 | (let (process-file-side-effects) |
| @@ -3779,8 +3779,8 @@ shall let-bind the variable @code{process-file-side-effects} to | |||
| 3779 | For asynchronous processes, @value{tramp} flushes the file attributes | 3779 | For asynchronous processes, @value{tramp} flushes the file attributes |
| 3780 | cache via a process sentinel. If the caller of | 3780 | cache via a process sentinel. If the caller of |
| 3781 | @code{start-file-process} knows that there are no file attribute | 3781 | @code{start-file-process} knows that there are no file attribute |
| 3782 | changes, it shall set the process sentinel to @code{nil}. In case the | 3782 | changes, it should set the process sentinel to the default. In cases |
| 3783 | caller defines an own process sentinel, @value{tramp}'s process | 3783 | where the caller defines its own process sentinel, @value{tramp}'s process |
| 3784 | sentinel is overwritten. The caller can still flush the file | 3784 | sentinel is overwritten. The caller can still flush the file |
| 3785 | attributes cache in its process sentinel with this code: | 3785 | attributes cache in its process sentinel with this code: |
| 3786 | 3786 | ||