Variable: erc-user-full-name
erc-user-full-name is a customizable variable defined in erc.el.gz.
Value
nil
Documentation
User full name.
This can be either a string or a function to call.
See function erc-compute-full-name for more details on connection
parameters and authentication.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defcustom erc-user-full-name nil
"User full name.
This can be either a string or a function to call.
See function `erc-compute-full-name' for more details on connection
parameters and authentication."
:group 'erc
:type '(choice (const :tag "No name" nil)
(string :tag "Name")
(function :tag "Get from function"))
:set (lambda (sym val)
(set sym (if (functionp val) (funcall val) val))))