From 6245a3ca3fee8d588a3ac2c821b5365aa2cd2510 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 5 Mar 1996 16:20:19 +0000 Subject: [PATCH] #removed font-lock cruft --- Misc/python-mode.el | 44 -------------------------------------------- 1 file changed, 44 deletions(-) diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 5ac798231a2..bd75458b52e 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -169,40 +169,6 @@ equal , `tab-width' is set to , a message saying so is displayed in the echo area, and if `py-beep-if-tab-change' is non-nil the Emacs bell is also rung as a warning.") -;; These were the previous font-lock keywords, but I think I now -;; prefer the ones from XEmacs 19.12's font-lock.el. I've merged the -;; two into the new definition below. -;; -;;(defvar python-font-lock-keywords -;; (list -;; (cons -;; (concat -;; "\\<\\(" -;; (mapconcat -;; 'identity -;; '("access" "and" "break" "continue" -;; "del" "elif" "else" "except" -;; "exec" "finally" "for" "from" -;; "global" "if" "import" "in" -;; "is" "lambda" "not" "or" -;; "pass" "print" "raise" "return" -;; "try" "while" "def" "class" -;; ) -;; "\\|") -;; "\\)\\>") -;; 1) -;; ;; functions -;; '("\\bdef\\s +\\(\\sw+\\)(" 1 font-lock-function-name-face) -;; ;; classes -;; '("\\bclass\\s +\\(\\sw+\\)[(:]" 1 font-lock-function-name-face) -;; ) -;; "*Additional keywords to highlight `python-mode' buffers.") - -;; These are taken from XEmacs 19.12's font-lock.el file, but have the -;; more complete list of keywords from the previous definition in -;; python-mode.el. There are a few other minor stylistic changes as -;; well. -;; (defvar python-font-lock-keywords (let* ((keywords '("access" "and" "break" "continue" "del" "elif" "else:" "except" @@ -229,16 +195,6 @@ the Emacs bell is also rung as a warning.") )) "*Additional expressions to highlight in Python mode.") -;; R Lindsay Todd suggests these changes to the -;; original keywords, which wouldn't be necessary if we go with the -;; XEmacs defaults, but which I agree makes sense without them. -;; -;; functions -;; '("\\bdef\\s +\\(\\sw+\\)\\s *(" 1 font-lock-function-name-face) -;; classes -;; '("\\bclass\\s +\\(\\sw+\\)\\s *[(:]" 1 font-lock-type-face) - - ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT