Mercurial > emacs
diff src/sysdep.c @ 18613:614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Fri, 04 Jul 1997 20:44:52 +0000 |
| parents | 9f1bc5e1e4a8 |
| children | 42cf8e9273ee |
line wrap: on
line diff
--- a/src/sysdep.c Fri Jul 04 20:43:49 1997 +0000 +++ b/src/sysdep.c Fri Jul 04 20:44:52 1997 +0000 @@ -1283,7 +1283,7 @@ tty = old_tty; #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS) - Vtty_erase_char = old_tty.main.c_cc[VERASE]; + XSETINT (Vtty_erase_char, old_tty.main.c_cc[VERASE]); #ifdef DGUX /* This allows meta to be sent on 8th bit. */
