Function: data-debug-insert-nil

data-debug-insert-nil is a byte-compiled function defined in data-debug.el.gz.

Signature

(data-debug-insert-nil THING PREFIX PREBUTTONTEXT)

Documentation

Insert one simple THING with a face.

PREFIX is the text that precedes the button. PREBUTTONTEXT is some text between prefix and the thing. FACE is the face to use.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
;;; nil thing
(defun data-debug-insert-nil (_thing prefix prebuttontext)
  "Insert one simple THING with a face.
PREFIX is the text that precedes the button.
PREBUTTONTEXT is some text between prefix and the thing.
FACE is the face to use."
  (insert prefix prebuttontext)
  (insert ": ")
  (let ((start (point))
	(end nil))
    (insert "nil")
    (setq end (point))
    (insert "\n" )
    (put-text-property start end 'face 'font-lock-variable-name-face)
    ))