Re: How to add "Up:" to Texinfo navigation bar?

Patrice Dumas <[email protected]> Wed, 28 Aug 2024 10:45:14 +0200
Newsgroups gmane.comp.tex.texinfo.general
Message-ID <[email protected]>
On Wed, Aug 28, 2024 at 10:13:25AM +0200, Patrice Dumas wrote:
> Then you can select some directions only:
> texinfo_set_from_init_file(
>      'SECTION_BUTTONS',
>       ['Up', \&_my_button_direction_section_href],
>       #['Next', \&_my_button_direction_section_href], 
>       #['Prev', \&_my_button_direction_section_href], 
>       'Top', 'Contents']);

Sorry, this part should have been

texinfo_set_from_init_file(
     'SECTION_BUTTONS',
      [['Up', \&_my_button_direction_section_href],
      #['Next', \&_my_button_direction_section_href], 
      #['Prev', \&_my_button_direction_section_href], 
      'Top', 'Contents']);

-- 
Pat