mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-23 00:01:16 -03:00
Historically, - our "man" wrapper prepends /usr/share/fish/man to $MANPATH - "__fish_print_help" only operates on /usr/share/fish/man, to it accesses that directly However standalone builds -- where /usr/share/fish/man may not exist -- have complicated things; we temporarily materialize a fake man directory. Reuse __fish_print_help instead of duplicating this. Part of #12037