diff options
author | Dan Vrátil <dvratil@redhat.com> | 2012-10-09 06:32:54 +0800 |
---|---|---|
committer | Dan Vrátil <dvratil@redhat.com> | 2012-10-09 06:32:54 +0800 |
commit | 14ea17959765152019b4360eebc2790cfb2e9c29 (patch) | |
tree | d06086fd43f0ee4eba6c92e8df4e76b0da6e986c /modules | |
parent | 5437fa7c354b5ddf12b4e13136834d86168e3580 (diff) | |
download | gsoc2013-evolution-14ea17959765152019b4360eebc2790cfb2e9c29.tar.gz gsoc2013-evolution-14ea17959765152019b4360eebc2790cfb2e9c29.tar.zst gsoc2013-evolution-14ea17959765152019b4360eebc2790cfb2e9c29.zip |
Don't rely on user's $PATH, use HIGHLIGHT_COMMAND defined by configure
Diffstat (limited to 'modules')
-rw-r--r-- | modules/text-highlight/e-mail-formatter-text-highlight.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/text-highlight/e-mail-formatter-text-highlight.c b/modules/text-highlight/e-mail-formatter-text-highlight.c index e0a892cd20..18ef3d864b 100644 --- a/modules/text-highlight/e-mail-formatter-text-highlight.c +++ b/modules/text-highlight/e-mail-formatter-text-highlight.c @@ -197,7 +197,7 @@ emfe_text_highlight_format (EMailFormatterExtension *extension, EShell *shell; EShellSettings *settings; PangoFontDescription *fd; - const gchar *argv[] = { "highlight", + const gchar *argv[] = { HIGHLIGHT_COMMAND, NULL, /* --font= */ NULL, /* --font-size= */ NULL, /* --syntax= */ |