diff options
author | https://id.koumbit.net/anarcat <https://id.koumbit.net/anarcat@web> | 2013-09-11 00:06:48 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2013-09-11 00:06:48 +0000 |
commit | 85493cb77acbc8450a482944ec444096a1161a6e (patch) | |
tree | 06ff08219fc20a0e1053bb8b08e7951bf5f76478 /doc | |
parent | 9827fa32785df81180dd8645660956dd31291f77 (diff) |
silly tiny bug in the manpage generation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/manpage_has_slight_indentation_error.mdwn | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/doc/bugs/manpage_has_slight_indentation_error.mdwn b/doc/bugs/manpage_has_slight_indentation_error.mdwn new file mode 100644 index 000000000..fd6f5ea06 --- /dev/null +++ b/doc/bugs/manpage_has_slight_indentation_error.mdwn @@ -0,0 +1,36 @@ +### Please describe the problem. + +The "import" section of the manpage has an indentation error. + +### What steps will reproduce the problem? + +man git-annex + +### What version of git-annex are you using? On what operating system? + +anything after 20130827, i believe. + +### Please provide any additional information below. + +silly patch: + +[[!format diff """ +# If you can, paste a complete transcript of the problem occurring here. +# If the problem is with the git-annex assistant, paste in .git/annex/daemon.log +diff --git a/Build/mdwn2man b/Build/mdwn2man +index ba5919b..b3ee404 100755 +--- a/Build/mdwn2man ++++ b/Build/mdwn2man +@@ -25,7 +25,7 @@ while (<>) { + $inlist=1; + $spippara=0; + } +- elsif (/.SH/) { ++ elsif (/^.SH/) { + $skippara=0; + $inlist=0; + } +# End of transcript or log. +"""]] + +-- [[anarcat]] |