1234567891011121314151617181920212223242526272829303132333435 |
- (define-skeleton guix-copyright
- "Insert a copyright by $USER notice at cursor."
- "FULL_NAME <MAIL_ADDRESS>: "
- comment-start
- ";; Copyright © " `(format-time-string "%Y") " "
- (or (format "%s <%s>" user-full-name user-mail-address) str)
- comment-end)
|