• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/erc/

Lines Matching defs:names

94   "A list targets (channel names or query targets) which should not be tracked."
118 "All channel names longer than this value will be shortened."
123 "*If non-nil, channel names will be shortened more aggressively.
124 Usually, names are not shortened if this will save only one character.
129 If this variable is set to `max', then channel names will be shortened
130 to the max. Usually, shortened channel names will remain unique for a
132 channel names will be unique for the set of active channels only.
139 This setting is used by `erc-track-shorten-names'."
145 (defcustom erc-track-shorten-function 'erc-track-shorten-names
146 "*This function will be used to reduce the channel names before display.
166 "A list of faces used to highlight active buffer names in the modeline.
306 ;;; Shortening of names
308 (defun erc-track-shorten-names (channel-names)
309 "Call `erc-unique-channel-names' with the correct parameters.
311 The list of all channels is returned by `erc-all-buffer-names'.
312 CHANNEL-NAMES is the list of active channel names.
313 Only channel names longer than `erc-track-shorten-cutoff' are
316 (erc-unique-channel-names
317 (erc-all-buffer-names)
318 channel-names
325 (defun erc-all-buffer-names ()
326 "Return all channel or query buffer names.
337 (defun erc-unique-channel-names (all active &optional predicate start)
338 "Return a list of unique channel names.
339 ALL is the list of all channel and query buffer names.
340 ACTIVE is the list of active buffer names.
349 ;; Given the names of the active channels, we now need to find the
426 (erc-unique-channel-names
431 (erc-unique-channel-names
436 (erc-unique-channel-names
441 (erc-unique-channel-names
446 (erc-unique-channel-names
452 (erc-unique-channel-names
467 (erc-unique-channel-names
473 (erc-unique-channel-names
478 (erc-unique-channel-names
486 (erc-unique-channel-names
494 (equal (erc-unique-channel-names '("deego" "#hurd" "#hurd-bunny" "#emacs")
687 "The face to use when mouse is over channel names in the mode line.")
747 (long-names (mapcar #'(lambda (buf)
751 (short-names (if (functionp erc-track-shorten-function)
753 long-names)
754 long-names))
757 (when (car short-names)
759 (car short-names)
764 (setq short-names (cdr short-names)