On 12 Apr 2000, Dave Love wrote:
> * textmodes/texinfo.el: Require tex-mode when compiling.
Will this work on systems that don't support async subprocesses?
(IIRC, tex-mode relies on async subprocesses; what I'm actually asking
is whether this require will prevent byte-compilation on MSDOG, even
if tex-mode is not actually used.)
> + (define-key map [menu-bar texinfo]
> + (cons
> + "Texinfo"
> + (let ((menu (make-sparse-keymap "Texinfo")))
> + (define-key-after menu [example]
> + '("Example" . texinfo-insert-@example))
> + (define-key-after menu [node] '("Node" . texinfo-insert-@node))
> + (define-key-after menu [noindent]
> + '("Noindent" . texinfo-insert-@noindent))
I would rather like to see any new menu items added to Emacs to be in
the new "(menu-item ..." format, and with suitable :help widget.
However, I don't know whether this is Gerd's policy (thus the cc:).