]> git.wh0rd.org Git - nano.git/commitdiff
- Remove do_preserve_msg, as using -p still gives Pico-style string behavior, so...
authorChris Allegretta <chrisa@asty.org>
Thu, 13 Feb 2003 01:54:41 +0000 (01:54 +0000)
committerChris Allegretta <chrisa@asty.org>
Thu, 13 Feb 2003 01:54:41 +0000 (01:54 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1458 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
nano.c
proto.h

index b9dedf2e887fc770ad704d11ac72dde6f7dc03ad..969d8e78abe2ca4364ca2d0e332aa7402e2c74e3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,9 @@ CVS code
        - Change various const char *s to char *s because Irix curses
          waddnstr() complains about const char's, I imagine this is a
          common System V curses issue.   
+       - Remove do_preserve_msg, as using -p still gives Pico-style
+         string behavior, so an annoying message every invocation is
+         probably unneeded (all cheer).
 - files.c:
   cwd_tab_completion()
        - Memory leak fix (David Benbennick).
diff --git a/nano.c b/nano.c
index d21f163275814e5add746513a8b623adde71cdd4..f23f21ff0929cb6aa0cc55b72a4b839e23ca74d2 100644 (file)
--- a/nano.c
+++ b/nano.c
@@ -780,16 +780,6 @@ void nano_disabled_msg(void)
 }
 #endif
 
-void do_preserve_msg(void)
-{
-    fprintf(stderr, _("\nThe -p flag now invokes the Pico \"preserve\" flag.\n"
-                     "The Pico compatibility flag has been removed as nano\n"
-                     "now fully Pico compatible.  Please see the nano FAQ\n"
-                     "for more info on this change...\n\n"
-                     "Press return to continue\n"));
-    while (getchar() != '\n');
-}
-
 #ifndef NANO_SMALL
 static int pid;                /* This is the PID of the newly forked process 
                         * below.  It must be global since the signal
@@ -3025,9 +3015,6 @@ int main(int argc, char *argv[])
     int keyhandled = 0;        /* Have we handled the keystroke yet? */
     int kbinput = -1;          /* Input from keyboard */
 
-#ifdef HAVE_GETOPT_LONG
-    int preserveopt = 0;       /* Did the cmdline include --preserve? */
-#endif
 #ifndef NANO_SMALL
     const toggle *t;
 #endif
@@ -3098,20 +3085,6 @@ int main(int argc, char *argv[])
     textdomain(PACKAGE);
 #endif
 
-#ifdef HAVE_GETOPT_LONG
-    {
-       /* Check for the --preserve flag, and report error if people are
-          still using --pico. */
-       int i;
-       for (i = 1; i < argc; i++) {
-           if (!strcmp(argv[i], "--preserve"))
-               preserveopt = 1;
-           else if (!strcmp(argv[i], "--pico"))
-               do_preserve_msg();
-       }
-    }
-#endif
-
 #if !defined(ENABLE_NANORC) && defined(DISABLE_ROOTWRAP) && !defined(DISABLE_WRAPPING)
     /* if we don't have rcfile support, we're root, and
        --disable-wrapping-as-root is used, turn wrapping off */
@@ -3237,8 +3210,6 @@ int main(int argc, char *argv[])
        case 'p':
            SET(PRESERVE);
 #ifdef HAVE_GETOPT_LONG
-           if (!preserveopt)
-               do_preserve_msg();
 #endif
            break;
 #ifndef DISABLE_WRAPJUSTIFY
diff --git a/proto.h b/proto.h
index dbfcb9a8a294a569f32eb66c56e6139bc55634f5..4e05653fbf5f6e6b2d79e29950332b115a1ef5c2 100644 (file)
--- a/proto.h
+++ b/proto.h
@@ -261,7 +261,6 @@ int no_help(void);
 #if defined(DISABLE_JUSTIFY) || defined(DISABLE_SPELLER) || defined(DISABLE_HELP) || defined(NANO_SMALL)
 void nano_disabled_msg(void);
 #endif
-void do_preserve_msg(void);
 #ifndef NANO_SMALL
 RETSIGTYPE cancel_fork(int signal);
 int open_pipe(const char *command);