tweak do_alt_speller() to remove the assumption that the file always

ends in a magicline


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3106 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2005-11-08 16:37:29 +00:00
parent eb02e3df4c
commit f400c23279
2 changed files with 5 additions and 3 deletions

View File

@ -39,8 +39,8 @@ CVS code -
do_help() (all moved to help.c). (DLR)
- Tweak a few functions to remove the assumption that the file
always ends in a magicline. Changes to do_cut_till_end(),
open_buffer(), read_file(), write_file(), do_last_line(), and
do_wordlinechar_count(). (DLR)
open_buffer(), read_file(), write_file(), do_last_line(),
do_alt_speller(), and do_wordlinechar_count(). (DLR)
- Tweak a few functions to rely on fileage and filebot instead
of NULL for their checks to detect the top or bottom of the
file. Changes to cut_line(), cut_to_eol(), do_page_up(),

View File

@ -1953,10 +1953,12 @@ const char *do_alt_speller(char *tempfile_name)
initialize_buffer_text();
/* Reload the temp file. Open it, read it into the current buffer,
* and move back to the first line of the buffer. */
* and move back to the beginning of the first line of the
* buffer. */
open_file(tempfile_name, FALSE, &f);
read_file(f, tempfile_name);
openfile->current = openfile->fileage;
openfile->current_x = 0;
#ifndef NANO_SMALL
if (old_mark_set) {