commit a70db34fc9d20f858ecfe1c0c634a9ea7d6e16ef
parent fbde1b2d717a27f602e56c8eaeb7a84257593be8
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Sun, 24 Dec 2017 11:08:43 +0100
tweaks: remove two irrelevant conditions
They were mistakenly added by changeset fb85c055, four commits ago.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/text.c b/src/text.c
@@ -583,13 +583,13 @@ bool comment_line(undo_type action, filestruct *line, const char *comment_seq)
openfile->totsize -= pre_len + post_len;
/* If needed, adjust the position of the mark and then the cursor. */
- if (line == openfile->mark && openfile->mark_x > 0) {
+ if (line == openfile->mark) {
if (openfile->mark_x < pre_len)
openfile->mark_x = 0;
else
openfile->mark_x -= pre_len;
}
- if (line == openfile->current && openfile->current_x > 0) {
+ if (line == openfile->current) {
if (openfile->current_x < pre_len)
openfile->current_x = 0;
else