From: Noam Postavsky Date: Sat, 20 May 2017 22:09:24 +0000 (-0400) Subject: ; Set transient-mark-mode to let mark-defun tests pass X-Git-Tag: emacs-26.0.90~521^2~340 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ee54d2f4e439b4a211c8fb7541ce22bac65bde8f;p=emacs.git ; Set transient-mark-mode to let mark-defun tests pass The tests fail when transient-mark-mode is not set since 2017-05-12 "Fix Bug#21072 and rework `mark-defun'". * test/lisp/progmodes/python-tests.el (python-mark-defun-1) (python-mark-defun-2): Bind 'transient-mark-mode' to t. --- diff --git a/test/lisp/progmodes/python-tests.el b/test/lisp/progmodes/python-tests.el index 3b75e81afee..9aaae396a69 100644 --- a/test/lisp/progmodes/python-tests.el +++ b/test/lisp/progmodes/python-tests.el @@ -1317,7 +1317,8 @@ class B: class C: '''docstring''' " - (let ((expected-mark-beginning-position + (let ((transient-mark-mode t) + (expected-mark-beginning-position (progn (python-tests-look-at "class A:") (1- (point)))) @@ -1373,7 +1374,8 @@ class B: class C: '''docstring''' " - (let ((expected-mark-beginning-position + (let ((transient-mark-mode t) + (expected-mark-beginning-position (progn (python-tests-look-at "def __init__(self):") (1- (line-beginning-position))))