summaryrefslogtreecommitdiff
path: root/doc/bugs/manpage_has_slight_indentation_error.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-09-11 12:10:11 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-09-11 12:10:11 -0400
commit998fcdc75afe4c5bc6b03ab22561d1f322edf7f2 (patch)
treeb752f11d25becc39703e40b1722ec1f483016857 /doc/bugs/manpage_has_slight_indentation_error.mdwn
parentd71636fba46d42cd6d86fd175e635a8539616bca (diff)
parent3a135ff1a43053a769211dbe3bf711ad89273f64 (diff)
Merge branch 'master' of ssh://git-annex.branchable.com
Diffstat (limited to 'doc/bugs/manpage_has_slight_indentation_error.mdwn')
-rw-r--r--doc/bugs/manpage_has_slight_indentation_error.mdwn36
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]]