summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1996-03-05 16:20:19 (GMT)
committerBarry Warsaw <barry@python.org>1996-03-05 16:20:19 (GMT)
commit6245a3ca3fee8d588a3ac2c821b5365aa2cd2510 (patch)
tree8a03757e39ce3ef7cf8fb9b61cf07bee424e5de1 /Misc
parent33ab6e4915a41299d76f5f78dee9dbb20bbc6c5a (diff)
downloadcpython-6245a3ca3fee8d588a3ac2c821b5365aa2cd2510.zip
cpython-6245a3ca3fee8d588a3ac2c821b5365aa2cd2510.tar.gz
cpython-6245a3ca3fee8d588a3ac2c821b5365aa2cd2510.tar.bz2
#removed font-lock cruft
Diffstat (limited to 'Misc')
-rw-r--r--Misc/python-mode.el44
1 files changed, 0 insertions, 44 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el
index 5ac7982..bd75458 100644
--- a/Misc/python-mode.el
+++ b/Misc/python-mode.el
@@ -169,40 +169,6 @@ equal <number>, `tab-width' is set to <number>, 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 <toddr@rpi.edu> 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