Emacs: Difference between revisions

From Alpine Linux
(create dir file for info)
 
m (Added Categories: Software, Development)
 
Line 9: Line 9:
  # run as root
  # run as root
  find /usr/share/info/ -name '*.info*' -print0 | xargs -0I{} install-info {} /usr/share/info/dir
  find /usr/share/info/ -name '*.info*' -print0 | xargs -0I{} install-info {} /usr/share/info/dir
[[Category:Software]]
[[Category:Development]]

Latest revision as of 04:37, 6 December 2025

Empty Info directory node

Emacs uses the texinfo documenting system, but the docs are shipped in a separate package in Alpine Linux. You need to install

apk add texinfo emacs-docs

Then generate the dir index file for Info documenting system.

# run as root
find /usr/share/info/ -name '*.info*' -print0 | xargs -0I{} install-info {} /usr/share/info/dir