Check-in [48c00d0bd3]
Not logged in
Overview

SHA1 Hash:48c00d0bd3ade310d798fbaf7a9ed152d2450748
Date: 2008-08-14 05:05:41
User: bharder
Comment:Oops... merge typos fix w/ bdac9f7238, commited at nearly same time.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/checkin.c from [b72cce6453] to [ede786a568].

@@ -250,11 +250,22 @@
   }
   if( zEditor==0 ){
     zEditor = getenv("EDITOR");
   }
   if( zEditor==0 ){
+#ifdef __MINGW32__
+>>>>>>>> BEGIN MERGE CONFLICT <<<<<<<<
+#ifdef __MINGW32__
+    zEditor = "notepad";
+    zEditor = "notepad";
+#else
+>>>>>>>>> END MERGE CONFLICT <<<<<<<<<
+    zEditor = "ed";
+>>>>>>>> BEGIN MERGE CONFLICT <<<<<<<<
     zEditor = "ed";
+#endif
+>>>>>>>>> END MERGE CONFLICT <<<<<<<<<
   }
   zFile = db_text(0, "SELECT '%qci-comment-' || hex(randomblob(6)) || '.txt'",
                    g.zLocalRoot);
 #ifdef __MINGW32__
   blob_add_cr(&text);
@@ -329,11 +340,14 @@
 **
 ** Usage: %fossil commit ?-m COMMENT? ?--nosign? ?FILE...?
 **
 ** Create a new version containing all of the changes in the current
 ** checkout.  You will be prompted to enter a check-in comment unless
-** the "-m" option is used to specify a command line.  You will be
+>>>>>>>> BEGIN MERGE CONFLICT <<<<<<<<
+** checkout.  You will be prompted to enter a check-in comment unless
+** the "-m" option is used to specify a comment line.  You will be
+>>>>>>>>> END MERGE CONFLICT <<<<<<<<<
 ** prompted for your GPG passphrase in order to sign the new manifest
 ** unless the "--nosign" options is used.  All files that have
 ** changed will be committed unless some subset of files is specified
 ** on the command line.
 */
@@ -593,11 +607,14 @@
 /*
 ** COMMAND: test-import-manifest
 **
 ** Usage: %fossil test-import-manifest DATE COMMENT ?-p PARENT_RECORDID?... ?-f (FILE_RECORDID PATH)?...
 **
-** Create a new version containing containing the specified file
+>>>>>>>> BEGIN MERGE CONFLICT <<<<<<<<
+**
+** Create a new version containing the specified file
+>>>>>>>>> END MERGE CONFLICT <<<<<<<<<
 ** revisions (if any), and child of the given PARENT version.
 */
 void import_manifest_cmd(void){
   const char* zDate;    /* argument - timestamp, as seconds since epoch (int) */
   const char* zComment; /* argument - manifest comment */