Function: bibtex-parse-string-postfix

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

Signature

(bibtex-parse-string-postfix)

Documentation

Parse the postfix part of a BibTeX string entry, including the text.

If the string postfix is found, return a triple consisting of the position of the actual starting and ending position of the text and the very last character of the string entry. Move point past BibTeX string entry.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bibtex.el.gz
(defun bibtex-parse-string-postfix ()
  "Parse the postfix part of a BibTeX string entry, including the text.
If the string postfix is found, return a triple consisting of the position of
the actual starting and ending position of the text and the very last
character of the string entry.  Move point past BibTeX string entry."
  (let* ((case-fold-search t)
         (bounds (bibtex-parse-field-text)))
    (when bounds
      (goto-char (nth 1 bounds))
      (when (looking-at "[ \t\n]*[})]")
        (goto-char (match-end 0))
        (list (car bounds)
              (nth 1 bounds)
              (match-end 0))))))