Function: opascal-debug-token-string
opascal-debug-token-string is a byte-compiled function defined in
opascal.el.gz.
Signature
(opascal-debug-token-string TOKEN)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/opascal.el.gz
(defun opascal-debug-token-string (token)
(let* ((image (opascal-token-string token))
(has-newline (string-match "^\\([^\n]*\\)\n\\(.+\\)?$" image)))
(when has-newline
(setq image (concat (match-string 1 image)
(if (match-beginning 2) "..."))))
image))