summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorIvan Andrus <darthandrus@gmail.com>2013-06-29 21:34:10 -0600
committerIvan Andrus <darthandrus@gmail.com>2013-06-29 21:39:46 -0600
commitb26cd2b9d244cf2ddb45c2d1d6087020249e9dd5 (patch)
tree72dbb8dead54ffe6234086de0635fa1e5b16bb38 /Tools
parent431c06f333d8a2c6e4d88b6c51485fd5f76447f8 (diff)
downloadcython-b26cd2b9d244cf2ddb45c2d1d6087020249e9dd5.tar.gz
Fixes from checkdoc
Diffstat (limited to 'Tools')
-rw-r--r--Tools/cython-mode.el11
1 files changed, 10 insertions, 1 deletions
diff --git a/Tools/cython-mode.el b/Tools/cython-mode.el
index 5c95a0ec1..92e640901 100644
--- a/Tools/cython-mode.el
+++ b/Tools/cython-mode.el
@@ -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