aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-04 20:44:52 +0000
committerRichard M. Stallman1997-07-04 20:44:52 +0000
commit2e34157cd9e74150e79e0ce23236252b47fb5f1a (patch)
tree418451da8380ec73d5d46dc648c07e6ad8af845f /src/sysdep.c
parent8c239ac3ed4f636810bc08959e1318b1a6e928ba (diff)
downloademacs-2e34157cd9e74150e79e0ce23236252b47fb5f1a.tar.gz
emacs-2e34157cd9e74150e79e0ce23236252b47fb5f1a.zip
Fix bugs with inappropriate mixing of Lisp_Object with int.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 978e7f0f622..8bde434f52d 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -1283,7 +1283,7 @@ init_sys_modes ()
1283 tty = old_tty; 1283 tty = old_tty;
1284 1284
1285#if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS) 1285#if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
1286 Vtty_erase_char = old_tty.main.c_cc[VERASE]; 1286 XSETINT (Vtty_erase_char, old_tty.main.c_cc[VERASE]);
1287 1287
1288#ifdef DGUX 1288#ifdef DGUX
1289 /* This allows meta to be sent on 8th bit. */ 1289 /* This allows meta to be sent on 8th bit. */