Function: ConTeXt-environment-stop-name

ConTeXt-environment-stop-name is a byte-compiled function defined in context.el.

Signature

(ConTeXt-environment-stop-name)

Documentation

Return the \stop translated to the language in current interface.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/context.el
(defun ConTeXt-environment-stop-name ()
  "Return the \\stop translated to the language in current interface."
  ;; it is "termina", others are "stop"
  (cond ((equal ConTeXt-current-interface "it")
         "termina")
        ((member ConTeXt-current-interface ConTeXt-known-interfaces)
         "stop")
        (t
         ;; this should not happen
         (error "Unknown interface: %s" ConTeXt-current-interface))))