diff options
| author | Ken Raeburn | 2002-07-16 15:49:48 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-07-16 15:49:48 +0000 |
| commit | a814cc69c6f2b7e64ea147c368c23bb513306903 (patch) | |
| tree | 9bd82abfeb78a95ea6f09c3a44bf52f5da6c1ba5 /src/process.c | |
| parent | 96fb177ac64287947330a99ebeb345ab8aad2ebe (diff) | |
| download | emacs-a814cc69c6f2b7e64ea147c368c23bb513306903.tar.gz emacs-a814cc69c6f2b7e64ea147c368c23bb513306903.zip | |
* process.c (status_message): Use SSET.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 3554aa2f9cb..c4d95c6074f 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -419,7 +419,7 @@ status_message (status) | |||
| 419 | signame = "unknown"; | 419 | signame = "unknown"; |
| 420 | string = build_string (signame); | 420 | string = build_string (signame); |
| 421 | string2 = build_string (coredump ? " (core dumped)\n" : "\n"); | 421 | string2 = build_string (coredump ? " (core dumped)\n" : "\n"); |
| 422 | SREF (string, 0) = DOWNCASE (SREF (string, 0)); | 422 | SSET (string, 0, DOWNCASE (SREF (string, 0))); |
| 423 | return concat2 (string, string2); | 423 | return concat2 (string, string2); |
| 424 | } | 424 | } |
| 425 | else if (EQ (symbol, Qexit)) | 425 | else if (EQ (symbol, Qexit)) |