mirror of git://git.sv.gnu.org/nano.git
Allowing --historylog and --poslog to function
also when --ignorercfiles is given. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4987 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
d840302f28
commit
fcb4c3fc6e
|
@ -2,6 +2,8 @@
|
|||
* src/nano.c (window_init): Rename 'no_more_space()' to 'more_space()'
|
||||
for consistency, and tweak the related comments.
|
||||
* src/files.c: Update some comments to match the current status.
|
||||
* src/nano (finish, main): Allow -H/--historylog and -P/--poslog to
|
||||
function also when -I/--ignorercfiles is given.
|
||||
|
||||
2014-06-18 Benno Schulenberg <bensberg@justemail.net>
|
||||
* src/text.c: Rename 'to_end' to 'to_eof', to lessen confusion
|
||||
|
|
31
src/nano.c
31
src/nano.c
|
@ -613,9 +613,9 @@ void finish(void)
|
|||
tcsetattr(0, TCSANOW, &oldterm);
|
||||
|
||||
#if !defined(NANO_TINY) && !defined(DISABLE_NANORC)
|
||||
if (!no_rcfiles && ISSET(HISTORYLOG))
|
||||
if (ISSET(HISTORYLOG))
|
||||
save_history();
|
||||
if (!no_rcfiles && ISSET(POS_HISTORY)) {
|
||||
if (ISSET(POS_HISTORY)) {
|
||||
update_poshistory(openfile->filename, openfile->current->lineno, xplustabs() + 1);
|
||||
save_poshistory();
|
||||
}
|
||||
|
@ -2410,14 +2410,16 @@ int main(int argc, char **argv)
|
|||
if (*(tail(argv[0])) == 'r')
|
||||
SET(RESTRICTED);
|
||||
|
||||
/* If we're using restricted mode, disable suspending, backups, and
|
||||
* reading rcfiles, since they all would allow reading from or
|
||||
* writing to files not specified on the command line. */
|
||||
/* If we're using restricted mode, disable suspending, backups,
|
||||
* rcfiles, and history files, since they all would allow reading
|
||||
* from or writing to files not specified on the command line. */
|
||||
if (ISSET(RESTRICTED)) {
|
||||
UNSET(SUSPEND);
|
||||
UNSET(BACKUP_FILE);
|
||||
#ifndef DISABLE_NANORC
|
||||
no_rcfiles = TRUE;
|
||||
UNSET(HISTORYLOG);
|
||||
UNSET(POS_HISTORY);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -2529,18 +2531,17 @@ int main(int argc, char **argv)
|
|||
/* Set up the search/replace history. */
|
||||
history_init();
|
||||
#ifndef DISABLE_NANORC
|
||||
if (!no_rcfiles) {
|
||||
if (ISSET(HISTORYLOG) || ISSET(POS_HISTORY)) {
|
||||
if (check_dotnano() == 0) {
|
||||
UNSET(HISTORYLOG);
|
||||
UNSET(POS_HISTORY);
|
||||
}
|
||||
if (ISSET(HISTORYLOG) || ISSET(POS_HISTORY)) {
|
||||
get_homedir();
|
||||
if (homedir == NULL || check_dotnano() == 0) {
|
||||
UNSET(HISTORYLOG);
|
||||
UNSET(POS_HISTORY);
|
||||
}
|
||||
if (ISSET(HISTORYLOG))
|
||||
load_history();
|
||||
if (ISSET(POS_HISTORY))
|
||||
load_poshistory();
|
||||
}
|
||||
if (ISSET(HISTORYLOG))
|
||||
load_history();
|
||||
if (ISSET(POS_HISTORY))
|
||||
load_poshistory();
|
||||
#endif /* !DISABLE_NANORC */
|
||||
|
||||
/* Set up the backup directory (unless we're using restricted mode,
|
||||
|
|
Loading…
Reference in New Issue