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