unpartition_filestruct() should take a partition** instead of a
partition*, so that the partition it refers to is properly set to NULL git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2117 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
e56d936bd4
commit
74d87073f0
|
@ -637,7 +637,7 @@ void do_insertfile(
|
||||||
* again. Note that we've replaced the non-text
|
* again. Note that we've replaced the non-text
|
||||||
* originally in the partition with the text in the
|
* originally in the partition with the text in the
|
||||||
* inserted file/executed command output. */
|
* inserted file/executed command output. */
|
||||||
unpartition_filestruct(filepart);
|
unpartition_filestruct(&filepart);
|
||||||
|
|
||||||
/* Renumber starting with the beginning line of the old
|
/* Renumber starting with the beginning line of the old
|
||||||
* partition. */
|
* partition. */
|
||||||
|
@ -1802,7 +1802,7 @@ int write_marked(const char *name, bool tmp, int append)
|
||||||
|
|
||||||
/* Unpartition the filestruct so that it contains all the text
|
/* Unpartition the filestruct so that it contains all the text
|
||||||
* again. */
|
* again. */
|
||||||
unpartition_filestruct(filepart);
|
unpartition_filestruct(&filepart);
|
||||||
|
|
||||||
if (old_modified)
|
if (old_modified)
|
||||||
set_modified();
|
set_modified();
|
||||||
|
|
36
src/nano.c
36
src/nano.c
|
@ -672,7 +672,7 @@ partition *partition_filestruct(filestruct *top, size_t top_x,
|
||||||
|
|
||||||
/* Unpartition a filestruct so it begins at (fileage, 0) and ends at
|
/* Unpartition a filestruct so it begins at (fileage, 0) and ends at
|
||||||
* (filebot, strlen(filebot)) again. */
|
* (filebot, strlen(filebot)) again. */
|
||||||
void unpartition_filestruct(partition *p)
|
void unpartition_filestruct(partition **p)
|
||||||
{
|
{
|
||||||
char *tmp;
|
char *tmp;
|
||||||
assert(p != NULL && fileage != NULL && filebot != NULL);
|
assert(p != NULL && fileage != NULL && filebot != NULL);
|
||||||
|
@ -681,37 +681,37 @@ void unpartition_filestruct(partition *p)
|
||||||
* text before top_x from top_data. Free top_data when we're done
|
* text before top_x from top_data. Free top_data when we're done
|
||||||
* with it. */
|
* with it. */
|
||||||
tmp = mallocstrcpy(NULL, fileage->data);
|
tmp = mallocstrcpy(NULL, fileage->data);
|
||||||
fileage->prev = p->top_prev;
|
fileage->prev = (*p)->top_prev;
|
||||||
if (fileage->prev != NULL)
|
if (fileage->prev != NULL)
|
||||||
fileage->prev->next = fileage;
|
fileage->prev->next = fileage;
|
||||||
fileage->data = charealloc(fileage->data, strlen(p->top_data) +
|
fileage->data = charealloc(fileage->data, strlen((*p)->top_data) +
|
||||||
strlen(fileage->data) + 1);
|
strlen(fileage->data) + 1);
|
||||||
strcpy(fileage->data, p->top_data);
|
strcpy(fileage->data, (*p)->top_data);
|
||||||
free(p->top_data);
|
free((*p)->top_data);
|
||||||
strcat(fileage->data, tmp);
|
strcat(fileage->data, tmp);
|
||||||
free(tmp);
|
free(tmp);
|
||||||
|
|
||||||
/* Reattach the line below the bottom of the partition, and restore
|
/* Reattach the line below the bottom of the partition, and restore
|
||||||
* the text after bot_x from bot_data. Free bot_data when we're
|
* the text after bot_x from bot_data. Free bot_data when we're
|
||||||
* done with it. */
|
* done with it. */
|
||||||
filebot->next = p->bot_next;
|
filebot->next = (*p)->bot_next;
|
||||||
if (filebot->next != NULL)
|
if (filebot->next != NULL)
|
||||||
filebot->next->prev = filebot;
|
filebot->next->prev = filebot;
|
||||||
filebot->data = charealloc(filebot->data, strlen(filebot->data) +
|
filebot->data = charealloc(filebot->data, strlen(filebot->data) +
|
||||||
strlen(p->bot_data) + 1);
|
strlen((*p)->bot_data) + 1);
|
||||||
strcat(filebot->data, p->bot_data);
|
strcat(filebot->data, (*p)->bot_data);
|
||||||
free(p->bot_data);
|
free((*p)->bot_data);
|
||||||
|
|
||||||
/* Restore the top and bottom of the filestruct, if they were
|
/* Restore the top and bottom of the filestruct, if they were
|
||||||
* different from the top and bottom of the partition. */
|
* different from the top and bottom of the partition. */
|
||||||
if (p->fileage != NULL)
|
if ((*p)->fileage != NULL)
|
||||||
fileage = p->fileage;
|
fileage = (*p)->fileage;
|
||||||
if (p->filebot != NULL)
|
if ((*p)->filebot != NULL)
|
||||||
filebot = p->filebot;
|
filebot = (*p)->filebot;
|
||||||
|
|
||||||
/* Uninitialize the partition. */
|
/* Uninitialize the partition. */
|
||||||
free(p);
|
free(*p);
|
||||||
p = NULL;
|
*p = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void renumber_all(void)
|
void renumber_all(void)
|
||||||
|
@ -1638,7 +1638,7 @@ bool do_int_spell_fix(const char *word)
|
||||||
|
|
||||||
/* Unpartition the filestruct so that it contains all the text
|
/* Unpartition the filestruct so that it contains all the text
|
||||||
* again, and turn the mark back on. */
|
* again, and turn the mark back on. */
|
||||||
unpartition_filestruct(filepart);
|
unpartition_filestruct(&filepart);
|
||||||
SET(MARK_ISSET);
|
SET(MARK_ISSET);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -2006,7 +2006,7 @@ const char *do_alt_speller(char *tempfile_name)
|
||||||
* again. Note that we've replaced the marked text originally
|
* again. Note that we've replaced the marked text originally
|
||||||
* in the partition with the spell-checked marked text in the
|
* in the partition with the spell-checked marked text in the
|
||||||
* temp file. */
|
* temp file. */
|
||||||
unpartition_filestruct(filepart);
|
unpartition_filestruct(&filepart);
|
||||||
|
|
||||||
/* Renumber starting with the beginning line of the old
|
/* Renumber starting with the beginning line of the old
|
||||||
* partition. Also add the number of lines and characters in
|
* partition. Also add the number of lines and characters in
|
||||||
|
@ -3063,7 +3063,7 @@ void handle_sigwinch(int s)
|
||||||
|
|
||||||
/* If we've partitioned the filestruct, unpartition it now. */
|
/* If we've partitioned the filestruct, unpartition it now. */
|
||||||
if (filepart != NULL)
|
if (filepart != NULL)
|
||||||
unpartition_filestruct(filepart);
|
unpartition_filestruct(&filepart);
|
||||||
|
|
||||||
#ifdef USE_SLANG
|
#ifdef USE_SLANG
|
||||||
/* Slang curses emulation brain damage, part 1: If we just do what
|
/* Slang curses emulation brain damage, part 1: If we just do what
|
||||||
|
|
|
@ -307,7 +307,7 @@ filestruct *copy_filestruct(const filestruct *src);
|
||||||
void free_filestruct(filestruct *src);
|
void free_filestruct(filestruct *src);
|
||||||
partition *partition_filestruct(filestruct *top, size_t top_x,
|
partition *partition_filestruct(filestruct *top, size_t top_x,
|
||||||
filestruct *bot, size_t bot_x);
|
filestruct *bot, size_t bot_x);
|
||||||
void unpartition_filestruct(partition *p);
|
void unpartition_filestruct(partition **p);
|
||||||
void renumber_all(void);
|
void renumber_all(void);
|
||||||
void renumber(filestruct *fileptr);
|
void renumber(filestruct *fileptr);
|
||||||
void print1opt(const char *shortflag, const char *longflag, const char
|
void print1opt(const char *shortflag, const char *longflag, const char
|
||||||
|
|
|
@ -848,7 +848,7 @@ ssize_t do_replace_loop(const char *needle, const filestruct
|
||||||
/* If the mark was on, unpartition the filestruct so that it
|
/* If the mark was on, unpartition the filestruct so that it
|
||||||
* contains all the text again, set edittop back to what it was
|
* contains all the text again, set edittop back to what it was
|
||||||
* before, turn the mark back on, and refresh the screen. */
|
* before, turn the mark back on, and refresh the screen. */
|
||||||
unpartition_filestruct(filepart);
|
unpartition_filestruct(&filepart);
|
||||||
edittop = edittop_save;
|
edittop = edittop_save;
|
||||||
SET(MARK_ISSET);
|
SET(MARK_ISSET);
|
||||||
edit_refresh();
|
edit_refresh();
|
||||||
|
|
Loading…
Reference in New Issue