Function: data-debug-insert-lambda-expression
data-debug-insert-lambda-expression is a byte-compiled function
defined in data-debug.el.gz.
Signature
(data-debug-insert-lambda-expression THING PREFIX PREBUTTONTEXT)
Documentation
Insert one lambda expression 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
;;; Lambda Expression
(defun data-debug-insert-lambda-expression (thing prefix prebuttontext)
"Insert one lambda expression 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."
(let ((txt (prin1-to-string thing)))
(data-debug-insert-simple-thing
txt prefix prebuttontext 'font-lock-keyword-face))
)