diff options
author | Barry Warsaw <barry@python.org> | 1998-01-21 05:15:57 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1998-01-21 05:15:57 (GMT) |
commit | 9ec9fbc35540f29f1c1dd3874962fc9f98cd7b7a (patch) | |
tree | 1504aa90c0808b71427f9efb82bfd5d709bdd0c9 | |
parent | 82aecb9d66490292f4cdab720a8f29f6dc77942b (diff) | |
download | cpython-9ec9fbc35540f29f1c1dd3874962fc9f98cd7b7a.zip cpython-9ec9fbc35540f29f1c1dd3874962fc9f98cd7b7a.tar.gz cpython-9ec9fbc35540f29f1c1dd3874962fc9f98cd7b7a.tar.bz2 |
(py-goto-initial-line): Shut up the byte compiler.
-rw-r--r-- | Misc/python-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el index ec9e09e..bd69739 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -2537,7 +2537,7 @@ local bindings to py-newline-and-indent.")) ;; Also, if we're sitting inside a triple quoted string, this will ;; drop us at the line that begins the string. (defun py-goto-initial-line () - (let (open-bracket-pos state strchr bod done) + (let (open-bracket-pos) (while (py-continuation-line-p) (beginning-of-line) (if (py-backslash-continuation-line-p) |