diff options
| author | Kenichi Handa | 1999-12-15 00:17:54 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1999-12-15 00:17:54 +0000 |
| commit | e0016554c451b6e68b97c7949f4d6e7c03869ee0 (patch) | |
| tree | 115c1123eead1a7afe24ecfc45b6a4934e88c33b /src/process.c | |
| parent | 19a86a032e8476153e01183c6462a9f89dd5ed9b (diff) | |
| download | emacs-e0016554c451b6e68b97c7949f4d6e7c03869ee0.tar.gz emacs-e0016554c451b6e68b97c7949f4d6e7c03869ee0.zip | |
Include composite.h.
(read_process_output): Call update_compositions.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c index 9fa3c19df2d..de2bae34ad0 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -108,6 +108,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 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 | ||
| @@ -3181,6 +3182,7 @@ read_process_output (proc, channel) | |||
| 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 | ||