diff options
author | Barry Warsaw <barry@python.org> | 1996-09-04 15:21:55 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1996-09-04 15:21:55 (GMT) |
commit | 2e049b2b05e0f47592378f6e281eb2dc75e0e4d9 (patch) | |
tree | f031ca7f0f31563fa2837e037b7f5cee5241325d /Misc/python-mode.el | |
parent | b3e81d58aa04989dbdb5da91a5cd1e65e646872d (diff) | |
download | cpython-2e049b2b05e0f47592378f6e281eb2dc75e0e4d9.zip cpython-2e049b2b05e0f47592378f6e281eb2dc75e0e4d9.tar.gz cpython-2e049b2b05e0f47592378f6e281eb2dc75e0e4d9.tar.bz2 |
(python-font-lock-keywords): with Python 1.4 `access' is no a keyword
Diffstat (limited to 'Misc/python-mode.el')
-rw-r--r-- | Misc/python-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el index c24b15a..b9971f9 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -208,7 +208,7 @@ displayed in the echo area, and if `py-beep-if-tab-change' is non-nil the Emacs bell is also rung as a warning.") (defconst python-font-lock-keywords - (let* ((keywords '("access" "and" "break" "class" + (let* ((keywords '("and" "break" "class" "continue" "def" "del" "elif" "else:" "except" "except:" "exec" "finally:" "for" "from" "global" |