Function: hycontrol-user-error

hycontrol-user-error is a byte-compiled function defined in hycontrol.el.

Signature

(hycontrol-user-error MAX-MSGS &rest ERR)

Documentation

Log MAX-MSGS, adding ERR to *Messages* buffer; display ERR for 2 seconds.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-user-error (max-msgs &rest err)
  "Log MAX-MSGS, adding ERR to *Messages* buffer; display ERR for 2 seconds."
  (let ((message-log-max max-msgs))
    (beep)
    (apply #'message err)
    (sit-for 2)))