Function: serial-supported-or-barf

serial-supported-or-barf is a byte-compiled function defined in term.el.gz.

Signature

(serial-supported-or-barf)

Documentation

Signal an error if serial processes are not supported.

Source Code

;; Defined in /usr/src/emacs/lisp/term.el.gz
(defun serial-supported-or-barf ()
  "Signal an error if serial processes are not supported."
  (unless (fboundp 'make-serial-process)
    (error "Serial processes are not supported on this system")))