1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-24 14:30:43 -08:00

* insdel.c (copy_text): Remove unused local var.

This commit is contained in:
Paul Eggert 2011-03-14 18:26:16 -07:00
parent f0cb4a6079
commit 40ef059ee2
2 changed files with 1 additions and 1 deletions

View file

@ -3,6 +3,7 @@
* insdel.c (check_markers, make_gap_larger, make_gap_smaller):
(reset_var_on_error, Fcombine_after_change_execute_1): Now static.
(CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
(copy_text): Remove unused local var.
* filelock.c (within_one_second): Now static.
(lock_file_1): Rename local to avoid shadowing.

View file

@ -596,7 +596,6 @@ copy_text (const unsigned char *from_addr, unsigned char *to_addr,
{
EMACS_INT nchars = 0;
EMACS_INT bytes_left = nbytes;
Lisp_Object tbl = Qnil;
while (bytes_left > 0)
{