* xfns.c (validate_x_resource_name): Use SSET.

This commit is contained in:
Ken Raeburn 2002-07-16 15:50:04 +00:00
parent 7960d5abc2
commit b06a00fb6d

View file

@ -2805,7 +2805,7 @@ validate_x_resource_name ()
|| (c >= 'A' && c <= 'Z')
|| (c >= '0' && c <= '9')
|| c == '-' || c == '_'))
SREF (new, i) = '_';
SSET (new, i, '_');
}
}