Mercurial > emacs
comparison src/process.c @ 26868:edeeffd7d8c7
Include composite.h.
(read_process_output): Call update_compositions.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Wed, 15 Dec 1999 00:17:54 +0000 |
| parents | b7438760079b |
| children | 34455eeaf747 |
comparison
equal
deleted
inserted
replaced
| 26867:b633c8e0fee1 | 26868:edeeffd7d8c7 |
|---|---|
| 106 #include "commands.h" | 106 #include "commands.h" |
| 107 #include "frame.h" | 107 #include "frame.h" |
| 108 #include "blockinput.h" | 108 #include "blockinput.h" |
| 109 #include "keyboard.h" | 109 #include "keyboard.h" |
| 110 #include "dispextern.h" | 110 #include "dispextern.h" |
| 111 #include "composite.h" | |
| 111 | 112 |
| 112 #define max(a, b) ((a) > (b) ? (a) : (b)) | 113 #define max(a, b) ((a) > (b) ? (a) : (b)) |
| 113 | 114 |
| 114 Lisp_Object Qprocessp; | 115 Lisp_Object Qprocessp; |
| 115 Lisp_Object Qrun, Qstop, Qsignal, Qopen, Qclosed; | 116 Lisp_Object Qrun, Qstop, Qsignal, Qopen, Qclosed; |
| 3179 } | 3180 } |
| 3180 else | 3181 else |
| 3181 { | 3182 { |
| 3182 insert_1_both (chars, nchars, nbytes, 0, 1, 1); | 3183 insert_1_both (chars, nchars, nbytes, 0, 1, 1); |
| 3183 signal_after_change (opoint, 0, PT - opoint); | 3184 signal_after_change (opoint, 0, PT - opoint); |
| 3185 update_compositions (opoint, PT, CHECK_BORDER); | |
| 3184 } | 3186 } |
| 3185 set_marker_both (p->mark, p->buffer, PT, PT_BYTE); | 3187 set_marker_both (p->mark, p->buffer, PT, PT_BYTE); |
| 3186 | 3188 |
| 3187 update_mode_lines++; | 3189 update_mode_lines++; |
| 3188 | 3190 |
