tweaks: retype, rename, and reshuffle a function

master
Benno Schulenberg 2016-12-23 13:49:14 +01:00
parent c92b9be6cd
commit dc18746cbd
3 changed files with 20 additions and 19 deletions

View File

@ -1214,7 +1214,7 @@ void do_insertfile(void)
#ifndef NANO_TINY #ifndef NANO_TINY
if (!execute) if (!execute)
#endif #endif
if (check_poshistory(answer, &priorline, &priorcol)) if (has_old_position(answer, &priorline, &priorcol))
do_gotolinecolumn(priorline, priorcol, FALSE, FALSE); do_gotolinecolumn(priorline, priorcol, FALSE, FALSE);
} }
#endif /* !DISABLE_HISTORIES */ #endif /* !DISABLE_HISTORIES */
@ -3146,27 +3146,28 @@ void update_poshistory(char *filename, ssize_t lineno, ssize_t xpos)
free(fullpath); free(fullpath);
} }
/* Check the recorded last file positions to see if the given file /* Check whether the given file matches an existing entry in the recorded
* matches an existing entry. If so, return 1 and set line and column * last file positions. If not, return FALSE. If yes, return TRUE and
* to the retrieved values. Otherwise, return 0. */ * set line and column to the retrieved values. */
int check_poshistory(const char *file, ssize_t *line, ssize_t *column) bool has_old_position(const char *file, ssize_t *line, ssize_t *column)
{ {
poshiststruct *posptr; poshiststruct *posptr = position_history;
char *fullpath = get_full_path(file); char *fullpath = get_full_path(file);
if (fullpath == NULL) if (fullpath == NULL)
return 0; return FALSE;
while (posptr != NULL && strcmp(posptr->filename, fullpath) != 0)
posptr = posptr->next;
free(fullpath);
if (posptr == NULL)
return FALSE;
for (posptr = position_history; posptr != NULL; posptr = posptr->next) {
if (!strcmp(posptr->filename, fullpath)) {
*line = posptr->lineno; *line = posptr->lineno;
*column = posptr->xno; *column = posptr->xno;
free(fullpath); return TRUE;
return 1;
}
}
free(fullpath);
return 0;
} }
/* Load the recorded file positions from ~/.nano/filepos_history. */ /* Load the recorded file positions from ~/.nano/filepos_history. */

View File

@ -2606,7 +2606,7 @@ int main(int argc, char **argv)
else if (ISSET(POS_HISTORY)) { else if (ISSET(POS_HISTORY)) {
ssize_t savedposline, savedposcol; ssize_t savedposline, savedposcol;
/* If edited before, restore the last cursor position. */ /* If edited before, restore the last cursor position. */
if (check_poshistory(argv[i], &savedposline, &savedposcol)) if (has_old_position(argv[i], &savedposline, &savedposcol))
do_gotolinecolumn(savedposline, savedposcol, do_gotolinecolumn(savedposline, savedposcol,
FALSE, FALSE); FALSE, FALSE);
} }
@ -2640,7 +2640,7 @@ int main(int argc, char **argv)
else if (ISSET(POS_HISTORY)) { else if (ISSET(POS_HISTORY)) {
ssize_t savedposline, savedposcol; ssize_t savedposline, savedposcol;
/* If the file was edited before, restore the last cursor position. */ /* If the file was edited before, restore the last cursor position. */
if (check_poshistory(argv[optind], &savedposline, &savedposcol)) if (has_old_position(argv[optind], &savedposline, &savedposcol))
do_gotolinecolumn(savedposline, savedposcol, FALSE, FALSE); do_gotolinecolumn(savedposline, savedposcol, FALSE, FALSE);
} }
#endif #endif

View File

@ -354,7 +354,7 @@ int check_dotnano(void);
void load_poshistory(void); void load_poshistory(void);
void save_poshistory(void); void save_poshistory(void);
void update_poshistory(char *filename, ssize_t lineno, ssize_t xpos); void update_poshistory(char *filename, ssize_t lineno, ssize_t xpos);
int check_poshistory(const char *file, ssize_t *line, ssize_t *column); bool has_old_position(const char *file, ssize_t *line, ssize_t *column);
#endif #endif
/* Some functions in global.c. */ /* Some functions in global.c. */