Function: bibtex-ispell-abstract

bibtex-ispell-abstract is an interactive and byte-compiled function defined in bibtex.el.gz.

Signature

(bibtex-ispell-abstract)

Documentation

Check abstract of BibTeX entry for spelling errors.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defun bibtex-ispell-abstract ()
  "Check abstract of BibTeX entry for spelling errors."
  (interactive)
  (let ((bounds (save-excursion
                  (bibtex-beginning-of-entry)
                  (bibtex-search-forward-field "abstract" t))))
    (if bounds
        (ispell-region (bibtex-start-of-text-in-field bounds)
                       (bibtex-end-of-text-in-field bounds))
      (user-error "No abstract in entry"))))