From: Kenichi Handa Date: Sun, 14 Sep 2008 05:59:16 +0000 (+0000) Subject: (Finsert_file_contents): Delete incorrect decrement of specpdl_ptr. X-Git-Tag: emacs-pretest-23.0.90~2902 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c3702194809d8772afa226d5107ec3abb05e8d35;p=emacs.git (Finsert_file_contents): Delete incorrect decrement of specpdl_ptr. --- diff --git a/src/ChangeLog b/src/ChangeLog index 45a5bd149a3..1f0ae13a37d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2008-09-14 Kenichi Handa + + * fileio.c (Finsert_file_contents): Delete incorrect decrement of + specpdl_ptr. + 2008-09-12 Kenichi Handa * indent.c (scan_for_column): Don't handle automatic composition @@ -90,6 +95,11 @@ * buffer.c (Fbuffer_swap_text): Reset window->point markers. +2008-09-07 Kenichi Handa + + * composite.c (FORWARD_CHAR): Check STOP after + incrementing (POSITION).pos. + 2008-09-06 Roland Winkler * process.c (Fsystem_process_attributes): Doc fix. diff --git a/src/fileio.c b/src/fileio.c index 9c6b98d83f5..a5541d544f2 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -3673,7 +3673,6 @@ variable `last-coding-system-used' to the coding system actually used. */) if (bufpos == inserted) { - specpdl_ptr--; /* Truncate the buffer to the size of the file. */ if (same_at_start == same_at_end) nochange = 1;