Add missing w from getopt_long call. - enscript - GNU Enscript
(HTM) git clone git://thinkerwim.org/enscript.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit c09b925450a5d3e26c8e63f4af79f7c666a12ebc
(DIR) parent e379c912ba622d04e90920f6748752b50097c1d1
(HTM) Author: Tim Retout <diocles@gnu.org>
Date: Sat, 9 Jul 2011 23:52:12 +0100
Add missing w from getopt_long call.
Signed-off-by: Tim Retout <diocles@gnu.org>
Diffstat:
M ChangeLog | 3 +++
M src/main.c | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/ChangeLog b/ChangeLog
@@ -1,5 +1,8 @@
2011-07-09 Tim Retout <diocles@gnu.org>
+ * src/main.c (handle_options): Add missing 'w' from
+ getopt_long call. Savannah bug #30651.
+
Apply patch 393791-sliceprint from Debian:
* scripts/sliceprint.1: Complete documentation.
* scripts/sliceprint.in: Force C locale.
(DIR) diff --git a/src/main.c b/src/main.c
@@ -2001,7 +2001,7 @@ handle_options (int argc, char *argv[])
int i;
c = getopt_long (argc, argv,
- "#:123456789a:A:b:BcC::d:D:e::E::f:F:gGhH::i:I:jJ:kKlL:mM:n:N:o:Op:P:qrRs:S:t:T:u::U:vVW:X:zZ",
+ "#:123456789a:A:b:BcC::d:D:e::E::f:F:gGhH::i:I:jJ:kKlL:mM:n:N:o:Op:P:qrRs:S:t:T:u::U:vVwW:X:zZ",
long_options, &option_index);
if (c == -1)