• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/net/

Lines Matching +defs:list +defs:part

9 ;; This file is part of GNU Emacs.
154 Each element of the list is a list with a SERVER-REGEXP string
170 :value-type (choice (list :tag "NickServ"
174 (list :tag "ChanServ"
179 (list :tag "BitlBee"
211 (defcustom rcirc-ignore-list ()
213 Use /ignore to list them, use /ignore NICK to add or remove a nick."
217 (defvar rcirc-ignore-list-automatic ()
218 "List of ignored nicks added to `rcirc-ignore-list' because of renaming.
220 Nicks will be removed from the automatic list on follow-up renamings or
261 If PATTERN is a cons of strings, the car part is used to match a
262 target, and the cdr part is used to match a server.
266 If VAL is a cons of coding systems, the car part is used for decoding,
267 and the cdr part is used for encoding."
341 (dolist (p (rcirc-process-list))
447 (if (rcirc-process-list)
452 (rcirc-process-list))
497 (defun rcirc-process-list ()
498 "Return a list of rcirc processes."
505 (process-list))
559 (list args2)))))
657 "Cycle through nick completions from list of nicks in channel."
662 (list (car rcirc-nick-completions))))
717 (define-key rcirc-mode-map (kbd "C-c C-p") 'rcirc-cmd-part)
795 ;; add to buffer list, and update buffer abbrevs
816 (rcirc-process-list))
822 (list (cons "%n" (rcirc-buffer-nick))
835 (list 'face 'rcirc-prompt
1067 The entry's value part should be a string, which is inserted with
1200 (unless (or (member sender rcirc-ignore-list)
1204 rcirc-ignore-list))
1320 "Return the list of startup channels for SERVER."
1346 "Return list of channels for NICK."
1352 "Add CHANNEL to list associated with NICK."
1369 "Remove the CHANNEL from list associated with NICK."
1383 "Return the list of nicks associated with TARGET sorted by last activity."
1396 (list target))))
1399 "Remove NICK from `rcirc-ignore-list'
1400 if NICK is also on `rcirc-ignore-list-automatic'."
1401 (when (member nick rcirc-ignore-list-automatic)
1402 (setq rcirc-ignore-list-automatic
1403 (delete nick rcirc-ignore-list-automatic)
1404 rcirc-ignore-list
1405 (delete nick rcirc-ignore-list))))
1527 (sort (add-to-list 'rcirc-activity (current-buffer))
1549 (add-to-list 'lopri buf t)
1550 (add-to-list 'hipri buf t))))
1571 ((not (null (rcirc-process-list)))
1595 "Go through visible windows and remove buffers from activity list.
1614 ;; remove any killed buffers from list
1629 (rcirc-process-list)))))
1660 (part (if char (assq char alist))))
1661 (if part
1663 (setcdr part (cons (cons rest data) (cdr part)))
1666 (list char (cons rest data))
1676 (setcdr x (list (cdadr x)))))))
1716 (interactive (list (completing-read "Query nick: "
1733 (defun-rcirc-command part (channel)
1755 "Display list of names in CHANNEL or in current channel if CHANNEL is nil.
1778 (interactive (list
1785 (interactive (list (concat (read-string "Mode nick or channel: ")
1789 (defun-rcirc-command list (channels)
1806 (interactive (list
1839 "Manage the ignore list.
1840 Ignore NICK, unignore NICK if already ignored, or list ignored
1842 ones added to the list automatically are marked with an asterisk."
1844 (setq rcirc-ignore-list (rcirc-add-or-remove rcirc-ignore-list nick))
1849 (if (member nick rcirc-ignore-list-automatic)
1851 rcirc-ignore-list " ")))
1854 "Manage the bright nick list."
1861 "Manage the dim nick list."
1868 "Manage the keyword list.
1869 Mark KEYWORD, unmark KEYWORD if already marked, or list marked
1887 (add-text-properties pos next (list 'face (cons name prop)) object))
1971 (list 'rcirc-text (buffer-substring-no-properties
2007 (add-text-properties start end (list 'mouse-face 'highlight
2039 ;; list of strings, and the TEXT, which is the original server text,
2153 ;; update list of ignored nicks
2155 (when (member old-nick rcirc-ignore-list)
2156 (add-to-list 'rcirc-ignore-list new-nick)
2157 (add-to-list 'rcirc-ignore-list-automatic new-nick))