Skip to content
Snippets Groups Projects
Commit d17bf287 authored by Per Cederqvist's avatar Per Cederqvist
Browse files

Replaced " \t" with WHITESPACE.

parent 7dceccdb
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@
#include "connections.h"
#include "send-async.h"
#include <debug.h>
#include "parser.h"
#include <parser.h>
#include "internal-connections.h"
/* From ram-cache.h. This will go away when we use regexp-matching. This is
......@@ -134,7 +134,8 @@ unique_name( const String name, Conf_no conf_no )
int n;
parse_info = parse(name, match_table, FALSE, TRUE,
s_fcrea_str(" \t"), DEFAULT_COLLAT_TAB);
s_fcrea_str(WHITESPACE),
DEFAULT_COLLAT_TAB);
if ( parse_info.no_of_matches == 0 ) /* Doesn't match any name. */
{
......@@ -158,7 +159,7 @@ unique_name( const String name, Conf_no conf_no )
/* The name matches some conference. Check if they are equal. */
name_token = tokenize(name, s_fcrea_str(" \t"));
name_token = tokenize(name, s_fcrea_str(WHITESPACE));
exact_match_found = FALSE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment