[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/progmodes/python.el [lexbind]
From: |
Miles Bader |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/progmodes/python.el [lexbind] |
Date: |
Tue, 06 Jul 2004 07:06:09 -0400 |
Index: emacs/lisp/progmodes/python.el
diff -c emacs/lisp/progmodes/python.el:1.1.2.5
emacs/lisp/progmodes/python.el:1.1.2.6
*** emacs/lisp/progmodes/python.el:1.1.2.5 Tue May 11 02:36:02 2004
--- emacs/lisp/progmodes/python.el Tue Jul 6 10:10:50 2004
***************
*** 323,329 ****
line-end))
(save-excursion (python-end-of-statement))
t)
! (not (python-in-string/comment)))))
(defun python-close-block-statement-p (&optional bos)
"Return non-nil if current line is a statement closing a block.
--- 323,330 ----
line-end))
(save-excursion (python-end-of-statement))
t)
! (not (progn (goto-char (match-beginning 0))
! (python-in-string/comment))))))
(defun python-close-block-statement-p (&optional bos)
"Return non-nil if current line is a statement closing a block.