diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2008-12-23 16:24:43 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2008-12-23 16:24:43 -0500 |
commit | 70fa222d06a0f1d97ae135deaf0ea2f81ba60c6e (patch) | |
tree | 3c975d5ecdd371009db5e6e1c09f3e6400870b29 | |
parent | db7983c846097d3ad1929250600872139e45bb78 (diff) |
enable prefix_directives by default
-rw-r--r-- | IkiWiki.pm | 2 | ||||
-rw-r--r-- | auto.setup | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index 6747a3ba4..127c9e5d7 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -194,7 +194,7 @@ sub getsetup () { }, prefix_directives => { type => "boolean", - default => 0, + default => 1, description => "use '!'-prefixed preprocessor directives?", safe => 0, # changing requires manual transition rebuild => 1, diff --git a/auto.setup b/auto.setup index ef0f1723c..9cf5e7725 100644 --- a/auto.setup +++ b/auto.setup @@ -40,6 +40,5 @@ IkiWiki::Setup::Automator->import( rss => 1, atom => 1, syslog => 1, - prefix_directives => 1, hardlink => 1, ) |