diff options
| author | Richard M. Stallman | 1993-03-11 07:54:22 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-03-11 07:54:22 +0000 |
| commit | 06ddfb244197f4cc91c2267d1b9002aa7fbe3013 (patch) | |
| tree | 4c12e1c025d0c0d384e5c056bce85a7ed1f472b2 /src | |
| parent | cb470ab168cc8f85aa232977b101c34aead938c6 (diff) | |
| download | emacs-06ddfb244197f4cc91c2267d1b9002aa7fbe3013.tar.gz emacs-06ddfb244197f4cc91c2267d1b9002aa7fbe3013.zip | |
(command_loop_1): Typo in last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 46ad5226922..0f5953632b1 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -974,7 +974,7 @@ command_loop_1 () | |||
| 974 | SET_PT (point + 1); | 974 | SET_PT (point + 1); |
| 975 | if ((dp | 975 | if ((dp |
| 976 | ? (XTYPE (DISP_CHAR_VECTOR (dp, lose)) != Lisp_Vector | 976 | ? (XTYPE (DISP_CHAR_VECTOR (dp, lose)) != Lisp_Vector |
| 977 | XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1) | 977 | && XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1) |
| 978 | : (lose >= 0x20 && lose < 0x7f)) | 978 | : (lose >= 0x20 && lose < 0x7f)) |
| 979 | && (XFASTINT (XWINDOW (selected_window)->last_modified) | 979 | && (XFASTINT (XWINDOW (selected_window)->last_modified) |
| 980 | >= MODIFF) | 980 | >= MODIFF) |
| @@ -995,7 +995,7 @@ command_loop_1 () | |||
| 995 | lose = FETCH_CHAR (point); | 995 | lose = FETCH_CHAR (point); |
| 996 | if ((dp | 996 | if ((dp |
| 997 | ? (XTYPE (DISP_CHAR_VECTOR (dp, lose)) != Lisp_Vector | 997 | ? (XTYPE (DISP_CHAR_VECTOR (dp, lose)) != Lisp_Vector |
| 998 | XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1) | 998 | && XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1) |
| 999 | : (lose >= 0x20 && lose < 0x7f)) | 999 | : (lose >= 0x20 && lose < 0x7f)) |
| 1000 | && (XFASTINT (XWINDOW (selected_window)->last_modified) | 1000 | && (XFASTINT (XWINDOW (selected_window)->last_modified) |
| 1001 | >= MODIFF) | 1001 | >= MODIFF) |