bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#39902: 28.0.50; Marking in dired with active region


From: Juri Linkov
Subject: bug#39902: 28.0.50; Marking in dired with active region
Date: Wed, 11 Mar 2020 01:56:17 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (x86_64-pc-linux-gnu)

>> Then we agree that
>> (progn (goto-char end) (line-beginning-position))
>> should NOT be replaced with
>> (progn (goto-char end) (line-end-position))
>
> How about this:
>
>  (progn (goto-char end) (line-end-position) (backward-char 1) (point))

Probably you meant

   (progn (goto-char end) (backward-char 1) (line-end-position) (point))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]