[Github-comments] [geany/geany] WIP: Windows (and Linux) spawn fixes (#1300)

Matthew Brush notifications at xxxxx
Sat Nov 12 20:15:24 UTC 2016


codebrainz commented on this pull request.



> +} Placeholder;
+
+
+static const gchar *placeholder_replacement(Placeholder *placeholders, size_t n_placeholders, gchar placeholder)
+{
+	for (size_t i = 0; i < n_placeholders; i++)
+	{
+		if (placeholders[i].placeholder == placeholder)
+			return placeholders[i].replacement;
+	}
+
+	return NULL;
+}
+
+
+/* Replaces %s-style placeholders in a string.

Oh it's for the build commands? My question still stands, but it's completely out of scope for this PR.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/1300
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20161112/13d4cfad/attachment.html>


More information about the Github-comments mailing list