Function: isearch--state-error
isearch--state-error is a byte-compiled function defined in
isearch.el.gz.
Signature
(isearch--state-error isearch--state-error X)
Documentation
Access slot "error" of isearch--state struct X.
Source Code
;; Defined in /usr/src/emacs/lisp/isearch.el.gz
;; The search status structure and stack.
(cl-defstruct (isearch--state
(:constructor nil)
(:copier nil)
(:constructor isearch--get-state
(&aux
(string isearch-string)
(message isearch-message)
(point (point))
(success isearch-success)
(forward isearch-forward)
(other-end isearch-other-end)
(word isearch-regexp-function)
(error isearch-error)
(wrapped isearch-wrapped)
(barrier isearch-barrier)
(case-fold-search isearch-case-fold-search)
(pop-fun (if isearch-push-state-function
(funcall isearch-push-state-function)))
(match-data isearch-match-data))))
(string nil :read-only t)
(message nil :read-only t)
(point nil :read-only t)
(success nil :read-only t)
(forward nil :read-only t)
(other-end nil :read-only t)
(word nil :read-only t)
(error nil :read-only t)
(wrapped nil :read-only t)
(barrier nil :read-only t)
(case-fold-search nil :read-only t)
(pop-fun nil :read-only t)
(match-data nil :read-only t))