103ab731ab
* runit 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 ```
25 lines
796 B
Diff
25 lines
796 B
Diff
--- a/src/rxvtfont.C 2011-07-20 22:19:29.878012201 -0300
|
|
+++ b/src/rxvtfont.C 2011-07-20 22:19:33.634671723 -0300
|
|
@@ -1237,11 +1237,22 @@
|
|
|
|
FT_Face face = XftLockFace (f);
|
|
|
|
+/*
|
|
+ * use ascent, descent and height from XftFont *f instead of FT_Face face.
|
|
+ * this somehow reproduces the behaviour of the line height as seen on xterm.
|
|
+
|
|
ascent = (face->size->metrics.ascender + 63) >> 6;
|
|
descent = (-face->size->metrics.descender + 63) >> 6;
|
|
height = max (ascent + descent, (face->size->metrics.height + 63) >> 6);
|
|
width = 0;
|
|
|
|
+ */
|
|
+
|
|
+ ascent = f->ascent;
|
|
+ descent = f->descent;
|
|
+ height = max (ascent + descent, f->height);
|
|
+ width = 0;
|
|
+
|
|
bool scalable = face->face_flags & FT_FACE_FLAG_SCALABLE;
|
|
|
|
XftUnlockFace (f);
|