Function: checkdoc-error-unfixable

checkdoc-error-unfixable is a byte-compiled function defined in checkdoc.el.gz.

Signature

(checkdoc-error-unfixable CL-X)

Documentation

Access slot "unfixable" of checkdoc-error struct CL-X.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/checkdoc.el.gz
;;; Error Management
;;
;; Errors returned from checkdoc functions can have various
;; features and behaviors, so we need some ways of specifying
;; them, and making them easier to use in the wacked-out interfaces
;; people are requesting

(cl-defstruct (checkdoc-error
               (:constructor nil)
               (:constructor checkdoc--create-error (text start end &optional unfixable)))
  (text nil :read-only t)
  (start nil :read-only t)
  (end nil :read-only t)
  (unfixable nil :read-only t))