mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-12 02:40:34 -08:00
*** empty log message ***
This commit is contained in:
parent
78108bcdcc
commit
082a1df2db
2 changed files with 15 additions and 0 deletions
|
|
@ -1,7 +1,20 @@
|
|||
2000-08-04 Kenichi Handa <handa@etl.go.jp>
|
||||
|
||||
* process.c (read_process_output): Big simplification. Handle
|
||||
composition and post-read-conversion of coding system correctly.
|
||||
(send_process): Handle composition correctly.
|
||||
|
||||
* callproc.c (Fcall_process): Handle post-read-conversion of
|
||||
coding system if any.
|
||||
|
||||
* coding.c (decode_coding_iso2022): More strict check for handling
|
||||
single shifting.
|
||||
(coding_restore_composition): Pay attention to the case that
|
||||
cmp_data is not set properly (because of invalid code in the
|
||||
source text).
|
||||
(run_pre_post_conversion_on_str): Include text properties in the
|
||||
resulting string.
|
||||
(decode_coding_string): Set members of coding correctly.
|
||||
|
||||
2000-08-03 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
|
|
|
|||
|
|
@ -2952,6 +2952,7 @@ read_process_output (proc, channel)
|
|||
|
||||
text = decode_coding_string (make_unibyte_string (chars, nbytes),
|
||||
coding, 0);
|
||||
Vlast_coding_system_used = coding->symbol;
|
||||
/* A new coding system might be found. */
|
||||
if (!EQ (p->decode_coding_system, coding->symbol))
|
||||
{
|
||||
|
|
@ -3064,6 +3065,7 @@ read_process_output (proc, channel)
|
|||
the buffer's mark is, and the user's next command is Meta-y. */
|
||||
text = decode_coding_string (make_unibyte_string (chars, nbytes),
|
||||
coding, 0);
|
||||
Vlast_coding_system_used = coding->symbol;
|
||||
/* A new coding system might be found. See the comment in the
|
||||
similar code in the previous `if' block. */
|
||||
if (!EQ (p->decode_coding_system, coding->symbol))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue