summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1997-01-30 20:16:18 (GMT)
committerBarry Warsaw <barry@python.org>1997-01-30 20:16:18 (GMT)
commit941f70c331d0d575c9424a8b755b504ee97dd68e (patch)
tree75a468eabb93586d79ed578d0b032618dbbb14db /Misc
parent2ccda502f6ef0e1bb897e9371214562e43b8fc36 (diff)
downloadcpython-941f70c331d0d575c9424a8b755b504ee97dd68e.zip
cpython-941f70c331d0d575c9424a8b755b504ee97dd68e.tar.gz
cpython-941f70c331d0d575c9424a8b755b504ee97dd68e.tar.bz2
(py-mode-map): Comment Out Region / Uncomment Region should use
py-comment-region instead of comment-region.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/python-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el
index abc42b8..fe6d323 100644
--- a/Misc/python-mode.el
+++ b/Misc/python-mode.el
@@ -447,8 +447,8 @@ this package.")
(easy-menu-define
py-menu py-mode-map "Python Mode menu"
'("Python"
- ["Comment Out Region" comment-region (mark)]
- ["Uncomment Region" (comment-region (point) (mark) '(4)) (mark)]
+ ["Comment Out Region" py-comment-region (mark)]
+ ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
"-"
["Mark current block" py-mark-block t]
["Mark current def" mark-python-def-or-class t]