summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-10-11 17:18:51 +0000
committerRichard M. Stallman <rms@gnu.org>1995-10-11 17:18:51 +0000
commite28a385d7af78d6882c52c066b9ae4f00c67eaa2 (patch)
tree3c5600ba81939b614cea86852349e728b31b7918
parent316b2cc90243cab77774b2fb3bd511d612eba058 (diff)
downloademacs-e28a385d7af78d6882c52c066b9ae4f00c67eaa2.tar.gz
(command_loop_1): Access display tables as char-tables.
-rw-r--r--src/keyboard.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 23ab91f9745..019b0d2597b 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1256,7 +1256,7 @@ command_loop_1 ()
do them directly. */
if (EQ (this_command, Qforward_char) && PT < ZV)
{
- struct Lisp_Vector *dp
+ struct Lisp_Char_Table *dp
= window_display_table (XWINDOW (selected_window));
lose = FETCH_CHAR (PT);
SET_PT (PT + 1);
@@ -1279,7 +1279,7 @@ command_loop_1 ()
}
else if (EQ (this_command, Qbackward_char) && PT > BEGV)
{
- struct Lisp_Vector *dp
+ struct Lisp_Char_Table *dp
= window_display_table (XWINDOW (selected_window));
SET_PT (PT - 1);
lose = FETCH_CHAR (PT);
@@ -1335,7 +1335,7 @@ command_loop_1 ()
if (!lose
&& (PT == ZV || FETCH_CHAR (PT) == '\n'))
{
- struct Lisp_Vector *dp
+ struct Lisp_Char_Table *dp
= window_display_table (XWINDOW (selected_window));
int lose = c;