| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | (exec_sentinel, read_process_output): | Richard M. Stallman | 1998-10-14 | 1 | -0/+11 |
| | | | | | Restore waiting_for_user_input_p after running Lisp code. | ||||
| * | Doc fixes. | Karl Heuer | 1998-10-08 | 1 | -13/+14 |
| | | |||||
| * | (wait_reading_process_input): If a pty gives EIO, | Richard M. Stallman | 1998-08-15 | 1 | -2/+6 |
| | | | | | raise SIGCHLD just in case. | ||||
| * | (Fprocess_send_eof): Transfer proc_encode_coding_system | Richard M. Stallman | 1998-08-08 | 1 | -1/+15 |
| | | | | | data to the new outfd. | ||||
| * | (create_process): For outchannel, set up | Richard M. Stallman | 1998-08-01 | 1 | -1/+1 |
| | | | | | proc_encode_coding_system, not proc_decode_coding_system. | ||||
| * | Whitespace change. | Richard M. Stallman | 1998-07-29 | 1 | -2/+2 |
| | | |||||
| * | (read_process_output): Even if we read data without | Kenichi Handa | 1998-07-16 | 1 | -12/+18 |
| | | | | | | code conversion, calculate character counts. If we insert the data into a unibyte buffer, treat the data as unibyte. | ||||
| * | (init_process): Initilize Vdefault_process_coding_system. | Kenichi Handa | 1998-06-26 | 1 | -0/+5 |
| | | |||||
| * | (Fstart_process): Check process-coding-system-alist | Kenichi Handa | 1998-06-26 | 1 | -23/+23 |
| | | | | | | | and default-process-coding-system even in unibyte mode. (create_process): In unibyte mode, suppress character code conversion. | ||||
| * | (read_process_output): While processing carryover, | Kenichi Handa | 1998-06-22 | 1 | -7/+13 |
| | | | | | check the size of p->decoding_buf. | ||||
| * | (wait_reading_process_input): Recompute timeout each | Eli Zaretskii | 1998-06-21 | 1 | -13/+26 |
| | | | | | | time through the loop. Check requeued_events_pending_p and exit the loop if there is unread keyboard input. | ||||
| * | (read_process_output): Handle carryover correctly. | Kenichi Handa | 1998-06-20 | 1 | -2/+14 |
| | | |||||
| * | (Fstart_process): Remove the special case for | Richard M. Stallman | 1998-05-10 | 1 | -120/+114 |
| | | | | | | | | unibyte, for initializing the process coding systems. Instead, use the normal multibyte code, but check BUFFER's value and the default value of enable-multibyte-characters. (Fopen_network_stream): Likewise. | ||||
| * | (init_process, syms_of_process): Make definition consistent with | Eli Zaretskii | 1998-05-07 | 1 | -0/+2 |
| | | | | | prototypes on lisp.h | ||||
| * | (create_process): Add cast when calling encode_coding | Richard M. Stallman | 1998-05-05 | 1 | -2/+2 |
| | | | | | and another when storing buf into new_argv. | ||||
| * | (Fset_process_inherit_coding_system_flag, Fstart_process): | Richard M. Stallman | 1998-04-29 | 1 | -6/+8 |
| | | | | | | | | Store inherit_coding_system_flag as a Lisp_Object. (Fopen_network_stream): Likewise. (Fprocess_inherit_coding_system_flag): Access it as Lisp_Object. (read_process_output): Likewise. | ||||
| * | (Fset_process_inherit_coding_system_flag): Fix test for non-nil FLAG. | Andreas Schwab | 1998-04-28 | 1 | -1/+1 |
| | | |||||
| * | (Fset_process_inherit_coding_system_flag, | Eli Zaretskii | 1998-04-19 | 1 | -0/+77 |
| | | | | | | | | | Fprocess_inherit_coding_system_flag): New functions. (syms_of_process): Defsubr them. (Fstart_process, Fopen_network_stream): Initialize inherit_coding_system_flag. (read_process_output): If the process buffer isn't dead, call after-insert-file-set-buffer-file-coding-system. | ||||
| * | (read_process_output): Fix mixing of Lisp_Object and | Andreas Schwab | 1998-04-14 | 1 | -2/+2 |
| | | | | | int. | ||||
| * | Fix -Wimplicit warnings. | Andreas Schwab | 1998-04-14 | 1 | -2/+11 |
| | | |||||
| * | (kill_buffer_processes): Make consistent with | Karl Heuer | 1998-04-08 | 1 | -0/+1 |
| | | | | | prototype on lisp.h. | ||||
| * | (read_process_output): Count multibyte characters. If | Kenichi Handa | 1998-03-25 | 1 | -4/+14 |
| | | | | | | | received data is stored in p->decoding_buf, copy it to a temporary buffer and call insert_before_makers instead of insert_from_string_before_markers. | ||||
| * | (read_process_output): Use make_string_from_bytes. | Richard M. Stallman | 1998-03-21 | 1 | -1/+1 |
| | | |||||
| * | Use STRING_BYTES and SET_STRING_BYTES. | Richard M. Stallman | 1998-03-21 | 1 | -10/+10 |
| | | |||||
| * | (exec_sentinel, read_process_output): Fstore_match_data => Fset_match_data. | Richard M. Stallman | 1998-03-14 | 1 | -5/+5 |
| | | | | | (Fstart_process): Doc fix. | ||||
| * | (Vdefault_file_name_coding_system): Extern it. | Kenichi Handa | 1998-03-03 | 1 | -3/+2 |
| | | | | | (create_process): Use ENCODE_FILE. | ||||
| * | (Fstart_process): Use raw-text instead of emacs-mule | Kenichi Handa | 1998-01-22 | 1 | -51/+56 |
| | | | | | | | | | | | if enable-multibyte-characters is nil. Initialize members decoding_carryover and encoding_carryover of PROC. (create_process): Adjusted for the change of encode_coding. (Fopen_network_stream): Initialize members decoding_carryover and encoding_carryover of PROC. (read_process_output): Adjusted for the change of decode_coding. (send_process): Adjusted for the change of encode_coding. | ||||
| * | Update copyright year. | Richard M. Stallman | 1998-01-21 | 1 | -1/+1 |
| | | |||||
| * | (read_process_output): Use insert_1_both. | Richard M. Stallman | 1998-01-05 | 1 | -34/+47 |
| | | | | | | | | | | (read_process_output): New var `multibyte'. Set it according to which coding system was used. (read_process_output): Handle bytes vs chars. (send_process): Use size_byte of OBJECT. (Fprocess_send_string): Pass size_byte to send_process. | ||||
| * | (status_notify): Use byte and char pointers. | Richard M. Stallman | 1998-01-01 | 1 | -25/+47 |
| | | | | | | | (Fprocess_send_region): Make bytepos for send_process. (read_process_output): Save, restore, and update both kinds of ptrs. (send_process): OFFSET is now in bytes. | ||||
| * | (read_process_output): Fix previous change, i.e, if | Kenichi Handa | 1997-12-09 | 1 | -7/+13 |
| | | | | | | | | | | proc_encode_coding_system[p->outfd] is NULL, instead of allocating `struct coding_system' for encoding, just skip setting up coding system for encoding. Set Vlast_coding_system_used after some text is read. (send_process): Set Vlast_coding_system_used after deciding a coding system to be used for encoding. | ||||
| * | (read_process_output): Allocate for coding system, if | Karl Heuer | 1997-12-08 | 1 | -0/+4 |
| | | | | | not already done. | ||||
| * | (create_process, deactivate_process, close_process_descs): | Andreas Schwab | 1997-11-28 | 1 | -1/+6 |
| | | | | | | (kill_buffer_processes, status_notify): Return void. (Fstart_process): Cast arg to create_process. | ||||
| * | (create_process): Encode arguments for the process. | Kenichi Handa | 1997-11-08 | 1 | -2/+32 |
| | | | | | | (read_process_output): Use new macros defined in coding.h. (send_process): Likewise. | ||||
| * | (create_process): Encode the new current dir. | Richard M. Stallman | 1997-09-09 | 1 | -0/+5 |
| | | |||||
| * | (read_process_output): Index for | Kenichi Handa | 1997-09-01 | 1 | -1/+1 |
| | | | | | | proc_encode_coding_system should be p->outfd (not `channel' which is p->infd). | ||||
| * | (Fset_process_coding_system): Doc-string modified. | Kenichi Handa | 1997-08-04 | 1 | -2/+2 |
| | | | | | (Fprocess_coding_system): Likewise. | ||||
| * | (read_process_output): Don't call setup_coding_system | Richard M. Stallman | 1997-07-31 | 1 | -9/+13 |
| | | | | | | | | | for proc_decode_coding_system[channel]. It is already done in detect_coding called via decode_coding. (wait_reading_process_input): Call detect_input_pending whenever read_kbd is 0, not just when wait_for_cell. | ||||
| * | (read_process_output): Use new macro | Kenichi Handa | 1997-07-25 | 1 | -2/+2 |
| | | | | | | CODING_REQUIRE_NO_CONVERSION (send_process): Use new macro CODING_MAY_REQUIRE_NO_CONVERSION. | ||||
| * | (wait_reading_process_input): Initialize total_read. | Richard M. Stallman | 1997-07-24 | 1 | -2/+9 |
| | | | | | Check for read_process_output giving back EIO. | ||||
| * | (Fprocess_send_region): Convert move_gap argument to int. | Richard M. Stallman | 1997-07-12 | 1 | -1/+1 |
| | | |||||
| * | (read_process_output): Add cast. | Richard M. Stallman | 1997-07-10 | 1 | -1/+1 |
| | | |||||
| * | (Fstart_process): If enable-multibyte-characters is | Kenichi Handa | 1997-07-07 | 1 | -4/+32 |
| | | | | | | | | nil, set coding system for decoding output of process to emacs-mule, and set coding system for encoding to nil. (Fopen_network_stream): If enable-multibyte-characters is nil, set coding systems for decoding and encoding to nil. | ||||
| * | (send_process): Make buf and temp_buf `unsigned char *'. | Richard M. Stallman | 1997-07-04 | 1 | -16/+15 |
| | | |||||
| * | (Fstart_process): Call Ffind_operation_coding_system. | Kenichi Handa | 1997-07-02 | 1 | -6/+7 |
| | | | | | (Fopen_network_stream): Likewise. | ||||
| * | (READ_CHILD_OUTPUT): Macro deleted. | Richard M. Stallman | 1997-07-01 | 1 | -10/+4 |
| | | | | | (read_process_output): Use read instead of READ_CHILD_OUTPUT. | ||||
| * | (wait_reading_process_input): If wait_for_cell, | Richard M. Stallman | 1997-06-29 | 1 | -8/+11 |
| | | | | | | | do check for keyboard input and swallow events, just don't exit. (max): New macro. (wait_reading_process_input): Pass a smaller first arg to select. | ||||
| * | (wait_reading_process_input): Don't check for | Richard M. Stallman | 1997-06-22 | 1 | -3/+20 |
| | | | | | keyboard input if wait_for_cell. | ||||
| * | (Fprocess_send_eof): Prooperly conditionalize prev. change. | Richard M. Stallman | 1997-06-19 | 1 | -0/+4 |
| | | |||||
| * | (Fprocess_send_eof): Use shutdown, if it's a socket. | Richard M. Stallman | 1997-06-19 | 1 | -1/+10 |
| | | | | | Don't close the output descriptor if that is also the input descriptor. | ||||