diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-09-19 05:51:16 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-09-19 05:51:16 +0000 |
commit | 2ee658c39eaff040f264642ee0fdd49467a3ee86 (patch) | |
tree | 37cd628861405f76bf8dbc37a6cd8e073c333752 | |
parent | 7bbe1dea3b53faffed4683fd1f399e7be68e8162 (diff) | |
download | emacs-2ee658c39eaff040f264642ee0fdd49467a3ee86.tar.gz |
(picture-yank-at-click): New function.
-rw-r--r-- | lisp/textmodes/picture.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el index 9063212a1c6..c781be48a2e 100644 --- a/lisp/textmodes/picture.el +++ b/lisp/textmodes/picture.el @@ -432,6 +432,16 @@ point at the other (diagonally opposed) corner." (error "No rectangle saved.") (picture-insert-rectangle picture-killed-rectangle insertp))) +(defun picture-yank-at-click (click arg) + "Insert the last killed rectangle at the position clicked on. +Also move point to one end of the text thus inserted (normally the end). +Prefix arguments are interpreted as with \\[yank]. +If `mouse-yank-at-point' is non-nil, insert at point +regardless of where you click." + (interactive "e\nP") + (or mouse-yank-at-point (mouse-set-point click)) + (picture-yank-rectangle arg)) + (defun picture-yank-rectangle-from-register (register &optional insertp) "Overlay rectangle saved in REGISTER. The rectangle is positioned with upper left corner at point, overwriting |