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/termcap.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/termcap.c')
-rw-r--r-- | src/termcap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/termcap.c b/src/termcap.c index b8cf67cc2fe..b87fee48e87 100644 --- a/src/termcap.c +++ b/src/termcap.c @@ -323,7 +323,7 @@ tputs (str, nlines, outfun) register int speed; #ifdef emacs - extern int baud_rate; + extern EMACS_INT baud_rate; speed = baud_rate; /* For quite high speeds, convert to the smaller units to avoid overflow. */ |