Modify a comment to try to remind myself that the &-in-session-names
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Tue, 13 Nov 2001 22:39:46 +0000 (22:39 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Tue, 13 Nov 2001 22:39:46 +0000 (22:39 +0000)
hack (to create accelerators on the System menu) should have some
official status.

git-svn-id: svn://svn.tartarus.org/sgt/putty@1381 cda61777-01e9-0310-a592-d414129be87e

settings.c

index dbd745e..267b46d 100644 (file)
@@ -534,6 +534,10 @@ static int sessioncmp(const void *av, const void *bv)
        return -1;                     /* a comes first */
     if (!strcmp(b, "Default Settings"))
        return +1;                     /* b comes first */
+    /*
+     * FIXME: perhaps we should ignore the first & in determining
+     * sort order.
+     */
     return strcmp(a, b);              /* otherwise, compare normally */
 }