Function: ConTeXt-etexshow
ConTeXt-etexshow is an interactive and byte-compiled function defined
in context.el.
Signature
(ConTeXt-etexshow)
Documentation
Call etexshow, if available, to show the definition of a ConTeXt macro.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/context.el
;; etexshow support
(defun ConTeXt-etexshow ()
"Call etexshow, if available, to show the definition of a ConTeXt macro."
(interactive)
(if (fboundp 'etexshow-cmd)
(progn
(require 'etexshow)
(etexshow-cmd))
(error "etexshow is not installed. Get it from http://levana.de/emacs/")))