04b9978a29
* wine is kept at -Np0 ```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.-][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.-][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
15 lines
555 B
Diff
15 lines
555 B
Diff
--- a/curses/wicd-curses.py 2015-01-27 22:35:25.414781192 -0300
|
|
+++ b/curses/wicd-curses.py 2015-01-28 01:13:48.078904587 -0300
|
|
@@ -1153,9 +1153,10 @@
|
|
if not ui._started:
|
|
return False
|
|
|
|
- input_data = ui.get_input_nonblocking()
|
|
+ ui.set_input_timeouts(max_wait=0)
|
|
+ input_data = ui.get_input()
|
|
# Resolve any "alarms" in the waiting
|
|
- self.handle_keys(input_data[1])
|
|
+ self.handle_keys(input_data or [])
|
|
|
|
# Update the screen
|
|
canvas = self.frame.render((self.size), True)
|