* macfns.c (validate_x_resource_name): Use SSET.
authorKen Raeburn <raeburn@raeburn.org>
Tue, 16 Jul 2002 15:49:44 +0000 (15:49 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Tue, 16 Jul 2002 15:49:44 +0000 (15:49 +0000)
src/macfns.c

index 04cedba..2b3ed8a 100644 (file)
@@ -3114,7 +3114,7 @@ validate_x_resource_name ()
             || (c >= 'A' && c <= 'Z')
             || (c >= '0' && c <= '9')
             || c == '-' || c == '_'))
-       SREF (new, i) = '_';
+       SSET (new, i, '_');
     }
 }