projects
/
ikiwiki.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a93652d
)
aggregate.pm: Replace Unicode apostrophe with ASCII to unbreak build
author
Josh Triplett
<josh@freedesktop.org>
Sun, 27 Jan 2008 07:12:29 +0000
(23:12 -0800)
committer
Josh Triplett
<josh@freedesktop.org>
Sun, 27 Jan 2008 07:12:29 +0000
(23:12 -0800)
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.
IkiWiki/Plugin/aggregate.pm
patch
|
blob
|
history
diff --git
a/IkiWiki/Plugin/aggregate.pm
b/IkiWiki/Plugin/aggregate.pm
index 09ea5902938b16030ab75ced886288a4e5497454..71368e254a960cf2545efe79ffe4b91601b34649 100644
(file)
--- 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();