branch: externals/eev
commit 9dcb5d39976ef95e64030d08abfc4a32206eaf01
Author: Eduardo Ochs <[email protected]>
Commit: Eduardo Ochs <[email protected]>

    Fixed a bug in `ee-copy-this-line-to-kill-ring'.
---
 ChangeLog   | 3 +++
 VERSION     | 4 ++--
 eev-edit.el | 4 ++--
 3 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index c73a80debe..a265c41508 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2024-08-11  Eduardo Ochs  <[email protected]>
 
+       * eev-edit.el (ee-copy-this-line-to-kill-ring): fixed a bug/typo -
+       "end" was using "bol" instead of "eol"!
+
        * eev-intro.el (find-windows-beginner-intro): added the section
        "12. Install qdraw".
 
diff --git a/VERSION b/VERSION
index 21477f4a55..99b69fe32d 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-Sun Aug 11 07:11:05 GMT 2024
-Sun Aug 11 04:11:05 -03 2024
+Mon Aug 12 01:00:49 GMT 2024
+Sun Aug 11 22:00:49 -03 2024
diff --git a/eev-edit.el b/eev-edit.el
index 3b25b15c3d..b4dbcf38b0 100644
--- a/eev-edit.el
+++ b/eev-edit.el
@@ -19,7 +19,7 @@
 ;;
 ;; Author:     Eduardo Ochs <[email protected]>
 ;; Maintainer: Eduardo Ochs <[email protected]>
-;; Version:    20240103
+;; Version:    20240811
 ;; Keywords:   e-scripts
 ;;
 ;; Latest version: <http://anggtwu.net/eev-current/eev-edit.el>
@@ -136,7 +136,7 @@ With a prefix argument run 
`ee-copy-preceding-tag-to-kill-ring' instead."
   (interactive "P")
   (if arg (ee-copy-preceding-tag-to-kill-ring)
     (let* ((start (ee-bol-skip-invisible))
-          (end   (ee-bol-skip-invisible))
+          (end   (ee-eol-skip-invisible))
           (str   (buffer-substring start end))
           (msg   "Copied the current line to the kill ring - use C-y to 
paste"))
       (eeflash+ start end eeflash-copy)

Reply via email to