/[emacs]/emacs/src/keyboard.c
ViewVC logotype

Diff of /emacs/src/keyboard.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.659 by kfstorm, Sat Feb 23 22:02:18 2002 UTC revision 1.659.2.1 by handa, Fri Mar 1 01:43:03 2002 UTC
# Line 32  Boston, MA 02111-1307, USA.  */ Line 32  Boston, MA 02111-1307, USA.  */
32  #include "window.h"  #include "window.h"
33  #include "commands.h"  #include "commands.h"
34  #include "buffer.h"  #include "buffer.h"
35  #include "charset.h"  #include "character.h"
36  #include "disptab.h"  #include "disptab.h"
37  #include "dispextern.h"  #include "dispextern.h"
38  #include "syntax.h"  #include "syntax.h"
# Line 1553  command_loop_1 () Line 1553  command_loop_1 ()
1553                         : (lose >= 0x20 && lose < 0x7f))                         : (lose >= 0x20 && lose < 0x7f))
1554                        /* To extract the case of continuation on                        /* To extract the case of continuation on
1555                           wide-column characters.  */                           wide-column characters.  */
1556                        && (WIDTH_BY_CHAR_HEAD (FETCH_BYTE (PT_BYTE)) == 1)                        && ASCII_BYTE_P (lose)
1557                        && (XFASTINT (XWINDOW (selected_window)->last_modified)                        && (XFASTINT (XWINDOW (selected_window)->last_modified)
1558                            >= MODIFF)                            >= MODIFF)
1559                        && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)                        && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
# Line 2699  read_char (commandflag, nmaps, maps, pre Line 2699  read_char (commandflag, nmaps, maps, pre
2699             && XSTRING (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))             && XSTRING (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2700            || (VECTORP (Vkeyboard_translate_table)            || (VECTORP (Vkeyboard_translate_table)
2701                && XVECTOR (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))                && XVECTOR (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2702            || (CHAR_TABLE_P (Vkeyboard_translate_table)            || CHAR_TABLE_P (Vkeyboard_translate_table))
               && CHAR_TABLE_ORDINARY_SLOTS > (unsigned) XFASTINT (c)))  
2703          {          {
2704            Lisp_Object d;            Lisp_Object d;
2705            d = Faref (Vkeyboard_translate_table, c);            d = Faref (Vkeyboard_translate_table, c);

Legend:
Removed from v.1.659  
changed lines
  Added in v.1.659.2.1

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26