]> git.sur5r.net Git - i3/i3/blobdiff - src/util.c
Ensure that the "border" command uses logical pixels.
[i3/i3] / src / util.c
index 7a73011d050d879dc5aecd205e777f0779f16e95..35ce8b19334c07ded42e6bfe94eb4dd54eddf75a 100644 (file)
@@ -332,6 +332,21 @@ void *memmem(const void *l, size_t l_len, const void *s, size_t s_len) {
 
 #endif
 
+/*
+ * Escapes the given string if a pango font is currently used.
+ * If the string has to be escaped, the input string will be free'd.
+ *
+ */
+char *pango_escape_markup(char *input) {
+    if (!font_is_pango())
+        return input;
+
+    char *escaped = g_markup_escape_text(input, -1);
+    FREE(input);
+
+    return escaped;
+}
+
 /*
  * Handler which will be called when we get a SIGCHLD for the nagbar, meaning
  * it exited (or could not be started, depending on the exit code).