aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog1
-rw-r--r--src/insdel.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 69d658eade2..8bdf6881795 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -3,6 +3,7 @@
3 * insdel.c (check_markers, make_gap_larger, make_gap_smaller): 3 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
4 (reset_var_on_error, Fcombine_after_change_execute_1): Now static. 4 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
5 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic. 5 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
6 (copy_text): Remove unused local var.
6 7
7 * filelock.c (within_one_second): Now static. 8 * filelock.c (within_one_second): Now static.
8 (lock_file_1): Rename local to avoid shadowing. 9 (lock_file_1): Rename local to avoid shadowing.
diff --git a/src/insdel.c b/src/insdel.c
index 18495e6c903..ad3460f9a64 100644
--- a/src/insdel.c
+++ b/src/insdel.c
@@ -596,7 +596,6 @@ copy_text (const unsigned char *from_addr, unsigned char *to_addr,
596 { 596 {
597 EMACS_INT nchars = 0; 597 EMACS_INT nchars = 0;
598 EMACS_INT bytes_left = nbytes; 598 EMACS_INT bytes_left = nbytes;
599 Lisp_Object tbl = Qnil;
600 599
601 while (bytes_left > 0) 600 while (bytes_left > 0)
602 { 601 {