Prefixes for unique identifier and parent terms were not wrapped
This commit is contained in:
parent
42a08170a8
commit
46a7f1692c
1 changed files with 2 additions and 2 deletions
|
@ -104,7 +104,7 @@ static const string cstr_syntAbs("?!#@");
|
|||
// "Q" + external udi
|
||||
static inline string make_uniterm(const string& udi)
|
||||
{
|
||||
string uniterm("Q");
|
||||
string uniterm(wrap_prefix("Q"));
|
||||
uniterm.append(udi);
|
||||
return uniterm;
|
||||
}
|
||||
|
@ -116,7 +116,7 @@ static inline string make_parentterm(const string& udi)
|
|||
// I prefer to be in possible conflict with omega than with
|
||||
// user-defined fields (Xxxx) that we also allow. "F" is currently
|
||||
// not used by omega (2008-07)
|
||||
string pterm("F");
|
||||
string pterm(wrap_prefix("F"));
|
||||
pterm.append(udi);
|
||||
return pterm;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue