summarylogtreecommitdiffstats
path: root/197416.all.patch
diff options
context:
space:
mode:
authorSebastian Morr2015-06-24 22:33:37 +0200
committerSebastian Morr2015-06-24 22:33:37 +0200
commit36e6133998481f57248d1f72f0c779e1990938c1 (patch)
tree2013269710e8ed39be8e0f79dda5c9b13da98924 /197416.all.patch
downloadaur-36e6133998481f57248d1f72f0c779e1990938c1.tar.gz
Initial commit
Diffstat (limited to '197416.all.patch')
-rw-r--r--197416.all.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/197416.all.patch b/197416.all.patch
new file mode 100644
index 000000000000..99c18017259a
--- /dev/null
+++ b/197416.all.patch
@@ -0,0 +1,11 @@
+--- popt-1.16/popthelp.c.orig 2009-08-28 04:06:33 +0400
++++ popt-1.16/popthelp.c 2012-03-31 08:39:03 +0400
+@@ -312,7 +312,7 @@
+ {
+ size_t maxLeftCol = columns->cur;
+ size_t indentLength = maxLeftCol + 5;
+- size_t lineLength = columns->max - indentLength;
++ size_t lineLength = (indentLength >= columns->max) ? 1 : columns->max - indentLength;
+ const char * help = D_(translation_domain, opt->descrip);
+ const char * argDescrip = getArgDescrip(opt, translation_domain);
+ /* Display shortName iff printable non-space. */