Function: org-mouse-clip-text

org-mouse-clip-text is a byte-compiled function defined in org-mouse.el.gz.

Signature

(org-mouse-clip-text TEXT MAXLENGTH)

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-mouse.el.gz
(defun org-mouse-clip-text (text maxlength)
  (if (> (length text) maxlength)
      (concat (substring text 0 (- maxlength 3)) "...")
    text))