Mercurial > emacs
annotate lisp/register.el @ 5020:94de08fd8a7c
(Fnext_single_property_change): Fix missing \n\.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 15 Nov 1993 06:41:45 +0000 |
| parents | 5986d619b4ca |
| children | d7f922a411f9 |
| rev | line source |
|---|---|
|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
243
diff
changeset
|
1 ;;; register.el --- register commands for Emacs. |
|
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
243
diff
changeset
|
2 |
|
3656
c57aec7e822b
(view-register): Handle file name values.
Richard M. Stallman <rms@gnu.org>
parents:
3039
diff
changeset
|
3 ;; Copyright (C) 1985, 1993 Free Software Foundation, Inc. |
| 845 | 4 |
|
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
5 ;; Maintainer: FSF |
|
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: internal |
|
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
7 |
| 47 | 8 ;; This file is part of GNU Emacs. |
| 9 | |
| 10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 11 ;; it under the terms of the GNU General Public License as published by | |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
789
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
| 47 | 13 ;; any later version. |
| 14 | |
| 15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 18 ;; GNU General Public License for more details. | |
| 19 | |
| 20 ;; You should have received a copy of the GNU General Public License | |
| 21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
| 22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
| 23 | |
|
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2203
diff
changeset
|
24 ;;; Commentary: |
|
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2203
diff
changeset
|
25 |
|
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2203
diff
changeset
|
26 ;; This package of functions emulates and somewhat extends the venerable |
|
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2203
diff
changeset
|
27 ;; TECO's `register' feature, which permits you to save various useful |
|
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2203
diff
changeset
|
28 ;; pieces of buffer state to named variables. The entry points are |
|
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2203
diff
changeset
|
29 ;; documented in the Emacs user's manual. |
|
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2203
diff
changeset
|
30 |
|
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
31 ;;; Code: |
| 47 | 32 |
| 33 (defvar register-alist nil | |
| 34 "Alist of elements (NAME . CONTENTS), one for each Emacs register. | |
| 35 NAME is a character (a number). CONTENTS is a string, number, | |
| 779 | 36 frame configuration, mark or list. |
|
2699
83fee0378e0e
(jump-to-register): Allow file name "in" a register.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
37 A list of strings represents a rectangle. |
|
83fee0378e0e
(jump-to-register): Allow file name "in" a register.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
38 A list of the form (file . NAME) represents the file named NAME.") |
| 47 | 39 |
| 40 (defun get-register (char) | |
| 41 "Return contents of Emacs register named CHAR, or nil if none." | |
| 42 (cdr (assq char register-alist))) | |
| 43 | |
| 44 (defun set-register (char value) | |
|
2699
83fee0378e0e
(jump-to-register): Allow file name "in" a register.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
45 "Set contents of Emacs register named CHAR to VALUE. Returns VALUE. |
|
83fee0378e0e
(jump-to-register): Allow file name "in" a register.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
46 See the documentation of the variable `register-alist' for possible VALUE." |
| 47 | 47 (let ((aelt (assq char register-alist))) |
| 48 (if aelt | |
| 49 (setcdr aelt value) | |
| 50 (setq aelt (cons char value)) | |
| 51 (setq register-alist (cons aelt register-alist))) | |
| 52 value)) | |
| 53 | |
|
1955
8ac912d2d369
(point-to-register): Make arg ARG optional.
Richard M. Stallman <rms@gnu.org>
parents:
845
diff
changeset
|
54 (defun point-to-register (char &optional arg) |
| 141 | 55 "Store current location of point in register REGISTER. |
| 779 | 56 With prefix argument, store current frame configuration. |
| 141 | 57 Use \\[jump-to-register] to go to that location or restore that configuration. |
| 47 | 58 Argument is a character, naming the register." |
| 141 | 59 (interactive "cPoint to register: \nP") |
| 779 | 60 (set-register char (if arg (current-frame-configuration) (point-marker)))) |
| 47 | 61 |
|
1955
8ac912d2d369
(point-to-register): Make arg ARG optional.
Richard M. Stallman <rms@gnu.org>
parents:
845
diff
changeset
|
62 (defun window-configuration-to-register (char &optional arg) |
|
820
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
63 "Store the window configuration of the selected frame in register REGISTER. |
|
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
64 Use \\[jump-to-register] to restore the configuration. |
|
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
65 Argument is a character, naming the register." |
|
4669
e212db4385f9
({window,frame}-configuration-to-register): Fix prompt string in
Roland McGrath <roland@gnu.org>
parents:
3656
diff
changeset
|
66 (interactive "cWindow configuration to register: \nP") |
|
820
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
67 (set-register char (current-window-configuration))) |
|
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
68 |
|
1955
8ac912d2d369
(point-to-register): Make arg ARG optional.
Richard M. Stallman <rms@gnu.org>
parents:
845
diff
changeset
|
69 (defun frame-configuration-to-register (char &optional arg) |
|
820
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
70 "Store the window configuration of all frames in register REGISTER. |
|
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
71 Use \\[jump-to-register] to restore the configuration. |
|
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
72 Argument is a character, naming the register." |
|
4669
e212db4385f9
({window,frame}-configuration-to-register): Fix prompt string in
Roland McGrath <roland@gnu.org>
parents:
3656
diff
changeset
|
73 (interactive "cFrame configuration to register: \nP") |
|
820
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
74 (set-register char (current-frame-configuration))) |
|
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
75 |
|
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2315
diff
changeset
|
76 (defalias 'register-to-point 'jump-to-register) |
|
4931
ad035a2d8e26
(jump-to-register): Rename prefix arg to DELETE and invert its sense.
Richard M. Stallman <rms@gnu.org>
parents:
4671
diff
changeset
|
77 (defun jump-to-register (char &optional delete) |
| 47 | 78 "Move point to location stored in a register. |
|
2699
83fee0378e0e
(jump-to-register): Allow file name "in" a register.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
79 If the register contains a file name, find that file. |
|
83fee0378e0e
(jump-to-register): Allow file name "in" a register.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
80 \(To put a file name in a register, you must use `set-register'.) |
|
820
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
81 If the register contains a window configuration (one frame) or a frame |
|
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
82 configuration (all frames), restore that frame or all frames accordingly. |
|
4671
3c5e001c9d60
(jump-to-register): Take new optional arg NODELETE (prefix arg); pass
Roland McGrath <roland@gnu.org>
parents:
4669
diff
changeset
|
83 First argument is a character, naming the register. |
|
4931
ad035a2d8e26
(jump-to-register): Rename prefix arg to DELETE and invert its sense.
Richard M. Stallman <rms@gnu.org>
parents:
4671
diff
changeset
|
84 Optional second arg non-nil (interactively, prefix argument) says to |
|
ad035a2d8e26
(jump-to-register): Rename prefix arg to DELETE and invert its sense.
Richard M. Stallman <rms@gnu.org>
parents:
4671
diff
changeset
|
85 delete any existing frames that the frame configuration doesn't mention. |
|
4932
5986d619b4ca
(jump-to-register): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4931
diff
changeset
|
86 \(Otherwise, these frames are iconified.)" |
|
4671
3c5e001c9d60
(jump-to-register): Take new optional arg NODELETE (prefix arg); pass
Roland McGrath <roland@gnu.org>
parents:
4669
diff
changeset
|
87 (interactive "cJump to register: \nP") |
| 47 | 88 (let ((val (get-register char))) |
|
2202
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
89 (cond |
|
3039
7520bbbe9100
(jump-to-register): Don't fail if frame-configuration-p is unbound.
Richard M. Stallman <rms@gnu.org>
parents:
2699
diff
changeset
|
90 ((and (fboundp 'frame-configuration-p) |
|
7520bbbe9100
(jump-to-register): Don't fail if frame-configuration-p is unbound.
Richard M. Stallman <rms@gnu.org>
parents:
2699
diff
changeset
|
91 (frame-configuration-p val)) |
|
4931
ad035a2d8e26
(jump-to-register): Rename prefix arg to DELETE and invert its sense.
Richard M. Stallman <rms@gnu.org>
parents:
4671
diff
changeset
|
92 (set-frame-configuration val (not delete))) |
|
2202
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
93 ((window-configuration-p val) |
|
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
94 (set-window-configuration val)) |
|
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
95 ((markerp val) |
|
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
96 (switch-to-buffer (marker-buffer val)) |
|
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
97 (goto-char val)) |
|
2699
83fee0378e0e
(jump-to-register): Allow file name "in" a register.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
98 ((and (consp val) (eq (car val) 'file)) |
|
83fee0378e0e
(jump-to-register): Allow file name "in" a register.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
99 (find-file (cdr val))) |
|
2202
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
100 (t |
|
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
101 (error "Register doesn't contain a buffer position or configuration"))))) |
| 47 | 102 |
| 103 ;(defun number-to-register (arg char) | |
| 104 ; "Store a number in a register. | |
| 105 ;Two args, NUMBER and REGISTER (a character, naming the register). | |
| 106 ;If NUMBER is nil, digits in the buffer following point are read | |
| 107 ;to get the number to store. | |
| 108 ;Interactively, NUMBER is the prefix arg (none means nil)." | |
| 109 ; (interactive "P\ncNumber to register: ") | |
| 110 ; (set-register char | |
| 111 ; (if arg | |
| 112 ; (prefix-numeric-value arg) | |
| 113 ; (if (looking-at "[0-9][0-9]*") | |
| 114 ; (save-excursion | |
| 115 ; (save-restriction | |
| 116 ; (narrow-to-region (point) | |
| 117 ; (progn (skip-chars-forward "0-9") | |
| 118 ; (point))) | |
| 119 ; (goto-char (point-min)) | |
| 120 ; (read (current-buffer)))) | |
| 121 ; 0)))) | |
| 122 | |
| 123 ;(defun increment-register (arg char) | |
| 124 ; "Add NUMBER to the contents of register REGISTER. | |
| 125 ;Interactively, NUMBER is the prefix arg (none means nil)." | |
| 126 ; (interactive "p\ncNumber to register: ") | |
| 127 ; (or (integerp (get-register char)) | |
| 128 ; (error "Register does not contain a number")) | |
| 129 ; (set-register char (+ arg (get-register char)))) | |
| 130 | |
| 131 (defun view-register (char) | |
| 132 "Display what is contained in register named REGISTER. | |
| 133 REGISTER is a character." | |
| 134 (interactive "cView register: ") | |
| 135 (let ((val (get-register char))) | |
| 136 (if (null val) | |
| 137 (message "Register %s is empty" (single-key-description char)) | |
| 138 (with-output-to-temp-buffer "*Output*" | |
| 139 (princ "Register ") | |
| 140 (princ (single-key-description char)) | |
| 141 (princ " contains ") | |
|
2203
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
142 (cond |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
143 ((integerp val) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
144 (princ val)) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
145 |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
146 ((markerp val) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
147 (princ "a buffer position:\nbuffer ") |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
148 (princ (buffer-name (marker-buffer val))) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
149 (princ ", position ") |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
150 (princ (+ 0 val))) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
151 |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
152 ((window-configuration-p val) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
153 (princ "a window configuration.")) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
154 |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
155 ((frame-configuration-p val) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
156 (princ "a frame configuration.")) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
157 |
|
3656
c57aec7e822b
(view-register): Handle file name values.
Richard M. Stallman <rms@gnu.org>
parents:
3039
diff
changeset
|
158 ((and (consp val) (eq (car val) 'file)) |
|
c57aec7e822b
(view-register): Handle file name values.
Richard M. Stallman <rms@gnu.org>
parents:
3039
diff
changeset
|
159 (princ "the file ") |
|
c57aec7e822b
(view-register): Handle file name values.
Richard M. Stallman <rms@gnu.org>
parents:
3039
diff
changeset
|
160 (prin1 (cdr val)) |
|
c57aec7e822b
(view-register): Handle file name values.
Richard M. Stallman <rms@gnu.org>
parents:
3039
diff
changeset
|
161 (princ ".")) |
|
c57aec7e822b
(view-register): Handle file name values.
Richard M. Stallman <rms@gnu.org>
parents:
3039
diff
changeset
|
162 |
|
2203
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
163 ((consp val) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
164 (princ "the rectangle:\n") |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
165 (while val |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
166 (princ (car val)) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
167 (terpri) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
168 (setq val (cdr val)))) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
169 |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
170 ((stringp val) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
171 (princ "the text:\n") |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
172 (princ val)) |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
173 |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
174 (t |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
175 (princ "Garbage:\n") |
|
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
176 (prin1 val))))))) |
| 47 | 177 |
| 178 (defun insert-register (char &optional arg) | |
| 179 "Insert contents of register REG. REG is a character. | |
| 180 Normally puts point before and mark after the inserted text. | |
| 181 If optional second arg is non-nil, puts mark before and point after. | |
| 182 Interactively, second arg is non-nil if prefix arg is supplied." | |
| 183 (interactive "cInsert register: \nP") | |
| 184 (push-mark) | |
| 185 (let ((val (get-register char))) | |
| 186 (if (consp val) | |
| 187 (insert-rectangle val) | |
| 188 (if (stringp val) | |
| 189 (insert val) | |
| 190 (if (or (integerp val) (markerp val)) | |
| 191 (princ (+ 0 val) (current-buffer)) | |
| 192 (error "Register does not contain text"))))) | |
| 193 (if (not arg) (exchange-point-and-mark))) | |
| 194 | |
| 195 (defun copy-to-register (char start end &optional delete-flag) | |
| 243 | 196 "Copy region into register REG. With prefix arg, delete as well. |
| 197 Called from program, takes four args: REG, START, END and DELETE-FLAG. | |
| 47 | 198 START and END are buffer positions indicating what to copy." |
| 199 (interactive "cCopy to register: \nr\nP") | |
| 200 (set-register char (buffer-substring start end)) | |
| 201 (if delete-flag (delete-region start end))) | |
| 202 | |
| 203 (defun append-to-register (char start end &optional delete-flag) | |
| 243 | 204 "Append region to text in register REG. With prefix arg, delete as well. |
| 205 Called from program, takes four args: REG, START, END and DELETE-FLAG. | |
| 47 | 206 START and END are buffer positions indicating what to append." |
| 207 (interactive "cAppend to register: \nr\nP") | |
| 208 (or (stringp (get-register char)) | |
| 209 (error "Register does not contain text")) | |
| 210 (set-register char (concat (get-register char) | |
| 211 (buffer-substring start end))) | |
| 212 (if delete-flag (delete-region start end))) | |
| 213 | |
| 214 (defun prepend-to-register (char start end &optional delete-flag) | |
| 243 | 215 "Prepend region to text in register REG. With prefix arg, delete as well. |
| 216 Called from program, takes four args: REG, START, END and DELETE-FLAG. | |
| 47 | 217 START and END are buffer positions indicating what to prepend." |
| 218 (interactive "cPrepend to register: \nr\nP") | |
| 219 (or (stringp (get-register char)) | |
| 220 (error "Register does not contain text")) | |
| 221 (set-register char (concat (buffer-substring start end) | |
| 222 (get-register char))) | |
| 223 (if delete-flag (delete-region start end))) | |
| 224 | |
| 225 (defun copy-rectangle-to-register (char start end &optional delete-flag) | |
| 243 | 226 "Copy rectangular region into register REG. With prefix arg, delete as well. |
| 227 Called from program, takes four args: REG, START, END and DELETE-FLAG. | |
| 47 | 228 START and END are buffer positions giving two corners of rectangle." |
| 229 (interactive "cCopy rectangle to register: \nr\nP") | |
| 230 (set-register char | |
| 231 (if delete-flag | |
| 232 (delete-extract-rectangle start end) | |
| 233 (extract-rectangle start end)))) | |
|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
243
diff
changeset
|
234 |
|
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
243
diff
changeset
|
235 ;;; register.el ends here |
