diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c index 301274676d6..bea9e72019b 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1414,7 +1414,7 @@ usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */) | |||
| 1414 | val = XCDR (Vdefault_process_coding_system); | 1414 | val = XCDR (Vdefault_process_coding_system); |
| 1415 | } | 1415 | } |
| 1416 | XPROCESS (proc)->encode_coding_system = val; | 1416 | XPROCESS (proc)->encode_coding_system = val; |
| 1417 | /* Note: At this momemnt, the above coding system may leave | 1417 | /* Note: At this moment, the above coding system may leave |
| 1418 | text-conversion or eol-conversion unspecified. They will be | 1418 | text-conversion or eol-conversion unspecified. They will be |
| 1419 | decided after we read output from the process and decode it by | 1419 | decided after we read output from the process and decode it by |
| 1420 | some coding system, or just before we actually send a text to | 1420 | some coding system, or just before we actually send a text to |
| @@ -3120,7 +3120,7 @@ usage: (make-network-process &rest ARGS) */) | |||
| 3120 | { | 3120 | { |
| 3121 | struct hostent *host_info_ptr; | 3121 | struct hostent *host_info_ptr; |
| 3122 | 3122 | ||
| 3123 | /* gethostbyname may fail with TRY_AGAIN, but we don't honour that, | 3123 | /* gethostbyname may fail with TRY_AGAIN, but we don't honor that, |
| 3124 | as it may `hang' Emacs for a very long time. */ | 3124 | as it may `hang' Emacs for a very long time. */ |
| 3125 | immediate_quit = 1; | 3125 | immediate_quit = 1; |
| 3126 | QUIT; | 3126 | QUIT; |
| @@ -5377,8 +5377,8 @@ send_process (volatile Lisp_Object proc, const char *volatile buf, | |||
| 5377 | sending a multibyte text, thus we must encode it by the | 5377 | sending a multibyte text, thus we must encode it by the |
| 5378 | original coding system specified for the current process. | 5378 | original coding system specified for the current process. |
| 5379 | 5379 | ||
| 5380 | Another reason we comming here is that the coding system | 5380 | Another reason we come here is that the coding system |
| 5381 | was just complemented and new one was returned by | 5381 | was just complemented and a new one was returned by |
| 5382 | complement_process_encoding_system. */ | 5382 | complement_process_encoding_system. */ |
| 5383 | setup_coding_system (p->encode_coding_system, coding); | 5383 | setup_coding_system (p->encode_coding_system, coding); |
| 5384 | Vlast_coding_system_used = p->encode_coding_system; | 5384 | Vlast_coding_system_used = p->encode_coding_system; |