Function: idlwave-completion-fontify-classes

idlwave-completion-fontify-classes is a byte-compiled function defined in idlwave.el.gz.

Signature

(idlwave-completion-fontify-classes)

Documentation

Goto the *Completions* buffer and fontify the class info.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-completion-fontify-classes ()
  "Goto the *Completions* buffer and fontify the class info."
  (with-current-buffer "*Completions*"
    (save-excursion
      (goto-char (point-min))
      (let ((buffer-read-only nil))
        (while (re-search-forward "\\.*<[^>]+>" nil t)
          (put-text-property (match-beginning 0) (match-end 0)
                             'face 'font-lock-string-face))))))