Function: srecode-semantic-handle-:user
srecode-semantic-handle-:user is a byte-compiled function defined in
args.el.gz.
Signature
(srecode-semantic-handle-:user DICT)
Documentation
Add macros into the dictionary DICT based on the current :user.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/srecode/args.el.gz
;;; :user ARGUMENT HANDLING
;;
;; When a :user argument is required, fill the dictionary with
;; information about the current Emacs user.
(defun srecode-semantic-handle-:user (dict)
"Add macros into the dictionary DICT based on the current :user."
(srecode-dictionary-set-value dict "AUTHOR" (user-full-name))
(srecode-dictionary-set-value dict "LOGIN" (user-login-name))
(srecode-dictionary-set-value dict "EMAIL" user-mail-address)
(srecode-dictionary-set-value dict "EMACSINITFILE" user-init-file)
(srecode-dictionary-set-value dict "UID" (user-uid))
)