aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <Pierre.Courtieu@cnam.fr>2018-06-21 15:07:10 +0200
committerGravatar Pierre Courtieu <Pierre.Courtieu@cnam.fr>2018-06-21 15:07:10 +0200
commitbe6f66e3d4424b0dfbbbe3097a617aebb8aefca2 (patch)
treee061410b9bf8ceae4cfb7fd0a23e10f9ed3fd6d3
parente7b406fb8996b31a3283ed80f3e964ebe69b05ab (diff)
parente8daea1c5f0ceb161ea1050698fcc8bb7e7cce17 (diff)
Merge PR #7842: Fix #7836: tools/inferior-coq.el uses next-line instead of forward-line.
-rw-r--r--tools/inferior-coq.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/inferior-coq.el b/tools/inferior-coq.el
index b79d97d66..453bd1391 100644
--- a/tools/inferior-coq.el
+++ b/tools/inferior-coq.el
@@ -265,7 +265,7 @@ With argument, position cursor at end of buffer."
(let ((end (point)))
(beginning-of-line)
(coq-send-region (point) end)))
- (next-line 1))
+ (forward-line 1))
(defun coq-send-abort ()
"Send the command \"Abort.\" to the inferior Coq process."