Guest User

Untitled

a guest
Mar 13th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. (defun add-attribution ()
  2. (interactive)
  3. (save-excursion
  4. (let ((start-id (point))
  5. (attribution-username (user-login-name (user-uid)))
  6. (attribution-prefix "")
  7. (attribution-suffix ": ")
  8. (attribution (concat attribution-username
  9. attribution-prefix
  10. attribution-suffix)))
  11. (insert attribution)
  12. (setq attribution-end-point (point))
  13. (comment-region start-id (point))))
  14. (goto attribution-end-point))
Add Comment
Please, Sign In to add comment