(defun dwuser ()
(interactive)
(setq theuser (read-string "DW username: "))
(insert (concat "" theuser "")))
(defun dwcomm ()
(interactive)
(setq theuser (read-string "DW comm name: "))
(insert (concat "" theuser "")))
(defun ao3user ()
(interactive)
(setq theuser (read-string "AO3 username: "))
(insert (concat "" theuser "")))
(defun ao3safe-dwuser ()
(interactive)
(setq theuser (read-string "DW username: "))
(insert (concat "" theuser "")))
(defun ao3safe-dwcomm ()
(interactive)
(setq theuser (read-string "DW comm name: "))
(insert (concat "" theuser "")))
(defun ao3safe-ao3user ()
(interactive)
(setq theuser (read-string "AO3 username: "))
(insert (concat "" theuser "")))