aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-07-26 22:59:49 -0400
committerGlenn Morris2014-07-26 22:59:49 -0400
commit9578a71f2e3fea51d56eaed577e5172a8394a0b4 (patch)
treee16043e582c81a1512850b8403a810e72534471d
parenta6dc66a5441bc6832c12d362edd2d886edc1612a (diff)
downloademacs-9578a71f2e3fea51d56eaed577e5172a8394a0b4.tar.gz
emacs-9578a71f2e3fea51d56eaed577e5172a8394a0b4.zip
* python.el (python-shell-enable-font-lock): Fix typo in earlier change.
-rw-r--r--lisp/progmodes/python.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 99c3b0ee1f6..acb5b40165f 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1792,6 +1792,9 @@ It should not contain a caret (^) at the beginning."
1792It should not contain a caret (^) at the beginning." 1792It should not contain a caret (^) at the beginning."
1793 :type 'string) 1793 :type 'string)
1794 1794
1795(define-obsolete-variable-alias
1796 'python-shell-enable-font-lock 'python-shell-font-lock-enable "24.5")
1797
1795(defcustom python-shell-font-lock-enable t 1798(defcustom python-shell-font-lock-enable t
1796 "Should syntax highlighting be enabled in the Python shell buffer? 1799 "Should syntax highlighting be enabled in the Python shell buffer?
1797Restart the Python shell after changing this variable for it to take effect." 1800Restart the Python shell after changing this variable for it to take effect."
@@ -1799,9 +1802,6 @@ Restart the Python shell after changing this variable for it to take effect."
1799 :group 'python 1802 :group 'python
1800 :safe 'booleanp) 1803 :safe 'booleanp)
1801 1804
1802(define-obsolete-variable-alias
1803 'python-shell-enable-font-lock python-shell-font-lock-enable "24.4")
1804
1805(defcustom python-shell-process-environment nil 1805(defcustom python-shell-process-environment nil
1806 "List of environment variables for Python shell. 1806 "List of environment variables for Python shell.
1807This variable follows the same rules as `process-environment' 1807This variable follows the same rules as `process-environment'