]> code.delx.au - gnu-emacs/commitdiff
Checked emerge-xtra.texi
authorGlenn Morris <rgm@gnu.org>
Tue, 21 Feb 2012 21:43:51 +0000 (16:43 -0500)
committerGlenn Morris <rgm@gnu.org>
Tue, 21 Feb 2012 21:43:51 +0000 (16:43 -0500)
* doc/emacs/emerge-xtra.texi (Emerge, Submodes of Emerge, Combining in Emerge):
Small fixes.
* admin/FOR-RELEASE: Related markup.

admin/FOR-RELEASE
doc/emacs/ChangeLog
doc/emacs/emerge-xtra.texi

index d1576e0e8f0714f3c2b4a9a9b75901aac6ea2b98..93bb788aec1be692f82af00ae87da6432ade7505 100644 (file)
@@ -137,7 +137,7 @@ dired-xtra.texi   rgm
 display.texi      cyd
 emacs.texi        rgm
 emacs-xtra.texi   rgm
-emerge-xtra.texi
+emerge-xtra.texi  rgm
 entering.texi     cyd
 files.texi        cyd
 fixit.texi        cyd
index 8fc6b3aca7efb5350e8dfdfe311c0b3312a57318..031d9801aaaf0d9878b0882ce2284951b015e9f2 100644 (file)
@@ -1,5 +1,8 @@
 2012-02-21  Glenn Morris  <rgm@gnu.org>
 
+       * emerge-xtra.texi (Emerge, Submodes of Emerge, Combining in Emerge):
+       Small fixes.
+
        * emacs-xtra.texi: Picture mode is no longer a chapter.
 
        * picture-xtra.texi (Basic Picture): C-a does get remapped.
index d9f0b4a2741acc5e96a4ff337f9400f727482c28..72e0b36b7040da91e0214aac64c50052eab5d068 100644 (file)
@@ -1,5 +1,5 @@
 @c This is part of the Emacs manual.
-@c Copyright (C) 2004-2012  Free Software Foundation, Inc.
+@c Copyright (C) 2004-2012 Free Software Foundation, Inc.
 @c See file emacs.texi for copying conditions.
 @c
 @c This file is included either in emacs-xtra.texi (when producing the
@@ -19,7 +19,7 @@ easier.  For other ways to compare files, see
 @ifnottex
 @ref{Comparing Files},
 @end ifnottex
-and @ref{Top, Ediff,, ediff, The Ediff Manual}.
+and @ref{Top,, Ediff, ediff, The Ediff Manual}.
 
 @menu
 * Overview of Emerge::     How to start Emerge.  Basic concepts.
@@ -155,13 +155,13 @@ which neither version is presumed ``correct.''  The mode line
 indicates Skip Prefers mode with @samp{S}.  This mode is only relevant
 when there is an ancestor.
 
-@findex emerge-auto-advance-mode
-@findex emerge-skip-prefers-mode
-  Use the command @kbd{s a} (@code{emerge-auto-advance-mode}) to set or
-clear Auto Advance mode.  Use @kbd{s s}
-(@code{emerge-skip-prefers-mode}) to set or clear Skip Prefers mode.
-These commands turn on the mode with a positive argument, turn it off
-with a negative or zero argument, and toggle the mode with no argument.
+@findex emerge-auto-advance
+@findex emerge-skip-prefers
+  Use the command @kbd{s a} (@code{emerge-auto-advance}) to set or clear
+Auto Advance mode.  Use @kbd{s s} (@code{emerge-skip-prefers}) to set or
+clear Skip Prefers mode.  These commands turn on the mode with a
+positive argument, turn it off with a negative or zero argument, and
+toggle the mode with no argument.
 
 @node State of Difference
 @subsection State of a Difference
@@ -362,9 +362,9 @@ like this:
 @example
 @group
 #ifdef NEW
-@var{version from A buffer}
-#else /* not NEW */
 @var{version from B buffer}
+#else /* not NEW */
+@var{version from A buffer}
 #endif /* not NEW */
 @end group
 @end example
@@ -380,7 +380,7 @@ produces the results shown above, looks like this:
 
 @example
 @group
-"#ifdef NEW\n%a#else /* not NEW */\n%b#endif /* not NEW */\n"
+"#ifdef NEW\n%b#else /* not NEW */\n%a#endif /* not NEW */\n"
 @end group
 @end example