]> granicus.if.org Git - python/commitdiff
(python-mode): added comment-end definitions.
authorBarry Warsaw <barry@python.org>
Tue, 17 Dec 1996 21:56:10 +0000 (21:56 +0000)
committerBarry Warsaw <barry@python.org>
Tue, 17 Dec 1996 21:56:10 +0000 (21:56 +0000)
Misc/python-mode.el

index 846c9ab0cc4f2638ff5a65572a36ed8f68e04865..545d893333f30797ca5b957be6ac0f206e034788 100644 (file)
@@ -682,6 +682,7 @@ py-beep-if-tab-change\t\tring the bell if tab-width is changed"
   (make-local-variable 'paragraph-start)
   (make-local-variable 'require-final-newline)
   (make-local-variable 'comment-start)
+  (make-local-variable 'comment-end)
   (make-local-variable 'comment-start-skip)
   (make-local-variable 'comment-column)
   (make-local-variable 'indent-region-function)
@@ -697,6 +698,7 @@ py-beep-if-tab-change\t\tring the bell if tab-width is changed"
        paragraph-start        "^[ \t]*$"
        require-final-newline  t
        comment-start          "# "
+       comment-end            ""
        comment-start-skip     "# *"
        comment-column         40
        indent-region-function 'py-indent-region