diff options
| author | Eli Zaretskii | 2016-12-08 20:47:27 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-12-08 20:47:27 +0200 |
| commit | 54f52a1390c394f42203f39d0b4d73318203e092 (patch) | |
| tree | fd27e055fc520db0997da2911e0bf1de220e9045 /src/thread.c | |
| parent | 128cacda1c79983f0b64773afc029bc757cfb7b8 (diff) | |
| download | emacs-54f52a1390c394f42203f39d0b4d73318203e092.tar.gz emacs-54f52a1390c394f42203f39d0b4d73318203e092.zip | |
Fix compilation warnings
* src/thread.c (Fmake_thread): Call emacs_abort, to avoid
compilation warning.
Diffstat (limited to 'src/thread.c')
| -rw-r--r-- | src/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.c b/src/thread.c index 11d55a5caef..dda262984c0 100644 --- a/src/thread.c +++ b/src/thread.c | |||
| @@ -689,7 +689,7 @@ If NAME is given, it names the new thread. */) | |||
| 689 | 689 | ||
| 690 | /* Can't start a thread in temacs. */ | 690 | /* Can't start a thread in temacs. */ |
| 691 | if (!initialized) | 691 | if (!initialized) |
| 692 | abort (); | 692 | emacs_abort (); |
| 693 | 693 | ||
| 694 | if (!NILP (name)) | 694 | if (!NILP (name)) |
| 695 | CHECK_STRING (name); | 695 | CHECK_STRING (name); |