logo

etc_portage

Unnamed repository; edit this file 'description' to name the repository. git clone https://hacktivis.me/git/etc_portage.git

0017-stagit.c-fixup-HTML5.patch (1127B)


  1. From bdafdb3ad828d9f6610ee832e000910629aca7e0 Mon Sep 17 00:00:00 2001
  2. From: "Haelwenn (lanodan) Monnier" <contact@hacktivis.me>
  3. Date: Mon, 11 Feb 2019 03:09:41 +0100
  4. Subject: [PATCH 17/22] stagit.c: fixup HTML5
  5. ---
  6. stagit.c | 6 +++---
  7. 1 file changed, 3 insertions(+), 3 deletions(-)
  8. diff --git a/stagit.c b/stagit.c
  9. index a20d8f4..d6d8b4b 100644
  10. --- a/stagit.c
  11. +++ b/stagit.c
  12. @@ -378,13 +378,13 @@ writeheader(FILE *fp, const char *title)
  13. fprintf(fp, " <a rel=\"index\" href=\"%sfiles.html\">Files</a>", relpath);
  14. fprintf(fp, " <a href=\"%srefs.html\">Refs</a>", relpath);
  15. if (submodules)
  16. - fprintf(fp, " | <a href=\"%sfile/%s.html\">Submodules</a>",
  17. + fprintf(fp, " <a href=\"%sfile/%s.html\">Submodules</a>",
  18. relpath, submodules);
  19. if (readme)
  20. - fprintf(fp, " | <a href=\"%sfile/%s.html\">README</a>",
  21. + fprintf(fp, " <a href=\"%sfile/%s.html\">README</a>",
  22. relpath, readme);
  23. if (license)
  24. - fprintf(fp, " | <a href=\"%sfile/%s.html\">LICENSE</a>",
  25. + fprintf(fp, " <a href=\"%sfile/%s.html\">LICENSE</a>",
  26. relpath, license);
  27. fputs("</nav>\n<main>\n", fp);
  28. }
  29. --
  30. 2.26.2