changeset 22279:e50e9ea93700

(command_loop_1): In shortcuts for forward-char etc,, use FETCH_CHAR not FETCH_BYTE.
author Richard M. Stallman <rms@gnu.org>
date Thu, 28 May 1998 18:10:20 +0000
parents 7a9f75f6e065
children e179bf1418b7
files src/keyboard.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/keyboard.c	Thu May 28 05:14:17 1998 +0000
+++ b/src/keyboard.c	Thu May 28 18:10:20 1998 +0000
@@ -1306,7 +1306,7 @@
 		{
                   struct Lisp_Char_Table *dp
 		    = window_display_table (XWINDOW (selected_window));
-		  lose = FETCH_BYTE (PT_BYTE);
+		  lose = FETCH_CHAR (PT_BYTE);
 		  SET_PT (PT + 1);
 		  if ((dp
 		       ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
@@ -1336,7 +1336,7 @@
                   struct Lisp_Char_Table *dp
 		    = window_display_table (XWINDOW (selected_window));
 		  SET_PT (PT - 1);
-		  lose = FETCH_BYTE (PT_BYTE);
+		  lose = FETCH_CHAR (PT_BYTE);
 		  if ((dp
 		       ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
 			  ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1