From: Ken Raeburn Date: Tue, 16 Jul 2002 15:49:59 +0000 (+0000) Subject: * w32fns.c (validate_x_resource_name): Use SSET. X-Git-Tag: ttn-vms-21-2-B4~14081 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7960d5abc2d6b6ea3aaf3f0113febc05aaba9671;p=emacs.git * w32fns.c (validate_x_resource_name): Use SSET. --- diff --git a/src/w32fns.c b/src/w32fns.c index ea865a7a0ae..9e1602e8d6c 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -3049,7 +3049,7 @@ validate_x_resource_name () || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '-' || c == '_')) - SREF (new, i) = '_'; + SSET (new, i, '_'); } }