Function: bib-cite-fontify-red

bib-cite-fontify-red is a byte-compiled function defined in bib-cite.el.

Signature

(bib-cite-fontify-red &optional LIMIT)

Documentation

Fontify *Help* buffer in red-bold up to optional LIMIT.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/bib-cite.el
(defun bib-cite-fontify-red (&optional limit)
  "Fontify *Help* buffer in red-bold up to optional LIMIT."
  (if (and window-system                ;Not exactly correct for XEmacs
           (not (facep 'red-bold)))
      (progn
        (copy-face 'bold 'red-bold)
        (set-face-foreground 'red-bold "red")))
  (with-current-buffer "*Help*"
    (let ((before-change-functions) (after-change-functions))
      (put-text-property (point-min)(or limit (point-max))
                         'face 'red-bold))))