remove commas in tohighlight list
authorJoey Hess <joey@gnu.kitenet.net>
Sat, 23 May 2009 04:09:14 +0000 (00:09 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Sat, 23 May 2009 04:09:14 +0000 (00:09 -0400)
IkiWiki/Plugin/highlight.pm
doc/plugins/highlight.mdwn

index f43f18628cf783d8c6bd7075fc79a51ab9c82cc9..117ab5898a427607fcc672822ebb4198fb7f12a6 100644 (file)
@@ -23,7 +23,7 @@ sub getsetup () {
                },
                tohighlight => {
                        type => "string",
-                       example => ".c, .h, .cpp, .pl, .py, Makefile:make",
+                       example => ".c .h .cpp .pl .py Makefile:make",
                        description => "source files to syntax highlight",
                        safe => 1,
                        rebuild => 1,
@@ -32,7 +32,7 @@ sub getsetup () {
 
 sub checkconfig () {
        if (exists $config{tohighlight}) {
-               foreach my $file (split /, /, $config{tohighlight}) {
+               foreach my $file (split ' ', $config{tohighlight}) {
                        my @opts = $file=~s/^\.// ?
                                (keepextension => 1) :
                                (noextension => 1);
index 0cab8717b4503f3b689494c1820f38f2a295bc8c..5172af75901ce6aa8cd7c6eab3adc70c1b32f7c0 100644 (file)
@@ -19,7 +19,7 @@ setup file to control which files should be syntax highlighted.
 Here is a typical setting for it, enabling highlighting for files
 with the extensions .c, etc, and also for any files named "Makefile".
 
-       tohighlight => .c, .h, .cpp, .pl, .py, Makefile:make",
+       tohighlight => ".c .h .cpp .pl .py Makefile:make",
 
 It knows what language to use for most filename extensions (see
 `/etc/highlight/filetypes.conf` for a partial list), but if you want to