Variable: erc-track-shorten-function

erc-track-shorten-function is a customizable variable defined in erc-track.el.gz.

Value

erc-track-shorten-names

Documentation

Function used to reduce the channel names before display.

It takes one argument, CHANNEL-NAMES which is a list of strings. It should return a list of strings of the same number of elements. If nil instead of a function, shortening is disabled.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-track.el.gz
(defcustom erc-track-shorten-function 'erc-track-shorten-names
  "Function used to reduce the channel names before display.
It takes one argument, CHANNEL-NAMES which is a list of strings.
It should return a list of strings of the same number of elements.
If nil instead of a function, shortening is disabled."
  :type '(choice (const :tag "Disabled")
		 function))