git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_1_0_branch/nano@611
35c25a1d-7b9e-4130-9fde-
d3aeb78583b8
Krebs (57) [FIXED].
- File browser aborts on Solaris in qsort() call. (Reported by
Matthias Andree) (58) [FIXED].
+- Can modify the current file in view mode with ^W^R (discovered by Rocco
+ Corsi) (58) [FIXED].
** Open BUGS **
Cvs code -
+- search.c:
+ do_replace()
+ - If we manage to make it in somehow with VIEW_MODE on, abort
+ nicely (fixes BUG #59).
+
nano 1.0.1 - 04/06/2001
- General:
- added configure option --disable-wrapping. Does what it says,
void do_replace_highlight(int highlight_flag, char *word);
void nano_disabled_msg(void);
void window_init(void);
+void print_view_warning(void);
#ifdef NANO_EXTRA
void do_credits(void);
#endif
filestruct *begin;
char *prevanswer = NULL, *buf = NULL;
+ if (ISSET(VIEW_MODE)) {
+ print_view_warning();
+ replace_abort();
+ return 0;
+ }
+
i = search_init(1);
switch (i) {
case -1: