vice-2.4-texi2html.patch 647 B

1234567891011121314151617181920212223
  1. --- a/doc/html/texi2html 2015-11-10 12:22:49.310067806 -0800
  2. +++ b/doc/html/texi2html 2015-11-10 12:22:18.750067582 -0800
  3. @@ -1557,17 +1557,13 @@
  4. $level--; # here we start at 0
  5. if ($isim =~ /^appendix/) {
  6. # appendix style
  7. - if (defined(@appendix_sec_num)) {
  8. - &incr_sec_num($level, @appendix_sec_num);
  9. - } else {
  10. + {
  11. @appendix_sec_num = ('A', 0, 0, 0);
  12. }
  13. return(join('.', @appendix_sec_num[0..$level]));
  14. } else {
  15. # normal style
  16. - if (defined(@normal_sec_num)) {
  17. - &incr_sec_num($level, @normal_sec_num);
  18. - } else {
  19. + {
  20. @normal_sec_num = (1, 0, 0, 0);
  21. }
  22. return(join('.', @normal_sec_num[0..$level]));