]> code.delx.au - gnu-emacs/commitdiff
Doc fixes
authorXue Fuqiao <xfq.free@gmail.com>
Wed, 8 Jul 2015 11:17:38 +0000 (19:17 +0800)
committerXue Fuqiao <xfq.free@gmail.com>
Wed, 8 Jul 2015 11:17:38 +0000 (19:17 +0800)
* doc/emacs/files.texi (Diff Mode): Fix the description of `C-c
C-w' in Diff mode.

* doc/emacs/arevert-xtra.texi (Auto Reverting the Buffer Menu):
Add a cross reference.

; * doc/emacs/search.texi (Regexp Backslash): Minor fix.

doc/emacs/arevert-xtra.texi
doc/emacs/files.texi
doc/emacs/fixit.texi
doc/emacs/search.texi

index 32b54637c72c7a92d37720ae063d6abe7cd3a971..9d356108677d555df44d9e0e1b2a875a7f0aafa3 100644 (file)
@@ -47,9 +47,10 @@ explained in the corresponding sections.
 @subsection Auto Reverting the Buffer Menu
 
 If auto-reverting of non-file buffers is enabled, the Buffer Menu
-automatically reverts every @code{auto-revert-interval} seconds,
-whether there is a need for it or not.  (It would probably take longer
-to check whether there is a need than to actually revert.)
+(@pxref{Several Buffers}) automatically reverts every
+@code{auto-revert-interval} seconds, whether there is a need for it or
+not.  (It would probably take longer to check whether there is a need
+than to actually revert.)
 
 If the Buffer Menu inappropriately gets marked modified, just revert
 it manually using @kbd{g} and auto-reverting will resume.  However, if
index 3a281d223b3e984e44500a459370ec9be5134971..e5c5e1beaaccced0d7cd507ce45c3dfdd2289f28 100644 (file)
@@ -1476,9 +1476,9 @@ unified format to context format.  When the mark is active, convert
 only the text within the region.
 
 @item C-c C-w
-@findex diff-refine-hunk
-Refine the current hunk so that it disregards changes in whitespace
-(@code{diff-refine-hunk}).
+@findex diff-ignore-whitespace-hunk
+Re-diff the current hunk, disregarding changes in whitespace
+(@code{diff-ignore-whitespace-hunk}).
 
 @item C-x 4 A
 @findex diff-add-change-log-entries-other-window
index 9c3f36a58f079775b4426f0601f18077577ee88b..0888f8a742cd75d8aa8e05739e7d18ea8dca5cfd 100644 (file)
@@ -78,6 +78,7 @@ the undo command.
 previous undo commands, use @kbd{M-x undo-only}.  This is like
 @code{undo}, but will not redo changes you have just undone.
 
+@c What about @kbd{M-x revert-buffer}? --xfq
   If you notice that a buffer has been modified accidentally, the
 easiest way to recover is to type @kbd{C-/} repeatedly until the stars
 disappear from the front of the mode line (@pxref{Mode Line}).
index 247033d4353fe13e687701a93ee25ea831dcd8a3..3562f8a2cc41870d31799ce8e18bdb197858fd98 100644 (file)
@@ -898,10 +898,10 @@ a conflict, you can use a ``shy'' group.
 @item \(?: @dots{} \)
 @cindex shy group, in regexp
 specifies a ``shy'' group that does not record the matched substring;
-you can't refer back to it with @samp{\@var{d}}.  This is useful
-in mechanically combining regular expressions, so that you
-can add groups for syntactic purposes without interfering with
-the numbering of the groups that are meant to be referred to.
+you can't refer back to it with @samp{\@var{d}} (see below).  This is
+useful in mechanically combining regular expressions, so that you can
+add groups for syntactic purposes without interfering with the
+numbering of the groups that are meant to be referred to.
 
 @item \@var{d}
 @cindex back reference, in regexp