From: Mark Wooding Date: Sat, 10 Oct 2009 12:22:06 +0000 (+0100) Subject: el/dot-emacs.el: Fix stupid botch in earlier Python mode hacking. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/29826b11b10dabd3e6ccdbeb98d8e3dae5f37af4?ds=inline;hp=--cc el/dot-emacs.el: Fix stupid botch in earlier Python mode hacking. --- 29826b11b10dabd3e6ccdbeb98d8e3dae5f37af4 diff --git a/el/dot-emacs.el b/el/dot-emacs.el index 41e15d3..15b156b 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -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.