changeset 180:2ada8d065bca

Remove useless comment.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 15 Nov 2010 08:37:16 +0200
parents 8c493b5671bd
children b0a88d3835e9
files nnchat.c
diffstat 1 files changed, 0 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/nnchat.c	Mon Nov 15 08:36:45 2010 +0200
+++ b/nnchat.c	Mon Nov 15 08:37:16 2010 +0200
@@ -708,8 +708,6 @@
     return TRUE;
 }
 
-/*
-Different tab completion scenarios:
 void updateWindows(void)
 {
     if (mainWin) redrawwin(mainWin);
@@ -717,19 +715,6 @@
     if (editWin) redrawwin(editWin);
 }
 
-Line start
-"foo<tab>" ->
-    * store "foo" as pattern
-    * find match: "Foobar"
-    * replace "foo" with match
-
-"Foobar: <tab>" ->
-    * ": " -> cycle to next match
-    * "Foorulez"
-    * replace "Foobar: " with "Foorulez: "
-
-Same when completing in middle of line, but " " instead of ": ".
-*/
 BOOL performTabCompletion(nn_editbuf_t *buf)
 {
     static char *previous = NULL;