Mercurial > emacs
annotate lisp/register.el @ 49176:56966d83f3a5
(sh-mode-map): Use command remapping instead of
substitute-key-definition.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Sun, 12 Jan 2003 20:51:12 +0000 |
parents | 1e0c7ad65f05 |
children | e88404e8f2cf |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
20675
diff
changeset
|
1 ;;; register.el --- register commands for Emacs |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
243
diff
changeset
|
2 |
7300 | 3 ;; Copyright (C) 1985, 1993, 1994 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 | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
47 | 24 |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2203
diff
changeset
|
25 ;;; Commentary: |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2203
diff
changeset
|
26 |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2203
diff
changeset
|
27 ;; 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
|
28 ;; 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
|
29 ;; 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
|
30 ;; documented in the Emacs user's manual. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2203
diff
changeset
|
31 |
789
71d052f72ac1
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
32 ;;; Code: |
47 | 33 |
34 (defvar register-alist nil | |
35 "Alist of elements (NAME . CONTENTS), one for each Emacs register. | |
20417
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
36 NAME is a character (a number). CONTENTS is a string, number, marker 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. |
16279
e69577ede89e
New kind of register value is a file name and position.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
38 A list of the form (file . NAME) represents the file named NAME. |
e69577ede89e
New kind of register value is a file name and position.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
39 A list of the form (file-query NAME POSITION) represents position POSITION |
20417
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
40 in the file named NAME, but query before visiting it. |
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
41 A list of the form (WINDOW-CONFIGURATION POSITION) |
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
42 represents a saved window configuration plus a saved value of point. |
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
43 A list of the form (FRAME-CONFIGURATION POSITION) |
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
44 represents a saved frame configuration plus a saved value of point.") |
47 | 45 |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
46 (defun get-register (reg) |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
47 "Return contents of Emacs register named REG, or nil if none." |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
48 (cdr (assq reg register-alist))) |
47 | 49 |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
50 (defun set-register (register value) |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
51 "Set contents of Emacs register named REGISTER to VALUE. Returns VALUE. |
2699
83fee0378e0e
(jump-to-register): Allow file name "in" a register.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
52 See the documentation of the variable `register-alist' for possible VALUE." |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
53 (let ((aelt (assq register register-alist))) |
47 | 54 (if aelt |
55 (setcdr aelt value) | |
47646
0e418919d79e
(set-register): Use push.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44677
diff
changeset
|
56 (push (cons register value) register-alist)) |
47 | 57 value)) |
58 | |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
59 (defun point-to-register (register &optional arg) |
141 | 60 "Store current location of point in register REGISTER. |
779 | 61 With prefix argument, store current frame configuration. |
141 | 62 Use \\[jump-to-register] to go to that location or restore that configuration. |
47 | 63 Argument is a character, naming the register." |
141 | 64 (interactive "cPoint to register: \nP") |
47646
0e418919d79e
(set-register): Use push.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44677
diff
changeset
|
65 ;; Turn the marker into a file-ref if the buffer is killed. |
0e418919d79e
(set-register): Use push.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44677
diff
changeset
|
66 (add-hook 'kill-buffer-hook 'register-swap-out nil t) |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
67 (set-register register |
20417
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
68 (if arg (list (current-frame-configuration) (point-marker)) |
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
69 (point-marker)))) |
47 | 70 |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
71 (defun window-configuration-to-register (register &optional arg) |
820
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
72 "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
|
73 Use \\[jump-to-register] to restore the configuration. |
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
74 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
|
75 (interactive "cWindow configuration to register: \nP") |
20324
2365fc61875d
(window-configuration-to-register):
Karl Heuer <kwzh@gnu.org>
parents:
16279
diff
changeset
|
76 ;; current-window-configuration does not include the value |
2365fc61875d
(window-configuration-to-register):
Karl Heuer <kwzh@gnu.org>
parents:
16279
diff
changeset
|
77 ;; of point in the current buffer, so record that separately. |
20417
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
78 (set-register register (list (current-window-configuration) (point-marker)))) |
820
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
79 |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
80 (defun frame-configuration-to-register (register &optional arg) |
820
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
81 "Store the window configuration of all frames in register REGISTER. |
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
82 Use \\[jump-to-register] to restore the configuration. |
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
83 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
|
84 (interactive "cFrame configuration to register: \nP") |
20324
2365fc61875d
(window-configuration-to-register):
Karl Heuer <kwzh@gnu.org>
parents:
16279
diff
changeset
|
85 ;; current-frame-configuration does not include the value |
2365fc61875d
(window-configuration-to-register):
Karl Heuer <kwzh@gnu.org>
parents:
16279
diff
changeset
|
86 ;; of point in the current buffer, so record that separately. |
20417
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
87 (set-register register (list (current-frame-configuration) (point-marker)))) |
820
cd6b1e1da3fc
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
814
diff
changeset
|
88 |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2315
diff
changeset
|
89 (defalias 'register-to-point 'jump-to-register) |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
90 (defun jump-to-register (register &optional delete) |
47 | 91 "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
|
92 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
|
93 \(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
|
94 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
|
95 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
|
96 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
|
97 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
|
98 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
|
99 \(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
|
100 (interactive "cJump to register: \nP") |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
101 (let ((val (get-register register))) |
2202
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
102 (cond |
20324
2365fc61875d
(window-configuration-to-register):
Karl Heuer <kwzh@gnu.org>
parents:
16279
diff
changeset
|
103 ((and (consp val) (frame-configuration-p (car val))) |
2365fc61875d
(window-configuration-to-register):
Karl Heuer <kwzh@gnu.org>
parents:
16279
diff
changeset
|
104 (set-frame-configuration (car val) (not delete)) |
2365fc61875d
(window-configuration-to-register):
Karl Heuer <kwzh@gnu.org>
parents:
16279
diff
changeset
|
105 (goto-char (cadr val))) |
2365fc61875d
(window-configuration-to-register):
Karl Heuer <kwzh@gnu.org>
parents:
16279
diff
changeset
|
106 ((and (consp val) (window-configuration-p (car val))) |
2365fc61875d
(window-configuration-to-register):
Karl Heuer <kwzh@gnu.org>
parents:
16279
diff
changeset
|
107 (set-window-configuration (car val)) |
2365fc61875d
(window-configuration-to-register):
Karl Heuer <kwzh@gnu.org>
parents:
16279
diff
changeset
|
108 (goto-char (cadr val))) |
2202
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
109 ((markerp val) |
6462
e58207907f53
(jump-to-register): Handle dead marker.
Karl Heuer <kwzh@gnu.org>
parents:
6336
diff
changeset
|
110 (or (marker-buffer val) |
e58207907f53
(jump-to-register): Handle dead marker.
Karl Heuer <kwzh@gnu.org>
parents:
6336
diff
changeset
|
111 (error "That register's buffer no longer exists")) |
2202
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
112 (switch-to-buffer (marker-buffer val)) |
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
113 (goto-char val)) |
2699
83fee0378e0e
(jump-to-register): Allow file name "in" a register.
Richard M. Stallman <rms@gnu.org>
parents:
2571
diff
changeset
|
114 ((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
|
115 (find-file (cdr val))) |
16279
e69577ede89e
New kind of register value is a file name and position.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
116 ((and (consp val) (eq (car val) 'file-query)) |
e69577ede89e
New kind of register value is a file name and position.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
117 (or (find-buffer-visiting (nth 1 val)) |
e69577ede89e
New kind of register value is a file name and position.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
118 (y-or-n-p (format "Visit file %s again? " (nth 1 val))) |
e69577ede89e
New kind of register value is a file name and position.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
119 (error "Register access aborted")) |
e69577ede89e
New kind of register value is a file name and position.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
120 (find-file (nth 1 val)) |
e69577ede89e
New kind of register value is a file name and position.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
121 (goto-char (nth 2 val))) |
2202
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
122 (t |
081afcef5e85
Make frame configurations start with a distinctive symbol.
Jim Blandy <jimb@redhat.com>
parents:
1955
diff
changeset
|
123 (error "Register doesn't contain a buffer position or configuration"))))) |
47 | 124 |
16279
e69577ede89e
New kind of register value is a file name and position.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
125 (defun register-swap-out () |
47646
0e418919d79e
(set-register): Use push.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44677
diff
changeset
|
126 "Turn markers into file-query references when a buffer is killed." |
16279
e69577ede89e
New kind of register value is a file name and position.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
127 (and buffer-file-name |
47646
0e418919d79e
(set-register): Use push.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44677
diff
changeset
|
128 (dolist (elem register-alist) |
0e418919d79e
(set-register): Use push.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44677
diff
changeset
|
129 (and (markerp (cdr elem)) |
0e418919d79e
(set-register): Use push.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44677
diff
changeset
|
130 (eq (marker-buffer (cdr elem)) (current-buffer)) |
0e418919d79e
(set-register): Use push.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44677
diff
changeset
|
131 (setcdr elem |
0e418919d79e
(set-register): Use push.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44677
diff
changeset
|
132 (list 'file-query |
0e418919d79e
(set-register): Use push.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44677
diff
changeset
|
133 buffer-file-name |
0e418919d79e
(set-register): Use push.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44677
diff
changeset
|
134 (marker-position (cdr elem)))))))) |
16279
e69577ede89e
New kind of register value is a file name and position.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
135 |
20675
483ae4df691a
(number-to-register, increment-register): Args
Karl Heuer <kwzh@gnu.org>
parents:
20511
diff
changeset
|
136 (defun number-to-register (number register) |
20417
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
137 "Store a number in a register. |
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
138 Two args, NUMBER and REGISTER (a character, naming the register). |
20430
1b4c829e2f42
(number-to-register): Move point as a side effect.
Karl Heuer <kwzh@gnu.org>
parents:
20417
diff
changeset
|
139 If NUMBER is nil, a decimal number is read from the buffer starting |
1b4c829e2f42
(number-to-register): Move point as a side effect.
Karl Heuer <kwzh@gnu.org>
parents:
20417
diff
changeset
|
140 at point, and point moves to the end of that number. |
20417
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
141 Interactively, NUMBER is the prefix arg (none means nil)." |
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
142 (interactive "P\ncNumber to register: ") |
48451
c623c9adbefe
(describe-register-1): Don't assign to val the value returned by
Juanma Barranquero <lekktu@gmail.com>
parents:
47646
diff
changeset
|
143 (set-register register |
20675
483ae4df691a
(number-to-register, increment-register): Args
Karl Heuer <kwzh@gnu.org>
parents:
20511
diff
changeset
|
144 (if number |
483ae4df691a
(number-to-register, increment-register): Args
Karl Heuer <kwzh@gnu.org>
parents:
20511
diff
changeset
|
145 (prefix-numeric-value number) |
20430
1b4c829e2f42
(number-to-register): Move point as a side effect.
Karl Heuer <kwzh@gnu.org>
parents:
20417
diff
changeset
|
146 (if (looking-at "\\s-*-?[0-9]+") |
1b4c829e2f42
(number-to-register): Move point as a side effect.
Karl Heuer <kwzh@gnu.org>
parents:
20417
diff
changeset
|
147 (progn |
1b4c829e2f42
(number-to-register): Move point as a side effect.
Karl Heuer <kwzh@gnu.org>
parents:
20417
diff
changeset
|
148 (goto-char (match-end 0)) |
1b4c829e2f42
(number-to-register): Move point as a side effect.
Karl Heuer <kwzh@gnu.org>
parents:
20417
diff
changeset
|
149 (string-to-int (match-string 0))) |
20417
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
150 0)))) |
47 | 151 |
20675
483ae4df691a
(number-to-register, increment-register): Args
Karl Heuer <kwzh@gnu.org>
parents:
20511
diff
changeset
|
152 (defun increment-register (number register) |
20417
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
153 "Add NUMBER to the contents of register REGISTER. |
20675
483ae4df691a
(number-to-register, increment-register): Args
Karl Heuer <kwzh@gnu.org>
parents:
20511
diff
changeset
|
154 Interactively, NUMBER is the prefix arg." |
20417
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
155 (interactive "p\ncIncrement register: ") |
20675
483ae4df691a
(number-to-register, increment-register): Args
Karl Heuer <kwzh@gnu.org>
parents:
20511
diff
changeset
|
156 (or (numberp (get-register register)) |
20417
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
157 (error "Register does not contain a number")) |
20675
483ae4df691a
(number-to-register, increment-register): Args
Karl Heuer <kwzh@gnu.org>
parents:
20511
diff
changeset
|
158 (set-register register (+ number (get-register register)))) |
47 | 159 |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
160 (defun view-register (register) |
47 | 161 "Display what is contained in register named REGISTER. |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
162 The Lisp value REGISTER is a character." |
47 | 163 (interactive "cView register: ") |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
164 (let ((val (get-register register))) |
47 | 165 (if (null val) |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
166 (message "Register %s is empty" (single-key-description register)) |
47 | 167 (with-output-to-temp-buffer "*Output*" |
43170
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
168 (describe-register-1 register t))))) |
2203
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
169 |
43170
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
170 (defun list-registers () |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
171 "Display a list of nonempty registers saying briefly what they contain." |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
172 (interactive) |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
173 (let ((list (copy-sequence register-alist))) |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
174 (setq list (sort list (lambda (a b) (< (car a) (car b))))) |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
175 (with-output-to-temp-buffer "*Output*" |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
176 (dolist (elt list) |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
177 (when (get-register (car elt)) |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
178 (describe-register-1 (car elt)) |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
179 (terpri)))))) |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
180 |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
181 (defun describe-register-1 (register &optional verbose) |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
182 (princ "Register ") |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
183 (princ (single-key-description register)) |
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
184 (princ " contains ") |
43291
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
185 (let ((val (get-register register))) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
186 (cond |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
187 ((numberp val) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
188 (princ val)) |
2203
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
189 |
43291
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
190 ((markerp val) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
191 (let ((buf (marker-buffer val))) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
192 (if (null buf) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
193 (princ "a marker in no buffer") |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
194 (princ "a buffer position:\n buffer ") |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
195 (princ (buffer-name buf)) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
196 (princ ", position ") |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
197 (princ (marker-position val))))) |
2203
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
198 |
43291
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
199 ((and (consp val) (window-configuration-p (car val))) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
200 (princ "a window configuration.")) |
43170
a2f11ee215ea
(list-registers): New command.
Richard M. Stallman <rms@gnu.org>
parents:
38412
diff
changeset
|
201 |
43291
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
202 ((and (consp val) (frame-configuration-p (car val))) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
203 (princ "a frame configuration.")) |
2203
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
204 |
43291
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
205 ((and (consp val) (eq (car val) 'file)) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
206 (princ "the file ") |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
207 (prin1 (cdr val)) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
208 (princ ".")) |
3656
c57aec7e822b
(view-register): Handle file name values.
Richard M. Stallman <rms@gnu.org>
parents:
3039
diff
changeset
|
209 |
43291
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
210 ((and (consp val) (eq (car val) 'file-query)) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
211 (princ "a file-query reference:\n file ") |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
212 (prin1 (car (cdr val))) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
213 (princ ",\n position ") |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
214 (princ (car (cdr (cdr val)))) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
215 (princ ".")) |
20511
9a051580fa02
(view-register): Show register type file-query.
Richard M. Stallman <rms@gnu.org>
parents:
20430
diff
changeset
|
216 |
43291
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
217 ((consp val) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
218 (if verbose |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
219 (progn |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
220 (princ "the rectangle:\n") |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
221 (while val |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
222 (princ " ") |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
223 (princ (car val)) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
224 (terpri) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
225 (setq val (cdr val)))) |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
226 (princ "a rectangle starting with ") |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
227 (princ (car val)))) |
2203
12e9bc8a4a7f
* register.el (view-register): Neglect not to avoid failing to
Jim Blandy <jimb@redhat.com>
parents:
2202
diff
changeset
|
228 |
43291
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
229 ((stringp val) |
48451
c623c9adbefe
(describe-register-1): Don't assign to val the value returned by
Juanma Barranquero <lekktu@gmail.com>
parents:
47646
diff
changeset
|
230 (remove-list-of-text-properties 0 (length val) |
c623c9adbefe
(describe-register-1): Don't assign to val the value returned by
Juanma Barranquero <lekktu@gmail.com>
parents:
47646
diff
changeset
|
231 yank-excluded-properties val) |
43291
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
232 (if verbose |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
233 (progn |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
234 (princ "the text:\n") |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
235 (princ val)) |
48715
1e0c7ad65f05
(describe-register-1): Use window-width
Richard M. Stallman <rms@gnu.org>
parents:
48451
diff
changeset
|
236 (cond |
1e0c7ad65f05
(describe-register-1): Use window-width
Richard M. Stallman <rms@gnu.org>
parents:
48451
diff
changeset
|
237 ;; Extract first N characters starting with first non-whitespace. |
1e0c7ad65f05
(describe-register-1): Use window-width
Richard M. Stallman <rms@gnu.org>
parents:
48451
diff
changeset
|
238 ((string-match (format "[^ \t\n].\\{,%d\\}" |
1e0c7ad65f05
(describe-register-1): Use window-width
Richard M. Stallman <rms@gnu.org>
parents:
48451
diff
changeset
|
239 ;; Deduct 6 for the spaces inserted below. |
1e0c7ad65f05
(describe-register-1): Use window-width
Richard M. Stallman <rms@gnu.org>
parents:
48451
diff
changeset
|
240 (min 20 (max 0 (- (window-width) 6)))) |
1e0c7ad65f05
(describe-register-1): Use window-width
Richard M. Stallman <rms@gnu.org>
parents:
48451
diff
changeset
|
241 val) |
1e0c7ad65f05
(describe-register-1): Use window-width
Richard M. Stallman <rms@gnu.org>
parents:
48451
diff
changeset
|
242 (princ "text starting with\n ") |
1e0c7ad65f05
(describe-register-1): Use window-width
Richard M. Stallman <rms@gnu.org>
parents:
48451
diff
changeset
|
243 (princ (match-string 0 val))) |
1e0c7ad65f05
(describe-register-1): Use window-width
Richard M. Stallman <rms@gnu.org>
parents:
48451
diff
changeset
|
244 ((string-match "^[ \t\n]+$" val) |
1e0c7ad65f05
(describe-register-1): Use window-width
Richard M. Stallman <rms@gnu.org>
parents:
48451
diff
changeset
|
245 (princ "whitespace")) |
1e0c7ad65f05
(describe-register-1): Use window-width
Richard M. Stallman <rms@gnu.org>
parents:
48451
diff
changeset
|
246 (t |
1e0c7ad65f05
(describe-register-1): Use window-width
Richard M. Stallman <rms@gnu.org>
parents:
48451
diff
changeset
|
247 (princ "the empty string"))))) |
43291
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
248 (t |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
249 (princ "Garbage:\n") |
d6866cd43406
(describe-register-1): Access register contents here.
Richard M. Stallman <rms@gnu.org>
parents:
43170
diff
changeset
|
250 (if verbose (prin1 val)))))) |
47 | 251 |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
252 (defun insert-register (register &optional arg) |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
253 "Insert contents of register REGISTER. (REGISTER is a character.) |
47 | 254 Normally puts point before and mark after the inserted text. |
255 If optional second arg is non-nil, puts mark before and point after. | |
256 Interactively, second arg is non-nil if prefix arg is supplied." | |
8812
36f7b14b38e3
(insert-register): Add `*' interactive spec.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
257 (interactive "*cInsert register: \nP") |
47 | 258 (push-mark) |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
259 (let ((val (get-register register))) |
6336
d7f922a411f9
(view-register, insert-register): Handle dead marker.
Karl Heuer <kwzh@gnu.org>
parents:
4932
diff
changeset
|
260 (cond |
d7f922a411f9
(view-register, insert-register): Handle dead marker.
Karl Heuer <kwzh@gnu.org>
parents:
4932
diff
changeset
|
261 ((consp val) |
d7f922a411f9
(view-register, insert-register): Handle dead marker.
Karl Heuer <kwzh@gnu.org>
parents:
4932
diff
changeset
|
262 (insert-rectangle val)) |
d7f922a411f9
(view-register, insert-register): Handle dead marker.
Karl Heuer <kwzh@gnu.org>
parents:
4932
diff
changeset
|
263 ((stringp val) |
44677
b8ccc58cc821
(insert-register): Use insert-for-yank.
Richard M. Stallman <rms@gnu.org>
parents:
43291
diff
changeset
|
264 (insert-for-yank val)) |
20417
01d602ca5dcf
(frame-configuration-to-register)
Karl Heuer <kwzh@gnu.org>
parents:
20324
diff
changeset
|
265 ((numberp val) |
6336
d7f922a411f9
(view-register, insert-register): Handle dead marker.
Karl Heuer <kwzh@gnu.org>
parents:
4932
diff
changeset
|
266 (princ val (current-buffer))) |
d7f922a411f9
(view-register, insert-register): Handle dead marker.
Karl Heuer <kwzh@gnu.org>
parents:
4932
diff
changeset
|
267 ((and (markerp val) (marker-position val)) |
d7f922a411f9
(view-register, insert-register): Handle dead marker.
Karl Heuer <kwzh@gnu.org>
parents:
4932
diff
changeset
|
268 (princ (marker-position val) (current-buffer))) |
d7f922a411f9
(view-register, insert-register): Handle dead marker.
Karl Heuer <kwzh@gnu.org>
parents:
4932
diff
changeset
|
269 (t |
d7f922a411f9
(view-register, insert-register): Handle dead marker.
Karl Heuer <kwzh@gnu.org>
parents:
4932
diff
changeset
|
270 (error "Register does not contain text")))) |
47 | 271 (if (not arg) (exchange-point-and-mark))) |
272 | |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
273 (defun copy-to-register (register start end &optional delete-flag) |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
274 "Copy region into register REGISTER. With prefix arg, delete as well. |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
275 Called from program, takes four args: REGISTER, START, END and DELETE-FLAG. |
47 | 276 START and END are buffer positions indicating what to copy." |
277 (interactive "cCopy to register: \nr\nP") | |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
278 (set-register register (buffer-substring start end)) |
47 | 279 (if delete-flag (delete-region start end))) |
280 | |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
281 (defun append-to-register (register start end &optional delete-flag) |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
282 "Append region to text in register REGISTER. |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
283 With prefix arg, delete as well. |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
284 Called from program, takes four args: REGISTER, START, END and DELETE-FLAG. |
47 | 285 START and END are buffer positions indicating what to append." |
286 (interactive "cAppend to register: \nr\nP") | |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
287 (or (stringp (get-register register)) |
47 | 288 (error "Register does not contain text")) |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
289 (set-register register (concat (get-register register) |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
290 (buffer-substring start end))) |
47 | 291 (if delete-flag (delete-region start end))) |
292 | |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
293 (defun prepend-to-register (register start end &optional delete-flag) |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
294 "Prepend region to text in register REGISTER. |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
295 With prefix arg, delete as well. |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
296 Called from program, takes four args: REGISTER, START, END and DELETE-FLAG. |
47 | 297 START and END are buffer positions indicating what to prepend." |
298 (interactive "cPrepend to register: \nr\nP") | |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
299 (or (stringp (get-register register)) |
47 | 300 (error "Register does not contain text")) |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
301 (set-register register (concat (buffer-substring start end) |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
302 (get-register register))) |
47 | 303 (if delete-flag (delete-region start end))) |
304 | |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
305 (defun copy-rectangle-to-register (register start end &optional delete-flag) |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
306 "Copy rectangular region into register REGISTER. |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
307 With prefix arg, delete as well. |
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
308 Called from program, takes four args: REGISTER, START, END and DELETE-FLAG. |
47 | 309 START and END are buffer positions giving two corners of rectangle." |
310 (interactive "cCopy rectangle to register: \nr\nP") | |
13009
a418156c25ea
Rename all register-name args to `register'.
Richard M. Stallman <rms@gnu.org>
parents:
8812
diff
changeset
|
311 (set-register register |
47 | 312 (if delete-flag |
313 (delete-extract-rectangle start end) | |
314 (extract-rectangle start end)))) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
243
diff
changeset
|
315 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
243
diff
changeset
|
316 ;;; register.el ends here |