Emacs: ELPA compatibility

Fixes #33.

Signed-off-by: David Symonds <dsymonds@golang.org>
diff --git a/misc/emacs/golint.el b/misc/emacs/golint.el
index 4d6c2cd..067e9da 100644
--- a/misc/emacs/golint.el
+++ b/misc/emacs/golint.el
@@ -1,10 +1,11 @@
 ;;; golint.el --- lint for the Go source code
-;;;    https://github.com/golang/lint
 
 ;; Copyright 2013 The Go Authors. All rights reserved.
 ;; Use of this source code is governed by a BSD-style
 ;; license that can be found in the LICENSE file.
 
+;; URL: https://github.com/golang/lint
+
 ;;; Commentary:
 
 ;; To install golint, add the following lines to your .emacs file:
@@ -20,6 +21,7 @@
 ;;   For more usage, see Compilation-Mode:
 ;;     http://www.gnu.org/software/emacs/manual/html_node/emacs/Compilation-Mode.html
 
+;;; Code:
 (require 'compile)
 
 (defun go-lint-buffer-name (mode) 
@@ -44,3 +46,5 @@
                      'golint-mode))
 
 (provide 'golint)
+
+;;; golint.el ends here