void-packages/srcpkgs/xnots/patches/inline.patch
Đoàn Trần Công Danh 3353bf4722 srcpkgs/x*: convert patches to -Np1
```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
```
2021-06-20 13:17:29 +07:00

27 lines
756 B
Diff

diff --git src/notes.c src/notes.c
index 0c427dd..5d32740 100644
--- a/src/notes.c
+++ b/src/notes.c
@@ -731,7 +731,7 @@ correctNoteHeight( Note *note )
/*
Reset the width of note internals (e.g. the pango layout) to note->width.
*/
-inline void
+void
resetNoteWidth( Note *note )
{
pango_layout_set_width( note->playout,
diff --git src/xnots.h src/xnots.h
index 8280ccb..ef7395b 100644
--- a/src/xnots.h
+++ b/src/xnots.h
@@ -315,7 +315,7 @@ void correctNoteGeometry ( Note *note,
unsigned height
);
void correctNoteHeight ( Note *note );
-inline void resetNoteWidth ( Note *note );
+void resetNoteWidth ( Note *note );
void freeNote ( Note *note );
void showNotes ();
void setNoteText ( Note *note, char *text);