]> git.wh0rd.org Git - nano.git/commitdiff
Removed now useless usrtabsize variable (Christian Weisgerber)
authorChris Allegretta <chrisa@asty.org>
Fri, 4 Aug 2000 00:22:08 +0000 (00:22 +0000)
committerChris Allegretta <chrisa@asty.org>
Fri, 4 Aug 2000 00:22:08 +0000 (00:22 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@159 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
nano.c

index a53705e24d99d6c9c7696e86fa3adbc85bf83728..1ea9839729fc1ecd304a7fe97b4c1a936e5ed40b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -19,6 +19,8 @@ CVS code
   do_enter()
        - Fixed typo (?) in check for inptr->next.  Caused lots of
          grief for editing lines at filebot.
+  main()
+       - Removed now useless usrtabsize variable (Christian Weisgerber).
 - search.c:
   replace_abort()
        - redundant, now just calls search abort until it does something
diff --git a/nano.c b/nano.c
index 5e65d618944ddd90eac0a40ea0df69bbc6068b98..209e2990093842f701510299ee550ace20b530a7 100644 (file)
--- a/nano.c
+++ b/nano.c
@@ -1539,7 +1539,6 @@ int main(int argc, char *argv[])
     struct sigaction act;      /* For our lovely signals */
     int keyhandled = 0;                /* Have we handled the keystroke yet? */
     int tmpkey = 0, i;
-    int usrtabsize = 0;                /* User defined tab size */
     char *argv0;
     struct termios term;
 
@@ -1588,8 +1587,8 @@ int main(int argc, char *argv[])
 
        switch (optchr) {
        case 'T':
-           usrtabsize = atoi(optarg);
-           if (usrtabsize <= 0) {
+           tabsize = atoi(optarg);
+           if (tabsize <= 0) {
                usage();        /* To stop bogus data for tab width */
                finish(1);
            }
@@ -1772,9 +1771,6 @@ int main(int argc, char *argv[])
     else
        edit_update(fileage, CENTER);
 
-    if (usrtabsize > 0)
-       tabsize = usrtabsize;
-
     edit_refresh();
     reset_cursor();