]> git.eshelyaron.com Git - emacs.git/commitdiff
* w32fns.c (validate_x_resource_name): Use SSET.
authorKen Raeburn <raeburn@raeburn.org>
Tue, 16 Jul 2002 15:49:59 +0000 (15:49 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Tue, 16 Jul 2002 15:49:59 +0000 (15:49 +0000)
src/w32fns.c

index ea865a7a0ae57538bb9afbdbf42ccdb277f25fb3..9e1602e8d6c808093fb93665eec561e373bd8b3b 100644 (file)
@@ -3049,7 +3049,7 @@ validate_x_resource_name ()
             || (c >= 'A' && c <= 'Z')
             || (c >= '0' && c <= '9')
             || c == '-' || c == '_'))
-       SREF (new, i) = '_';
+       SSET (new, i, '_');
     }
 }