From: Kenichi Handa Date: Wed, 15 Dec 1999 00:17:54 +0000 (+0000) Subject: Include composite.h. X-Git-Tag: emacs-pretest-21.0.90~5740 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e0016554c451b6e68b97c7949f4d6e7c03869ee0;p=emacs.git Include composite.h. (read_process_output): Call update_compositions. --- 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. */ #include "blockinput.h" #include "keyboard.h" #include "dispextern.h" +#include "composite.h" #define max(a, b) ((a) > (b) ? (a) : (b)) @@ -3181,6 +3182,7 @@ read_process_output (proc, channel) { insert_1_both (chars, nchars, nbytes, 0, 1, 1); signal_after_change (opoint, 0, PT - opoint); + update_compositions (opoint, PT, CHECK_BORDER); } set_marker_both (p->mark, p->buffer, PT, PT_BYTE);