chiark
/
gitweb
/
~mdw
/
profile
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
el/dot-emacs.el: Fix stupid botch in earlier Python mode hacking.
[profile]
/
el
/
dot-emacs.el
diff --git
a/el/dot-emacs.el
b/el/dot-emacs.el
index 41e15d3e05e09b7f7e7c43a06c7e7dd14c2a9366..15b156bd22d670bdcce58c3c3f3de6342d9a4610 100644
(file)
--- 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.