mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-21 18:23:59 +00:00
* search.c (matcher_overflow): Mark as NO_RETURN.
* xterm.c (x_connection_closed): Likewise. * sysdep.c (croak): Likewise. * sound.c (sound_perror, alsa_sound_perror): Likewise. * lisp.h (die, nsberror): Likewise.
This commit is contained in:
parent
3fc7a865c4
commit
01d0930532
@ -1,3 +1,15 @@
|
||||
2006-05-29 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
||||
* search.c (matcher_overflow): Mark as NO_RETURN.
|
||||
|
||||
* xterm.c (x_connection_closed): Likewise.
|
||||
|
||||
* sysdep.c (croak): Likewise.
|
||||
|
||||
* sound.c (sound_perror, alsa_sound_perror): Likewise.
|
||||
|
||||
* lisp.h (die, nsberror): Likewise.
|
||||
|
||||
2006-05-29 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
|
||||
|
||||
* sound.c (alsa_open, alsa_configure, alsa_write): Move
|
||||
|
@ -80,7 +80,7 @@ Boston, MA 02110-1301, USA. */
|
||||
|
||||
/* Extra internal type checking? */
|
||||
extern int suppress_checking;
|
||||
extern void die P_((const char *, const char *, int));
|
||||
extern void die P_((const char *, const char *, int)) NO_RETURN;
|
||||
|
||||
#ifdef ENABLE_CHECKING
|
||||
|
||||
@ -2780,7 +2780,7 @@ extern void set_time_zone_rule P_ ((char *));
|
||||
|
||||
/* defined in buffer.c */
|
||||
extern int mouse_face_overlay_overlaps P_ ((Lisp_Object));
|
||||
extern void nsberror P_ ((Lisp_Object));
|
||||
extern void nsberror P_ ((Lisp_Object)) NO_RETURN;
|
||||
extern char *no_switch_window P_ ((Lisp_Object window));
|
||||
EXFUN (Fset_buffer_multibyte, 1);
|
||||
EXFUN (Foverlay_start, 1);
|
||||
|
@ -90,6 +90,7 @@ static void save_search_regs ();
|
||||
static int simple_search ();
|
||||
static int boyer_moore ();
|
||||
static int search_buffer ();
|
||||
static void matcher_overflow () NO_RETURN;
|
||||
|
||||
static void
|
||||
matcher_overflow ()
|
||||
|
@ -113,7 +113,8 @@ enum sound_attr
|
||||
SOUND_ATTR_SENTINEL
|
||||
};
|
||||
|
||||
static void sound_perror P_ ((char *));
|
||||
static void alsa_sound_perror P_ ((char *, int)) NO_RETURN;
|
||||
static void sound_perror P_ ((char *)) NO_RETURN;
|
||||
static void sound_warning P_ ((char *));
|
||||
static int parse_sound P_ ((Lisp_Object, Lisp_Object *));
|
||||
|
||||
|
@ -244,7 +244,7 @@ int emacs_ospeed;
|
||||
under VMS, we place the input channel number here. */
|
||||
int input_fd;
|
||||
|
||||
void croak P_ ((char *));
|
||||
void croak P_ ((char *)) NO_RETURN;
|
||||
|
||||
#ifdef AIXHFT
|
||||
void hft_init ();
|
||||
|
@ -357,6 +357,7 @@ static void x_check_fullscreen P_ ((struct frame *));
|
||||
static void x_check_expected_move P_ ((struct frame *));
|
||||
static int handle_one_xevent P_ ((struct x_display_info *, XEvent *,
|
||||
int *, struct input_event *));
|
||||
static SIGTYPE x_connection_closed P_ ((Display *, char *));
|
||||
|
||||
|
||||
/* Flush display of frame F, or of all frames if F is null. */
|
||||
|
Loading…
Reference in New Issue
Block a user