diff options
author | Barry Warsaw <barry@python.org> | 1995-03-08 22:03:16 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1995-03-08 22:03:16 (GMT) |
commit | c723b75fe32b74495d9a421faefad4d54a41a674 (patch) | |
tree | 4084db585708aef76bb3ff71918be2b5b421ca9f | |
parent | 4f005cf5d67193d5b4e24b102c51f65b162eae5c (diff) | |
download | cpython-c723b75fe32b74495d9a421faefad4d54a41a674.zip cpython-c723b75fe32b74495d9a421faefad4d54a41a674.tar.gz cpython-c723b75fe32b74495d9a421faefad4d54a41a674.tar.bz2 |
#(python-font-lock-keywords): paren typo
-rw-r--r-- | Misc/python-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 06656cc..29d61a8 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -190,8 +190,8 @@ the Emacs bell is also rung as a warning.") '("\\bdef\\s +\\(\\sw+\\)(" 1 font-lock-function-name-face) ;; classes '("\\bclass\\s +\\(\\sw+\\)[(:]" 1 font-lock-function-name-face) - ) - "*Additional keywords to highlight `python-mode' buffers.")) + )) + "*Additional keywords to highlight `python-mode' buffers.") ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |