Function: bibtex-text-in-string

bibtex-text-in-string is a byte-compiled function defined in bibtex.el.gz.

Signature

(bibtex-text-in-string BOUNDS &optional CONTENT)

Documentation

Get text in BibTeX string field defined via BOUNDS.

If optional arg CONTENT is non-nil extract content by removing field delimiters and concatenating the resulting string. If bibtex-expand-strings is non-nil, also expand BibTeX strings.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defun bibtex-text-in-string (bounds &optional content)
  "Get text in BibTeX string field defined via BOUNDS.
If optional arg CONTENT is non-nil extract content
by removing field delimiters and concatenating the resulting string.
If `bibtex-expand-strings' is non-nil, also expand BibTeX strings."
  (bibtex-text-in-field-bounds bounds content))