summaryrefslogtreecommitdiff
path: root/myisam/ft_parser.c
diff options
context:
space:
mode:
authorserg@serg.mysql.com <>2002-11-26 14:19:39 +0100
committerserg@serg.mysql.com <>2002-11-26 14:19:39 +0100
commit045a5f0eadb6ff75bf0aa8b9f051be43163fdc83 (patch)
treed22a57842376bf36572f2485bcd9a01b570de969 /myisam/ft_parser.c
parenteb49d011e693893bb140d88ea31fd073df22ea8c (diff)
downloadmariadb-git-045a5f0eadb6ff75bf0aa8b9f051be43163fdc83.tar.gz
typo fixed
Diffstat (limited to 'myisam/ft_parser.c')
-rw-r--r--myisam/ft_parser.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/myisam/ft_parser.c b/myisam/ft_parser.c
index 29a48352cd6..358706a8ffa 100644
--- a/myisam/ft_parser.c
+++ b/myisam/ft_parser.c
@@ -111,7 +111,7 @@ FT_WORD * ft_linearize(TREE *wtree)
#else
#define misc_word_char(X) ((X)=='\'' || (X)=='-')
#endif
-#define word_char(s,X) (true_word_char(s,X) || misc_word_char(s,X))
+#define word_char(s,X) (true_word_char(s,X) || misc_word_char(X))
/* returns:
@@ -132,8 +132,8 @@ byte ft_get_word(byte **start, byte *end, FT_WORD *word, FTB_PARAM *param)
{
for (;doc<end;doc++)
{
- /*
- BAR TODO: discuss with Serge how to remove
+ /*
+ BAR TODO: discuss with Serge how to remove
default_charset_info correctly
*/
if (true_word_char(default_charset_info,*doc)) break;