changeset 702:a1099c50a622

Fix default values and add interactive setting to [ui] section of hgrc docs. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Fix default values and add interactive setting to [ui] section of hgrc docs. manifest hash: 211eea218970b45b2a0cdc822d5b6610a89ffbd7 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFC1pE8W7P1GVgWeRoRAof+AJ4mpm3DCRqh+9To3Gn4bpC7UGcTnQCfVIWN 5VT9pqdP6/06tH8nYgW55f4= =uNyy -----END PGP SIGNATURE-----
author Thomas Arendsen Hein <thomas@intevation.de>
date Thu, 14 Jul 2005 17:22:20 +0100
parents 80ed193efff7
children fb6f85ecc863
files doc/hgrc.5.txt
diffstat 1 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/doc/hgrc.5.txt	Thu Jul 14 16:57:01 2005 +0100
+++ b/doc/hgrc.5.txt	Thu Jul 14 17:22:20 2005 +0100
@@ -93,22 +93,22 @@
 ui::
   User interface controls.
   debug;;
-    Print debugging information.  True or False.  Default is True.
+    Print debugging information.  True or False.  Default is False.
   editor;;
-    The editor to use during a commit.  Default is "vi".
+    The editor to use during a commit.  Default is $EDITOR or "vi".
+  interactive;;
+    Allow to prompt the user.  True or False.  Default is True.
   merge;;
     The conflict resolution program to use during a manual merge.
-    Default is "hgeditor".
+    Default is "hgmerge".
   quiet;;
-    Reduce the amount of output printed.  True or False.  Default is
-    False.
+    Reduce the amount of output printed.  True or False.  Default is False.
   username;;
     The committer of a changeset created when running "commit".
     Typically a person's name and email address, e.g. "Fred Widget
-    <fred@example.com>".  Default is username@hostname.
+    <fred@example.com>".  Default is $EMAIL or username@hostname.
   verbose;;
-    Increase the amount of output printed.  True or False.  Default is
-    False.
+    Increase the amount of output printed.  True or False.  Default is False.
 
 AUTHOR
 ------