summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen <larsi@gnus.org>2011-07-11 17:41:41 +0200
committerLars Magne Ingebrigtsen <larsi@gnus.org>2011-07-11 17:41:41 +0200
commita30ed87bb5266145c461bfe5b8506cdc992fc818 (patch)
treea75d3992d2ab1410887160e2f88af07af3517702 /doc
parentad21a12a3a0a6c8eece582446612c8e2bd6a4e9c (diff)
downloademacs-a30ed87bb5266145c461bfe5b8506cdc992fc818.tar.gz
Change all the register node names from "RegPos" (etc.) to "Positional Registers" (etc.).
Fixes: debbugs:3314
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/ChangeLog5
-rw-r--r--doc/emacs/emacs.texi14
-rw-r--r--doc/emacs/killing.texi3
-rw-r--r--doc/emacs/kmacro.texi4
-rw-r--r--doc/emacs/mark.texi4
-rw-r--r--doc/emacs/regs.texi26
6 files changed, 30 insertions, 26 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index ae732a7db0f..4a82714fa52 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
+
+ * emacs.texi: Change all the register node names from "RegPos"
+ (etc.) to "Positional Registers" (etc.) (bug#3314).
+
2011-07-11 Chong Yidong <cyd@stupidchicken.com>
* killing.texi (Killing, Deletion and Killing, Killing by Lines)
diff --git a/doc/emacs/emacs.texi b/doc/emacs/emacs.texi
index a35736f4fe7..2591f56a168 100644
--- a/doc/emacs/emacs.texi
+++ b/doc/emacs/emacs.texi
@@ -338,13 +338,13 @@ Killing and Yanking on Graphical Displays
Registers
-* RegPos:: Saving positions in registers.
-* RegText:: Saving text in registers.
-* RegRect:: Saving rectangles in registers.
-* RegConfig:: Saving window configurations in registers.
-* RegNumbers:: Numbers in registers.
-* RegFiles:: File names in registers.
-* Bookmarks:: Bookmarks are like registers, but persistent.
+* Position Registers:: Saving positions in registers.
+* Text Registers:: Saving text in registers.
+* Rectangle Registers:: Saving rectangles in registers.
+* Configuration Registers:: Saving window configurations in registers.
+* Number Registers:: Numbers in registers.
+* File Registers:: File names in registers.
+* Bookmarks:: Bookmarks are like registers, but persistent.
Controlling the Display
diff --git a/doc/emacs/killing.texi b/doc/emacs/killing.texi
index 38124fc315a..6be40c85832 100644
--- a/doc/emacs/killing.texi
+++ b/doc/emacs/killing.texi
@@ -758,8 +758,7 @@ rectangle and then yank it beside the first line of the list.
@xref{Two-Column}, for another way to edit multi-column text.
You can also copy rectangles into and out of registers with @kbd{C-x r
-r @var{r}} and @kbd{C-x r i @var{r}}. @xref{RegRect,,Rectangle
-Registers}.
+r @var{r}} and @kbd{C-x r i @var{r}}. @xref{Rectangle Registers}.
@kindex C-x r o
@findex open-rectangle
diff --git a/doc/emacs/kmacro.texi b/doc/emacs/kmacro.texi
index c52381a663c..ac81377aec9 100644
--- a/doc/emacs/kmacro.texi
+++ b/doc/emacs/kmacro.texi
@@ -332,8 +332,8 @@ numbers stored in registers.
If you use a register as a counter, incrementing it on each
repetition of the macro, that accomplishes the same thing as a
-keyboard macro counter. @xref{RegNumbers}. For most purposes, it is
-simpler to use a keyboard macro counter.
+keyboard macro counter. @xref{Number Registers}. For most purposes,
+it is simpler to use a keyboard macro counter.
@node Keyboard Macro Query
@section Executing Macros with Variations
diff --git a/doc/emacs/mark.texi b/doc/emacs/mark.texi
index b426020b7c6..759db626ea7 100644
--- a/doc/emacs/mark.texi
+++ b/doc/emacs/mark.texi
@@ -307,8 +307,8 @@ is non-@code{nil} by default.
If you want to move back to the same place over and over, the mark
ring may not be convenient enough. If so, you can record the position
-in a register for later retrieval (@pxref{RegPos,, Saving Positions in
-Registers}).
+in a register for later retrieval (@pxref{Position Registers,, Saving
+Positions in Registers}).
@node Global Mark Ring
@section The Global Mark Ring
diff --git a/doc/emacs/regs.texi b/doc/emacs/regs.texi
index 42ce85c7ee1..b4b9fd252e1 100644
--- a/doc/emacs/regs.texi
+++ b/doc/emacs/regs.texi
@@ -35,16 +35,16 @@ Bookmarks are similar enough in spirit to registers that they
seem to belong in this chapter.
@menu
-* Position: RegPos. Saving positions in registers.
-* Text: RegText. Saving text in registers.
-* Rectangle: RegRect. Saving rectangles in registers.
-* Configurations: RegConfig. Saving window configurations in registers.
-* Numbers: RegNumbers. Numbers in registers.
-* Files: RegFiles. File names in registers.
-* Bookmarks:: Bookmarks are like registers, but persistent.
+* Position Registers:: Saving positions in registers.
+* Text Registers:: Saving text in registers.
+* Rectangle Registers:: Saving rectangles in registers.
+* Configuration Registers:: Saving window configurations in registers.
+* Number Registers:: Numbers in registers.
+* File Registers:: File names in registers.
+* Bookmarks:: Bookmarks are like registers, but persistent.
@end menu
-@node RegPos
+@node Position Registers
@section Saving Positions in Registers
@cindex saving position in a register
@@ -76,7 +76,7 @@ was saved from has been killed, @kbd{C-x r j} tries to create the buffer
again by visiting the same file. Of course, this works only for buffers
that were visiting files.
-@node RegText
+@node Text Registers
@section Saving Text in Registers
@cindex saving text in a register
@@ -123,7 +123,7 @@ the region text to the text in the register instead of
after, but with a numeric argument (@kbd{C-u}) it puts point after the
text and the mark before.
-@node RegRect
+@node Rectangle Registers
@section Saving Rectangles in Registers
@cindex saving rectangle in a register
@@ -150,7 +150,7 @@ one.
See also the command @code{sort-columns}, which you can think of
as sorting a rectangle. @xref{Sorting}.
-@node RegConfig
+@node Configuration Registers
@section Saving Window Configurations in Registers
@cindex saving window configuration in a register
@@ -178,7 +178,7 @@ restore a frame configuration, any existing frames not included in the
configuration become invisible. If you wish to delete these frames
instead, use @kbd{C-u C-x r j @var{r}}.
-@node RegNumbers
+@node Number Registers
@section Keeping Numbers in Registers
@cindex saving number in a register
@@ -205,7 +205,7 @@ register contents into the buffer. @kbd{C-x r +} with no numeric
argument increments the register value by 1; @kbd{C-x r n} with no
numeric argument stores zero in the register.
-@node RegFiles
+@node File Registers
@section Keeping File Names in Registers
@cindex saving file name in a register