* marker.c (cached_modiff): EMACS_INT, not int.
This commit is contained in:
parent
c1af190b72
commit
fd2f90cf5c
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
* marker.c (cached_modiff): EMACS_INT, not int.
|
||||
|
||||
* w32select.c (waiting_for_input): Declare by including "keyboard.h"
|
||||
instead of having a wrong decl.
|
||||
* nsmenu.m (waiting_for_input): Remove wrong decl.
|
||||
|
|
|
@ -29,7 +29,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
static ptrdiff_t cached_charpos;
|
||||
static ptrdiff_t cached_bytepos;
|
||||
static struct buffer *cached_buffer;
|
||||
static int cached_modiff;
|
||||
static EMACS_INT cached_modiff;
|
||||
|
||||
/* Juanma Barranquero <lekktu@gmail.com> reported ~3x increased
|
||||
bootstrap time when byte_char_debug_check is enabled; so this
|
||||
|
|
Loading…
Add table
Reference in a new issue