Commit 4d97a588 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

cosmetic totsize-related cleanups

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2206 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 1 addition and 4 deletions
+1 -4
......@@ -1296,13 +1296,13 @@ void do_enter(void)
filebot = newnode;
splice_node(current, newnode, current->next);
totsize++;
renumber(current);
current = newnode;
edit_refresh();
totlines++;
totsize++;
set_modified();
placewewant = xplustabs();
}
......@@ -3649,9 +3649,6 @@ void do_output(int *kbinput, size_t kbinput_len)
current_len - current_x + key_len);
charcpy(&current->data[current_x], key, key_len);
current_len += key_len;
/* FIXME: Should totsize be the number of single-byte characters
* or the number of multibyte characters? Assume the former for
* now. */
totsize += key_len;
set_modified();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment