From: Ken Raeburn Date: Tue, 16 Jul 2002 15:50:04 +0000 (+0000) Subject: * xfns.c (validate_x_resource_name): Use SSET. X-Git-Tag: ttn-vms-21-2-B4~14080 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b06a00fb6d494cfaf24199bcb7d0a95d5ce2efeb;p=emacs.git * xfns.c (validate_x_resource_name): Use SSET. --- diff --git a/src/xfns.c b/src/xfns.c index 2b84c6d0376..4f23af432c8 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -2805,7 +2805,7 @@ validate_x_resource_name () || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '-' || c == '_')) - SREF (new, i) = '_'; + SSET (new, i, '_'); } }