Thanks for your answer, though it does not help me with the issue (read below , why). I updated my question with screenshots.
What you call online documentation is just the package manual.
I wrote “on-line” within quotation marks. What I called “on-line” documentation is the function documentation (aka docstring). But I feared, when I would use function documentation every one would point me to the official calc manual …
“On-line documentation” is (imho) just 1980s terminology for documentation readable within the program.
[…] helpful […] puts links to the calc manual in the function documentation […].
I updated my Question with screenshots, those screenshots are intended to make it more clear. Using helpful
’s WWW link in an emacs help buffer is like walking to the public library and reading a book (for my intended use case). (Don’t get me wrong, reading a book from a public library is nice, I’m glad such things are possible.)
That’s is a good idea! Despite what all others say. I’m doing this since years with my Linux box(es).
But you need to know, that self compiled programms should be stored below the filesystem tree
/usr/local/
.There is a tool called
stow
, it has a package in most Linux distributions.Install
stow
into host and VM and create a directory/usr/local/stow/
in both (host an VM).When compiling Emacs or other programs use the
--prefix
option ofconfigure
. E.g.cd emacs-src; ./configure --prefix=/usr/local/stow/emacs-v29.1
. Then compile Emacs and install it in the virtual machine. After that, tar the folder/usr/local/stow/emacs-v29.1
and unpack it onto the host into the same directory. Then change dir into/usr/local/stow
and runsudo stow emacs-v29.1
. Maybe you need to install some libraries onto the host, useldd /usr/local/bin/emacs
to see, what libs you need. Then you are ready to use emacs. It is possible to have multiple versions of emacs installed and only one needs to be “activated” via stow.