Variable: cl-print-string-length

cl-print-string-length is a variable defined in cl-print.el.gz.

Value

nil

Documentation

Maximum length of string to print before abbreviating.

A value of nil means no limit.

When Emacs abbreviates a string, it prints the first cl-print-string-length characters of the string, followed by
"...". You can type RET, or click on this ellipsis to expand
the string.

This variable has effect only in the cl-prin* functions, not in primitives such as prin1.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-print.el.gz
  (cl-print--struct-contents object start stream)) ;FIXME: η-redex!

(defvar cl-print-string-length nil
  "Maximum length of string to print before abbreviating.
A value of nil means no limit.

When Emacs abbreviates a string, it prints the first
`cl-print-string-length' characters of the string, followed by
\"...\".  You can type RET, or click on this ellipsis to expand
the string.

This variable has effect only in the `cl-prin*' functions, not in
primitives such as `prin1'.")