chiark / gitweb /
el/dot-emacs.el: Fix stupid botch in earlier Python mode hacking.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 10 Oct 2009 12:22:06 +0000 (13:22 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 10 Oct 2009 12:22:06 +0000 (13:22 +0100)
el/dot-emacs.el

index 41e15d3e05e09b7f7e7c43a06c7e7dd14c2a9366..15b156bd22d670bdcce58c3c3f3de6342d9a4610 100644 (file)
@@ -1351,7 +1351,7 @@ (defun mdw-fontify-pythonic (keywords)
        (list
 
         ;; Set up the keywords defined above.
-        (list (concat "\\<\\(" python-keywords "\\)\\>")
+        (list (concat "\\<\\(" keywords "\\)\\>")
               '(0 font-lock-keyword-face))
 
         ;; At least numbers are simpler than C.