1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

Avoid some more compiler warnings.

(byte_char_debug_check): Return void.
This commit is contained in:
Gerd Moellmann 2000-09-21 20:55:56 +00:00
parent 6bbd7a2959
commit 80d26f99bb
2 changed files with 10 additions and 1 deletions

View file

@ -1,5 +1,12 @@
2000-09-21 Gerd Moellmann <gerd@gnu.org>
* window.c, term.c, xmenu.c, xrdb.c, emacs.c, macros.c,
* keymap.c, insdel.c, marker.c, minibuf.c, fileio.c, dired.c,
* indent.c, search.c, alloc.c, data.c: Avoid some more compiler
warnings.
* marker.c (byte_char_debug_check): Return void.
* xfns.c (Fx_create_frame): Set default frame parameter value
for tool-bar-lines to 1.

View file

@ -32,6 +32,8 @@ static int cached_bytepos;
static struct buffer *cached_buffer;
static int cached_modiff;
static void byte_char_debug_check P_ ((struct buffer *, int, int));
/* Nonzero means enable debugging checks on byte/char correspondences. */
static int byte_debug_flag;
@ -97,7 +99,7 @@ clear_charpos_cache (b)
} \
}
int
static void
byte_char_debug_check (b, charpos, bytepos)
struct buffer *b;
int charpos, bytepos;