From e0c182fb5f0c54f89b2648de23daf5a2f98fa12b Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 27 Dec 2000 17:41:47 +0000 Subject: [PATCH] (python-font-lock-keywords): Add highlighting of `as' as a keyword, but only in "import foo as bar" statements (including optional preceding `from' clause). --- Misc/python-mode.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 332dff7fcf..3952b4d677 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -332,6 +332,8 @@ support for features needed by `python-mode'.") ;; block introducing keywords with immediately following colons. ;; Yes "except" is in both lists. (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1) + ;; `as' but only in "import foo as bar" + '("[ \t]*\\(\\bfrom\\b.*\\)?\\bimport\\b.*\\b\\(as\\)\\b" . 2) ;; classes '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)" 1 font-lock-type-face) -- 2.50.1