Fixes from checkdoc
authorIvan Andrus <darthandrus@gmail.com>
Sun, 30 Jun 2013 03:34:10 +0000 (21:34 -0600)
committerIvan Andrus <darthandrus@gmail.com>
Sun, 30 Jun 2013 03:39:46 +0000 (21:39 -0600)
Tools/cython-mode.el

index 5c95a0e..92e6409 100644 (file)
@@ -1,4 +1,11 @@
-;; Cython mode
+;;; cython-mode.el -- Major mode for editing Cython files
+
+;;; Commentary:
+
+;; This should work with python-mode.el as well as either the new
+;; python.el or the old.
+
+;;; Code:
 
 ;; Load python-mode if available, otherwise use builtin emacs python package
 (when (not(require 'python-mode nil t))
@@ -66,3 +73,5 @@
 )
 
 (provide 'cython-mode)
+
+;;; cython-mode.el ends here