Mercurial > emacs
changeset 46431:db28853d1e82
* process.c (status_message): Use SSET.
author | Ken Raeburn <raeburn@raeburn.org> |
---|---|
date | Tue, 16 Jul 2002 15:49:48 +0000 |
parents | 2576e1ad86de |
children | a4697b0a338e |
files | src/process.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/process.c Tue Jul 16 15:49:44 2002 +0000 +++ b/src/process.c Tue Jul 16 15:49:48 2002 +0000 @@ -419,7 +419,7 @@ signame = "unknown"; string = build_string (signame); string2 = build_string (coredump ? " (core dumped)\n" : "\n"); - SREF (string, 0) = DOWNCASE (SREF (string, 0)); + SSET (string, 0, DOWNCASE (SREF (string, 0))); return concat2 (string, string2); } else if (EQ (symbol, Qexit))