diff options
author | Leo Liu <sdl.web@gmail.com> | 2012-04-17 03:28:57 +0800 |
---|---|---|
committer | Leo Liu <sdl.web@gmail.com> | 2012-04-17 03:28:57 +0800 |
commit | f45f90f33151dc74ef541cba4fe87565215382a0 (patch) | |
tree | 69aae8572c97d19dad475053497673e581c00ae7 /lisp | |
parent | 099e72021d771b307875f1c4fc6dd1aedd786089 (diff) | |
download | emacs-f45f90f33151dc74ef541cba4fe87565215382a0.tar.gz emacs-f45f90f33151dc74ef541cba4fe87565215382a0.tar.bz2 emacs-f45f90f33151dc74ef541cba4fe87565215382a0.zip |
* lisp/progmodes/python.el: Trivial cleanup.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/progmodes/python.el | 10 |
2 files changed, 5 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8f790ab0dc5..801a5e74804 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2012-04-16 Leo Liu <sdl.web@gmail.com> + + * progmodes/python.el: Trivial cleanup. + 2012-04-16 Glenn Morris <rgm@gnu.org> * emacs-lisp/eieio-opt.el (describe-class, describe-generic): diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 09b89993626..6f8758ebec1 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -69,11 +69,7 @@ (require 'comint) (require 'ansi-color) -(eval-when-compile - (require 'compile) - (require 'hippie-exp)) - -(autoload 'comint-mode "comint") +(eval-when-compile (require 'compile)) (defgroup python nil "Silly walks in the Python language." @@ -1488,8 +1484,6 @@ Don't save anything for STR matching `inferior-python-filter-regexp'." res) (t (concat res s))))) -(autoload 'comint-check-proc "comint") - (defvar python-version-checked nil) (defun python-check-version (cmd) "Check that CMD runs a suitable version of Python." @@ -1684,8 +1678,6 @@ value to determine defaults." "Caches (directory . file) pair used in the last `python-load-file' command. Used for determining the default in the next one.") -(autoload 'comint-get-source "comint") - (defun python-load-file (file-name) "Load a Python file FILE-NAME into the inferior Python process. If the file has extension `.py' import or reload it as a module. |