diff options
author | Josh Triplett <josh@freedesktop.org> | 2008-01-26 23:12:29 -0800 |
---|---|---|
committer | Josh Triplett <josh@freedesktop.org> | 2008-01-26 23:12:29 -0800 |
commit | fafb2edaa7aeb1293e716fa96f087cb713f4a70a (patch) | |
tree | f9f2cd171f0a8e21f94be1e633caa0ee50fa47bf /IkiWiki | |
parent | a93652df9dfd7d985e06541111a31d394b6d42ab (diff) |
aggregate.pm: Replace Unicode apostrophe with ASCII to unbreak build
gettext choked on a Unicode apostrophe in the aggregate plugin, which
appeared in a new error message in commit
4f872b563300e4a277cac3d7ea2a999bcf75d1ff. Replace it with an ASCII
apostrophe.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/aggregate.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/aggregate.pm b/IkiWiki/Plugin/aggregate.pm index 09ea59029..71368e254 100644 --- a/IkiWiki/Plugin/aggregate.pm +++ b/IkiWiki/Plugin/aggregate.pm @@ -42,7 +42,7 @@ sub checkconfig () { #{{{ # The parent process will then handle building the result. # This avoids messy code to clear state accumulated while # aggregating. - defined(my $pid = fork) or error("Can’t fork: $!"); + defined(my $pid = fork) or error("Can't fork: $!"); if (! $pid) { loadstate(); IkiWiki::loadindex(); |