]> git.eshelyaron.com Git - emacs.git/commitdiff
(command_loop_1): Access display tables as char-tables.
authorRichard M. Stallman <rms@gnu.org>
Wed, 11 Oct 1995 17:18:51 +0000 (17:18 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 11 Oct 1995 17:18:51 +0000 (17:18 +0000)
src/keyboard.c

index 23ab91f9745cffb250edb44a13b2563f291a7517..019b0d2597b0ac604cfb8ab58d2c11ad3897a091 100644 (file)
@@ -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;