Function: preview-reraise-error

preview-reraise-error is a byte-compiled function defined in preview.el.

Signature

(preview-reraise-error &optional PROCESS)

Documentation

Raise an error that has been logged.

Makes sure that PROCESS is removed from the "Compilation" tag in the mode line.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defun preview-reraise-error (&optional process)
  "Raise an error that has been logged.
Makes sure that PROCESS is removed from the \"Compilation\"
tag in the mode line."
  (when preview-error-condition
    (unwind-protect
        (signal (car preview-error-condition) (cdr preview-error-condition))
      (setq preview-error-condition nil
            compilation-in-progress (delq process compilation-in-progress)))))