(python-font-lock-keywords): make it a defconst
diff --git a/Misc/python-mode.el b/Misc/python-mode.el
index 1b00296..f770158 100644
--- a/Misc/python-mode.el
+++ b/Misc/python-mode.el
@@ -185,7 +185,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.")
 
-(defvar python-font-lock-keywords
+(defconst python-font-lock-keywords
   (let* ((keywords '("access"     "and"      "break"    "continue"
 		     "del"        "elif"     "else:"    "except"
 		     "except:"    "exec"     "finally:" "for"
@@ -209,7 +209,7 @@
      '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
        1 font-lock-function-name-face)
      ))
-  "*Additional expressions to highlight in Python mode.")
+  "Additional expressions to highlight in Python mode.")
 
 
 ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^