Function: custom-error

custom-error is a byte-compiled function defined in cust-print.el.gz.

Signature

(custom-error FMT &rest ARGS)

Documentation

Signal an error, making error message by passing all args to format.

This is the custom-print replacement for the standard error. See custom-format for the details.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/cust-print.el.gz
(defun custom-error (fmt &rest args)
  "Signal an error, making error message by passing all args to `format'.

This is the custom-print replacement for the standard `error'.
See `custom-format' for the details."
  (signal 'error (list (apply #'custom-format fmt args))))