Function: data-debug-insert-number

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

Signature

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

Documentation

Insert one symbol THING.

A Symbol is a simple thing, but this provides some face and prefix rules. PREFIX is the text that precedes the button. PREBUTTONTEXT is some text between prefix and the thing.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
;;; Number
(defun data-debug-insert-number (thing prefix prebuttontext)
  "Insert one symbol THING.
A Symbol is a simple thing, but this provides some face and prefix rules.
PREFIX is the text that precedes the button.
PREBUTTONTEXT is some text between prefix and the thing."
  (insert prefix prebuttontext
	  (propertize (format "%S" thing)
                         'face 'font-lock-string-face)
	  "\n"))