Function: makeinfo-next-error

makeinfo-next-error is a byte-compiled function defined in makeinfo.el.gz.

Signature

(makeinfo-next-error ARG RESET)

Documentation

This is used to disable next-error if the user has used makeinfo-region.

Since the compilation process is used on a temporary file in that case, calling next-error would give nonsensical results.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/makeinfo.el.gz
(defun makeinfo-next-error (_arg _reset)
  "This is used to disable `next-error' if the user has used `makeinfo-region'.
Since the compilation process is used on a temporary file in that
case, calling `next-error' would give nonsensical results."
  (error "Use `makeinfo-buffer' to gain use of the `next-error' command"))