• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/erc/

Lines Matching defs:nickname

181   "If the nickname you chose isn't available, and this option is non-nil,
182 ERC should automatically attempt to connect with another nickname.
184 You can manually set another nickname with the /NICK command."
242 "If non-nil, display one's own nickname when sending a message.
244 If non-nil, \"<nickname>\" will be shown.
371 nickname host login full-name info
401 Adds USER with nickname NICK to the `erc-server-users' hash table."
408 Removes the user with nickname NICK from the `erc-server-users'
416 (defun erc-change-user-nickname (user new-nick)
419 Changes the nickname of USER to NEW-NICK in the
422 (let ((nick (erc-server-user-nickname user)))
423 (setf (erc-server-user-nickname user) new-nick)
438 Removes the user with nickname NICK from the `erc-channel-users'
457 Removes the user with nickname NICK from the `erc-server-users'
515 (defun erc-get-server-nickname-list ()
522 (cons (erc-server-user-nickname user)
527 (defun erc-get-channel-nickname-list ()
533 (cons (erc-server-user-nickname (car cdata))
538 (defun erc-get-server-nickname-alist ()
545 (cons (cons (erc-server-user-nickname user) nil)
550 (defun erc-get-channel-nickname-alist ()
556 (cons (cons (erc-server-user-nickname (car cdata)) nil)
587 (let ((nickx (downcase (erc-server-user-nickname (car x))))
588 (nicky (downcase (erc-server-user-nickname (car y)))))
759 (defcustom erc-away-nickname nil
760 "*The nickname to take when you are marked as being away."
1183 "ERC face for your current nickname in messages sent by you.
1188 "ERC nickname default face."
1192 "ERC nickname face for private messages."
2345 "Regexp which matches all legal characters in a IRC nickname.")
2348 "Check if NICK is a valid IRC nickname."
2636 (setq ops (cons (erc-server-user-nickname
3028 "Change current nickname to NICK."
3814 (defun erc-nickname-in-use (nick reason)
3917 "*Function to format a nickname for message display."
3922 "Return the nickname of USER.
3924 (when user (erc-server-user-nickname user)))
3927 "Format the nickname of USER showing if USER is an operator or has voice.
3934 (concat voice op (erc-server-user-nickname user)))))
4361 (when erc-away-nickname
4363 erc-away-nickname away-p))
4365 erc-away-nickname
4451 "Updates the stored user information for the user with nickname
4471 (not (equal (erc-server-user-nickname user)
4474 (erc-change-user-nickname user new-nick))
4502 "Updates the stored user information for the user with nickname
4503 NICK. `erc-update-user' is called to handle changes to nickname,
4550 :nickname nick
4580 nickname NICK in channel CHANNEL.
4778 a list containing the original nickname, login name and hostname for the user,
4785 nickname change 'nick (NEW-NICK)"
4788 ;; nickname change
5058 "Set the current nickname to NICK."
5065 "Return the current nickname."
5072 "Return non-nil if NICK is the current nickname."
5113 (defun erc-add-query (nickname)
5119 (qt (cons 'QUERY (downcase nickname))))
5171 (let ((nick (erc-server-user-nickname user))
5661 "Give information about the nickname at `point'.
5676 (setq nick (erc-server-user-nickname user)
5718 %t: The name of the target (channel, nickname, or servername:port)
5796 "Return the name of the target (channel or nickname or servername:port)."
6053 (nick-in-use . "%n is in use. Choose new nickname: ")
6081 (NICK-you . "Your new nickname is %N")
6125 (s406 . "%n: There was no such nickname")
6128 (s431 . "No nickname given")
6129 (s432 . "%n is an erroneous nickname")
6273 "Return nickname in the parsed vector VECT."