diff options
author | Teddy Wing | 2018-04-11 22:19:11 +0200 |
---|---|---|
committer | Teddy Wing | 2018-04-11 22:19:11 +0200 |
commit | 3c7870d68dd667399c08f6ee4b1192be83b5bf91 (patch) | |
tree | 489984099324495619150bff4d4a679800728d6d | |
parent | e07e2367c0cb55e4d4c1b26357a6c1e48d731ae4 (diff) | |
download | w3m-session-backup-3c7870d68dd667399c08f6ee4b1192be83b5bf91.tar.bz2 |
Add a `provide` call at the end of the package
Follow the Coding Conventions and call `provide` at the end of the
package file. This allows our code to be `require`d if so desired.
References:
- https://www.gnu.org/software/emacs/manual/html_node/elisp/Coding-Conventions.html#Coding-Conventions
- https://www.gnu.org/software/emacs/manual/html_node/elisp/Named-Features.html#Named-Features
-rw-r--r-- | w3m-session-backup.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/w3m-session-backup.el b/w3m-session-backup.el index 7747a43..da818e7 100644 --- a/w3m-session-backup.el +++ b/w3m-session-backup.el @@ -114,4 +114,6 @@ (interactive) (w3m-session-backup--save-backup)) +(provide 'w3m-session-backup) + ;;; w3m-session-backup.el ends here |