GNU bug report logs -
#11388
24.0.95; Improper kill-line in zone.el
Previous Next
Reported by: "Aaron S. Hawley" <aaron.s.hawley <at> gmail.com>
Date: Tue, 1 May 2012 14:16:01 UTC
Severity: normal
Tags: patch
Found in version 24.0.95
Fixed in version 24.2
Done: Glenn Morris <rgm <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Mon, 07 May 2012 21:41:08 -0400
with message-id <pofwbbphzf.fsf <at> fencepost.gnu.org>
and subject line Re: bug#11388: 24.0.95; Improper kill-line in zone.el
has caused the debbugs.gnu.org bug report #11388,
regarding 24.0.95; Improper kill-line in zone.el
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
11388: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11388
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
I noticed that my last kill and the desktop clipboard were being
overwritten when Emacs was zoning. This is because one of the zone
programs uses kill-line.
Reproduce with:
(let ((zone-programs '(zone-pgm-stress)))
(zone))
Here's a patch:
2012-04-25 Aaron S. Hawley <aaron.s.hawley <at> gmail.com>
* zone.el (zone-pgm-stress): Use delete-region instead of kill-line
unless munging the kill ring is part of the "stress".
--- zone.el 2012-04-25 15:53:42.291906100 -0400
+++ zone.el 2012-04-25 16:11:00.042670800 -0400
@@ -595,8 +595,7 @@
(when (< 50 (random 100))
(goto-char (point-max))
(forward-line -1)
- (let ((kill-whole-line t))
- (kill-line))
+ (delete-region (point) (line-end-position))
(goto-char (point-min))
(insert (nth (random (length lines)) lines)))
(message (concat (make-string (random (- (frame-width) 5)) ? ) "grrr"))
Thanks for Emacs.
aaron
[Message part 3 (message/rfc822, inline)]
Version: 24.2
"Aaron S. Hawley" wrote:
> - (let ((kill-whole-line t))
> - (kill-line))
> + (delete-region (point) (line-end-position))
These don't treat newlines the same. I installed:
(delete-region (point) (line-beginning-position 2))
This bug report was last modified 13 years and 79 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.