From: Lars Hansen Date: Thu, 20 Apr 2006 11:37:44 +0000 (+0000) Subject: (PRINTFINISH): Call signal_after_change. X-Git-Tag: emacs-pretest-22.0.90~3037 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=570fab6c29b4b9e1cb6396d29c7070f29548fb52;p=emacs.git (PRINTFINISH): Call signal_after_change. --- diff --git a/src/ChangeLog b/src/ChangeLog index 0fd1c364b5c..245fb87d485 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,11 @@ +2006-04-20 Lars Hansen + + * textprop.c (Fremove_list_of_text_properties): Ensure + modify_region is called only when buffer is modified and that + signal_after_change is allways called in that case. + + * print.c (PRINTFINISH): Call signal_after_change. + 2006-04-20 Kim F. Storm * xdisp.c (redisplay_window): Fix last change. diff --git a/src/print.c b/src/print.c index 4a79ad19d00..3f8982849d4 100644 --- a/src/print.c +++ b/src/print.c @@ -275,6 +275,7 @@ int print_output_debug_flag = 1; else \ insert_1_both (print_buffer, print_buffer_pos, \ print_buffer_pos_byte, 0, 1, 0); \ + signal_after_change (PT - print_buffer_pos, 0, print_buffer_pos);\ } \ if (free_print_buffer) \ { \