diff options
-rw-r--r-- | Misc/python-mode.el | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el index dc6e738..ebcb139 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -257,12 +257,8 @@ features supporting those needed by CC Mode.") )) (kwregex (mapconcat 'identity keywords "\\|"))) (list - ;; keywords not at beginning of line - (cons (concat "\\s-\\(" kwregex "\\)[ \n\t(]") 1) - ;; keywords at beginning of line. i don't think regexps are - ;; powerful enough to handle these two cases in one regexp. - ;; prove me wrong! - (cons (concat "^\\(" kwregex "\\)[ \n\t(]") 1) + ;; keywords + (cons (concat "\\b\\(" kwregex "\\)\\b[ \n\t(]") 1) ;; classes '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)" 1 font-lock-type-face) |