diff options
author | Eli Zaretskii <eliz@gnu.org> | 2006-04-08 10:30:52 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2006-04-08 10:30:52 +0000 |
commit | 5c831ccdac6f06d88d1c403e24695f1686626b3f (patch) | |
tree | b6d5f300442d47b6871ea160eed8f29bb80caba2 /lisp/rect.el | |
parent | a2524d2695892fcb0d6aeaab6873148498efc7ba (diff) | |
download | emacs-5c831ccdac6f06d88d1c403e24695f1686626b3f.tar.gz |
(kill-rectangle): Don't barf if `kill-read-only-ok' is set.
(delete-extract-rectangle-line): Use `filter-buffer-substring' instead of
`buffer-substring' and `delete-region'. (Most of the code actually copied
from `kill-region'.)
Diffstat (limited to 'lisp/rect.el')
-rw-r--r-- | lisp/rect.el | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/lisp/rect.el b/lisp/rect.el index 63979cb967c..be3a65ccd6a 100644 --- a/lisp/rect.el +++ b/lisp/rect.el @@ -141,8 +141,7 @@ the function is called." ;; else (setq pt (point)) (move-to-column endcol t) - (setcdr lines (cons (buffer-substring pt (point)) (cdr lines))) - (delete-region pt (point))) + (setcdr lines (cons (filter-buffer-substring pt (point) t) (cdr lines)))) )) ;; ### NOTE: this is actually the only function that needs to do complicated @@ -233,12 +232,22 @@ When called from a program the rectangle's corners are START and END. You might prefer to use `delete-extract-rectangle' from a program. With a prefix (or a FILL) argument, also fill lines where nothing has to be -deleted." - (interactive "*r\nP") - (when buffer-read-only - (setq killed-rectangle (extract-rectangle start end)) - (barf-if-buffer-read-only)) - (setq killed-rectangle (delete-extract-rectangle start end fill))) +deleted. + +If the buffer is read-only, Emacs will beep and refrain from deleting +the rectangle, but put it in the kill ring anyway. This means that +you can use this command to copy text from a read-only buffer. +\(If the variable `kill-read-only-ok' is non-nil, then this won't +even beep.)" + (interactive "r\nP") + (condition-case nil + (setq killed-rectangle (delete-extract-rectangle start end fill)) + ((buffer-read-only text-read-only) + (setq killed-rectangle (extract-rectangle start end)) + (if kill-read-only-ok + (progn (message "Read only text copied to kill ring") nil) + (barf-if-buffer-read-only) + (signal 'text-read-only (list (current-buffer))))))) ;; this one is untouched --dv ;;;###autoload |