diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-06-14 00:11:40 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-06-14 00:11:40 +0000 |
commit | 36754e8e790f70fd078b88a2e3d3a8ab0e2eceea (patch) | |
tree | 3718717eaca09ecdc238a7dc34e2d4806a3056a8 /lisp | |
parent | 1b96c77f465f44c1e8c83a46f4c9bd70098766d4 (diff) | |
download | emacs-36754e8e790f70fd078b88a2e3d3a8ab0e2eceea.tar.gz emacs-36754e8e790f70fd078b88a2e3d3a8ab0e2eceea.tar.bz2 emacs-36754e8e790f70fd078b88a2e3d3a8ab0e2eceea.zip |
(python-complete-symbol): Remove redundant check.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/progmodes/python.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index d2e913f2315..5c117dffd5d 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -1925,7 +1925,7 @@ Repeating the command scrolls the completion window." (interactive) (let ((window (get-buffer-window "*Completions*"))) (if (and (eq last-command this-command) - window (window-live-p window) (window-buffer window) + (window-live-p window) (window-buffer window) (buffer-name (window-buffer window))) (with-current-buffer (window-buffer window) (if (pos-visible-in-window-p (point-max) window) |