diff options
author | Martin Mares <mj@ucw.cz> | 2000-06-02 19:23:53 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-06-02 19:23:53 +0200 |
commit | 371adba6deb0add48fd4d03d40d4e098590689fc (patch) | |
tree | 1d35dd49b022d3e3a384e7454e2fe91b5f816c46 /tools | |
parent | 6cba2d5eeb522cbf6f1cc28c38fc2c445f41d1e6 (diff) | |
download | bird-371adba6deb0add48fd4d03d40d4e098590689fc.tar bird-371adba6deb0add48fd4d03d40d4e098590689fc.zip |
Use <chapt> for chapters, <sect> for sections and <sect1> for subsections.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/progdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/progdoc b/tools/progdoc index 2294712..a5028bd 100755 --- a/tools/progdoc +++ b/tools/progdoc @@ -33,7 +33,7 @@ sub process { if ($cmd eq "C") { process("$dir/$arg"); } elsif ($cmd eq "H") { push @stack, "H"; - print OUT "<sect>$arg\n"; + print OUT "<chapt>$arg\n"; } elsif ($cmd eq "S") { print " $arg\n"; open(DOC, "cd $srcdir/$dir ; $srcdir/doc/kernel-doc -bird $arg |") || die "Unable to start kernel-doc"; |