Dlr's revert multibuffer and view mode patch

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1410 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Chris Allegretta 2003-02-02 04:26:54 +00:00
parent f80a59c7cc
commit 5c63f27721
25 changed files with 7100 additions and 6410 deletions

View File

@ -39,6 +39,11 @@ CVS Code -
(David Benbennick).
open_file()
- Fix FD leak with file load error (David Benbennick).
add_open_file()
- Revert the fix for the supposed minor logic error from before;
it was keeping some updates from happening when they should,
which was leading to segfaults with both multibuffer and view
mode on. (DLR; found by David Benbennick)
save_history()
- Fix nrealloc return value being ignored (David Benbennick).
- nano.c:

View File

@ -780,10 +780,9 @@ int add_open_file(int update)
#endif
}
/* if we're in view mode and updating, the file contents won't
have changed, so we won't bother resaving the filestruct
then; otherwise, we will */
if (!(ISSET(VIEW_MODE) || !update)) {
/* if we're not in view mode and not updating, the file contents
might have changed, so save the filestruct; otherwise, don't */
if (!(ISSET(VIEW_MODE) && !update)) {
/* save current file buffer */
open_files->fileage = fileage;
open_files->filebot = filebot;

679
po/ca.po

File diff suppressed because it is too large Load Diff

526
po/cs.po

File diff suppressed because it is too large Load Diff

508
po/da.po

File diff suppressed because it is too large Load Diff

665
po/de.po

File diff suppressed because it is too large Load Diff

711
po/es.po

File diff suppressed because it is too large Load Diff

538
po/eu.po

File diff suppressed because it is too large Load Diff

556
po/fi.po

File diff suppressed because it is too large Load Diff

694
po/fr.po

File diff suppressed because it is too large Load Diff

691
po/gl.po

File diff suppressed because it is too large Load Diff

524
po/hu.po

File diff suppressed because it is too large Load Diff

504
po/id.po

File diff suppressed because it is too large Load Diff

508
po/it.po

File diff suppressed because it is too large Load Diff

665
po/ms.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

524
po/nb.po

File diff suppressed because it is too large Load Diff

680
po/nl.po

File diff suppressed because it is too large Load Diff

524
po/nn.po

File diff suppressed because it is too large Load Diff

671
po/pl.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

524
po/ru.po

File diff suppressed because it is too large Load Diff

687
po/sv.po

File diff suppressed because it is too large Load Diff

479
po/tr.po

File diff suppressed because it is too large Load Diff

683
po/uk.po

File diff suppressed because it is too large Load Diff