Mercurial > emacs
changeset 5352:6b91471d9f0f
(command_loop_1): Test of whether disp tab elt
was a vector was backwards.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 25 Dec 1993 02:31:25 +0000 |
parents | 8e1536744d7e |
children | 6389ed5b45ac |
files | src/keyboard.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Sat Dec 25 02:17:41 1993 +0000 +++ b/src/keyboard.c Sat Dec 25 02:31:25 1993 +0000 @@ -1065,7 +1065,7 @@ lose = FETCH_CHAR (point); SET_PT (point + 1); if ((dp - ? (XTYPE (DISP_CHAR_VECTOR (dp, lose)) != Lisp_Vector + ? (VECTORP (DISP_CHAR_VECTOR (dp, lose)) && XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1) : (lose >= 0x20 && lose < 0x7f)) && (XFASTINT (XWINDOW (selected_window)->last_modified)