Function: ps-line-lengths

ps-line-lengths is an autoloaded, interactive and byte-compiled function defined in ps-print.el.gz.

Signature

(ps-line-lengths)

Documentation

Display the correspondence between a line length and a font size.

Done using the current ps-print setup. Try: pr -t file | awk '{printf "%3d %s
", length($0), $0}' | sort -r | head

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
;;;###autoload
(defun ps-line-lengths ()
  "Display the correspondence between a line length and a font size.
Done using the current ps-print setup.
Try: pr -t file | awk \\='{printf \"%3d %s\n\", length($0), $0}\\=' | sort -r | head"
  (interactive)
  (ps-line-lengths-internal))