comparison src/tooltalk.c @ 609:13e3d7ae7155

[xemacs-hg @ 2001-06-06 12:34:42 by ben] nitpicky fixes: emodules.c, tooltalk.c, process-unix.c: Fix warnings pointed out by Martin. lisp.h: Correct usage of CBufbyte. esd.c: indentation changes. bytecode.c, eval.c, fileio.c: Use CBufbyte instead of char for error/warning functions. linuxplay.c, miscplay.c, sgiplay.c, sunplay.c: Define DONT_ENCAPSULATE. (All encapsulation is removed in my pending Mule workspace.) sgiplay.c: Put back #include <audio.h> accidentally removed. Make play_sound_data return an int, like all other such functions in *play.c. sound.c: Fix up documentation of `play-sound'. sysfile.h: Don't include sys/fcntl.h, as per Martin's advice.
author ben
date Wed, 06 Jun 2001 12:34:47 +0000
parents 1c880911c386
children fdefd0186b75
comparison
equal deleted inserted replaced
608:4d7fdf497470 609:13e3d7ae7155
299 static void 299 static void
300 check_status (Tt_status st) 300 check_status (Tt_status st)
301 { 301 {
302 if (tt_is_err (st)) 302 if (tt_is_err (st))
303 { 303 {
304 Bufbyte *err; 304 CBufbyte *err;
305 305
306 EXTERNAL_TO_C_STRING (tt_status_message (st), err, Qnative); 306 EXTERNAL_TO_C_STRING (tt_status_message (st), err, Qnative);
307 signal_error (Qtooltalk_error, err, Qunbound); 307 signal_error (Qtooltalk_error, err, Qunbound);
308 } 308 }
309 } 309 }