bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

indent-2.2.6: --no-tabs option not recognized


From: Jim Meyering
Subject: indent-2.2.6: --no-tabs option not recognized
Date: Tue, 04 Dec 2001 18:30:56 +0100
User-agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/21.1.50 (i686-pc-linux-gnu)

Here's the problem:

  $ indent --no-tabs
  indent: unknown option "-no-tabs"
  [Exit 1]

Here's the patch:

2001-12-03  Jim Meyering  <address@hidden>

        * args.c (option_conversions): Fix typo: s/"nt"/"nut"/, so that
        --no-tabs works as documented.


--- args.c.~1~  Mon Dec  3 19:25:22 2001
+++ args.c      Mon Dec  3 19:25:26 2001
@@ -483,7 +483,7 @@ struct long_option_conversion option_con
   {"original-style", "orig"},
   {"original", "orig"},
   {"no-verbosity", "nv"},
-  {"no-tabs", "nt"},
+  {"no-tabs", "nut"},
   {"no-space-after-while", "nsaw"},
   {"no-space-after-parentheses", "nprs"},
   {"no-space-after-if", "nsai"},



reply via email to

[Prev in Thread] Current Thread [Next in Thread]