diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-10-10 21:33:12 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-10-10 21:33:12 -0700 |
commit | fd2f90cf5c6a15610aa1e17e73d6d8a5f8cb1999 (patch) | |
tree | 4dd6ef029229a8db21e357e7d9465e1927b2d448 /src | |
parent | c1af190b72f9268dd23c13d43962a64c78aa4174 (diff) | |
download | emacs-fd2f90cf5c6a15610aa1e17e73d6d8a5f8cb1999.tar.gz emacs-fd2f90cf5c6a15610aa1e17e73d6d8a5f8cb1999.tar.bz2 emacs-fd2f90cf5c6a15610aa1e17e73d6d8a5f8cb1999.zip |
* marker.c (cached_modiff): EMACS_INT, not int.
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 2 | ||||
-rw-r--r-- | src/marker.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 12b14625a91..0b274598986 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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. diff --git a/src/marker.c b/src/marker.c index e01647bdb2a..2e2aba579db 100644 --- a/src/marker.c +++ b/src/marker.c @@ -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 |