diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-03-04 23:41:00 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-03-04 23:41:00 +0000 |
commit | 31ade731e6dc0c0a4c124f93a1f0018e245a27a2 (patch) | |
tree | 4ff60d1528615a7a75b53df5043ab0753c5eca51 /src/xselect.c | |
parent | c01d0677abc9f0f2645e90ed1e23619c008e90a2 (diff) | |
download | emacs-31ade731e6dc0c0a4c124f93a1f0018e245a27a2.tar.gz |
Change defvar_int def and vars to use EMACS_INT instead of just int.
Diffstat (limited to 'src/xselect.c')
-rw-r--r-- | src/xselect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xselect.c b/src/xselect.c index d21a978060f..03580b782fe 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -154,7 +154,7 @@ static Lisp_Object Vselection_converter_alist; /* If the selection owner takes too long to reply to a selection request, we give up on it. This is in milliseconds (0 = no timeout.) */ -static int x_selection_timeout; +static EMACS_INT x_selection_timeout; /* Utility functions */ |