Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

texinfo: fix emission of @footnote directives. #9390

Merged
merged 3 commits into from Dec 11, 2021

Commits on Jul 12, 2021

  1. texinfo: fix emission of @footnote directives.

    Right now, labels are emitted as part of a @footnote directive.
    That results in e.g.
    
    Note1: (@footnote{@w{(1)}
    Future versions of GCC may zero-extend...
    })
    
    which is incorrect and should be rather:
    
    Note1: (@footnote{Future versions of GCC may zero-extend...})
    marxin committed Jul 12, 2021
    Copy the full SHA
    1227799 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2021

  1. Copy the full SHA
    5563f67 View commit details
    Browse the repository at this point in the history
  2. refactor: texinfo: Remove CR char from output

    The CR character was added for readability of output.  But it makes the
    texinfo writer a bit complicated.  This removes it from output to keep
    our code simple (reducing conditions).
    tk0miya committed Dec 11, 2021
    Copy the full SHA
    8e23b03 View commit details
    Browse the repository at this point in the history