diff options
| author | Chong Yidong | 2012-06-27 13:21:15 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-06-27 13:21:15 +0800 |
| commit | a2eb421b874f9719a8d49b456518ceb20f2b616a (patch) | |
| tree | 17d47424d3424522fdfb9e8cbe7d6ab66c691931 | |
| parent | 157e99e4284e376777fd22734b3c78c191cf313b (diff) | |
| download | emacs-a2eb421b874f9719a8d49b456518ceb20f2b616a.tar.gz emacs-a2eb421b874f9719a8d49b456518ceb20f2b616a.zip | |
In Lisp manual, don't capitalize pty.
* doc/lispref/processes.texi (Asynchronous Processes, Input to Processes):
* doc/lispref/internals.texi (Process Internals): Don't capitalize "pty".
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/internals.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/processes.texi | 12 |
3 files changed, 12 insertions, 7 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 782b6930a84..180e2aae596 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-06-27 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * processes.texi (Asynchronous Processes, Input to Processes): | ||
| 4 | * internals.texi (Process Internals): Don't capitalize "pty". | ||
| 5 | |||
| 1 | 2012-06-24 Thien-Thi Nguyen <ttn@gnuvola.org> | 6 | 2012-06-24 Thien-Thi Nguyen <ttn@gnuvola.org> |
| 2 | 7 | ||
| 3 | * processes.texi (Asynchronous Processes): Make the pty vs pipe | 8 | * processes.texi (Asynchronous Processes): Make the pty vs pipe |
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi index 80012512062..1459f52d979 100644 --- a/doc/lispref/internals.texi +++ b/doc/lispref/internals.texi | |||
| @@ -1380,7 +1380,7 @@ needs to be reported, either by running the sentinel or by inserting a | |||
| 1380 | message in the process buffer. | 1380 | message in the process buffer. |
| 1381 | 1381 | ||
| 1382 | @item pty_flag | 1382 | @item pty_flag |
| 1383 | Non-@code{nil} if communication with the subprocess uses a @acronym{PTY}; | 1383 | Non-@code{nil} if communication with the subprocess uses a pty; |
| 1384 | @code{nil} if it uses a pipe. | 1384 | @code{nil} if it uses a pipe. |
| 1385 | 1385 | ||
| 1386 | @item infd | 1386 | @item infd |
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index fc166268e4e..217f9f9eaee 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -666,7 +666,7 @@ can also be executed on remote hosts, depending on @code{default-directory}. | |||
| 666 | 666 | ||
| 667 | @defvar process-connection-type | 667 | @defvar process-connection-type |
| 668 | This variable controls the type of device used to communicate with | 668 | This variable controls the type of device used to communicate with |
| 669 | asynchronous subprocesses. If it is non-@code{nil}, then @acronym{PTY}s are | 669 | asynchronous subprocesses. If it is non-@code{nil}, then ptys are |
| 670 | used, when available. Otherwise, pipes are used. | 670 | used, when available. Otherwise, pipes are used. |
| 671 | 671 | ||
| 672 | The value of @code{process-connection-type} takes effect when | 672 | The value of @code{process-connection-type} takes effect when |
| @@ -681,8 +681,8 @@ with one subprocess by binding the variable around the call to | |||
| 681 | @end group | 681 | @end group |
| 682 | @end smallexample | 682 | @end smallexample |
| 683 | 683 | ||
| 684 | To determine whether a given subprocess actually got a pipe or a | 684 | To determine whether a given subprocess actually got a pipe or a pty, |
| 685 | @acronym{PTY}, use the function @code{process-tty-name} (@pxref{Process | 685 | use the function @code{process-tty-name} (@pxref{Process |
| 686 | Information}). | 686 | Information}). |
| 687 | @end defvar | 687 | @end defvar |
| 688 | 688 | ||
| @@ -960,9 +960,9 @@ data appears on the ``standard input'' of the subprocess. | |||
| 960 | 960 | ||
| 961 | @c FIXME which? | 961 | @c FIXME which? |
| 962 | Some operating systems have limited space for buffered input in a | 962 | Some operating systems have limited space for buffered input in a |
| 963 | @acronym{PTY}. On these systems, Emacs sends an @acronym{EOF} | 963 | pty. On these systems, Emacs sends an @acronym{EOF} periodically |
| 964 | periodically amidst the other characters, to force them through. For | 964 | amidst the other characters, to force them through. For most |
| 965 | most programs, these @acronym{EOF}s do no harm. | 965 | programs, these @acronym{EOF}s do no harm. |
| 966 | 966 | ||
| 967 | Subprocess input is normally encoded using a coding system before the | 967 | Subprocess input is normally encoded using a coding system before the |
| 968 | subprocess receives it, much like text written into a file. You can use | 968 | subprocess receives it, much like text written into a file. You can use |