Hi,

Minor things.

BR,
Johan




Index: src/setup.c
==================================================================
--- src/setup.c
+++ src/setup.c
@@ -1385,19 +1385,10 @@
       "1", "HH:MM:SS",
       "2", "YYYY-MM-DD HH:MM",
       "3", "YYMMDD HH:MM",
       "4", "(off)"
   };
-  static const char *const azCommentFormats[] = {
-      "0", "[hash] comment (details)",
-      "1", "[hash] comment",
-      "2", "comment [hash] (details)",
-      "3", "comment [hash]",
-      "4", "comment (details)",
-      "5", "comment-only",
-      "12","comment | details",
-  };
   login_check_credentials();
   if( !g.perm.Setup ){
     login_needed(0);
     return;
   }

Index: www/style.wiki
==================================================================
--- www/style.wiki
+++ www/style.wiki
@@ -20,11 +20,11 @@

   <li>  The tone of comments is professional and courteous.  Comments
        contain no profanity, obscenity, or innuendo.

   <li>  All C-code conforms to ANSI C-89.
-        Three well-defined existing exceptions are:
+        Four well-defined existing exceptions are:
     <ol type="a">

       <li>  -Wno-overlength-strings: The Fossil build system converts
(some of the) source code comments
         into strings, which may exceed the 509 character limit defined by ANSI.
         (example: bld/page_index.h)
@@ -35,10 +35,14 @@

       <li>  alloca(): By default, sqlite3.c is compiled with the
-DSQLITE_USE_ALLOCA flag to use the alloca() function.
         alloca() is not considered ANSI C, and normally not
recommended due to portability issues, but
         performance and/or memory consumption improvement may be a
stronger argument in favor of its usage.
         (sqlite3.c)
+
+      <li>  The linenoise library. Counting from Fossil version 2.5
[6cf508f6a3], a newer version of linenoise is included,
+        which, in contrast to earlier versions, does not conform to ANSI C-89.
+        (linenoise.c)

     </ol>

   <li>  All comments and identifiers are in English.
_______________________________________________
fossil-dev mailing list
fossil-dev@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/fossil-dev

Reply via email to