diff options
author | Ken Raeburn <raeburn@raeburn.org> | 2002-07-16 15:49:44 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@raeburn.org> | 2002-07-16 15:49:44 +0000 |
commit | 96fb177ac64287947330a99ebeb345ab8aad2ebe (patch) | |
tree | d67bf36247210fe7b14557cf407011264d6c3c52 /src/macfns.c | |
parent | a1c89c0a12b0c7e516e8b87253f1bb160795efd6 (diff) | |
download | emacs-96fb177ac64287947330a99ebeb345ab8aad2ebe.tar.gz |
* macfns.c (validate_x_resource_name): Use SSET.
Diffstat (limited to 'src/macfns.c')
-rw-r--r-- | src/macfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, '_'); } } |