diff options
| author | Kenichi Handa | 1997-08-04 06:59:57 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-08-04 06:59:57 +0000 |
| commit | a95c35f6a2bcfcb9dbaa85281f82e87b65c90a33 (patch) | |
| tree | 51892216a2d7ef6d2f415fcddb460e5c8c9919a7 | |
| parent | a6b9b0c5eb297a16881c5bd6ca6b21d68b1c94e6 (diff) | |
| download | emacs-a95c35f6a2bcfcb9dbaa85281f82e87b65c90a33.tar.gz emacs-a95c35f6a2bcfcb9dbaa85281f82e87b65c90a33.zip | |
(Fset_process_coding_system): Doc-string modified.
(Fprocess_coding_system): Likewise.
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index af4fb8f9f22..c5d291bec8e 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -4099,7 +4099,7 @@ status_notify () | |||
| 4099 | 4099 | ||
| 4100 | DEFUN ("set-process-coding-system", Fset_process_coding_system, | 4100 | DEFUN ("set-process-coding-system", Fset_process_coding_system, |
| 4101 | Sset_process_coding_system, 1, 3, 0, | 4101 | Sset_process_coding_system, 1, 3, 0, |
| 4102 | "Set coding-systems of PROCESS to DECODING (input from the process) and\n\ | 4102 | "Set coding systems of PROCESS to DECODING (input from the process) and\n\ |
| 4103 | ENCODING (output to the process).") | 4103 | ENCODING (output to the process).") |
| 4104 | (proc, decoding, encoding) | 4104 | (proc, decoding, encoding) |
| 4105 | register Lisp_Object proc, decoding, encoding; | 4105 | register Lisp_Object proc, decoding, encoding; |
| @@ -4125,7 +4125,7 @@ ENCODING (output to the process).") | |||
| 4125 | 4125 | ||
| 4126 | DEFUN ("process-coding-system", | 4126 | DEFUN ("process-coding-system", |
| 4127 | Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0, | 4127 | Fprocess_coding_system, Sprocess_coding_system, 1, 1, 0, |
| 4128 | "Return a cons of coding-system for decoding and encoding of PROCESS.") | 4128 | "Return a cons of coding systems for decoding and encoding of PROCESS.") |
| 4129 | (proc) | 4129 | (proc) |
| 4130 | register Lisp_Object proc; | 4130 | register Lisp_Object proc; |
| 4131 | { | 4131 | { |