diff options
| author | Eli Zaretskii | 2016-09-21 18:10:29 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2016-09-21 18:10:29 +0300 |
| commit | 73c67dda4f22a4a9736f5dc5086d086f5eb567b3 (patch) | |
| tree | b2df082cb020bd33b4fd4ccf098271a952067003 | |
| parent | ea1960bf3ccbceb955002837f17b67071789e863 (diff) | |
| download | emacs-73c67dda4f22a4a9736f5dc5086d086f5eb567b3.tar.gz emacs-73c67dda4f22a4a9736f5dc5086d086f5eb567b3.zip | |
Fix tagging of DEFUN by etags
* lib-src/etags.c (C_entries): Tag DEFUN twice: once with its C
name, and then again with its Lisp name. This restores the
ability to find Lisp primitives by their C name, which was lost
when the etags back-end was switched to a more strict search
criteria.
* test/etags/ETAGS.good_1:
* test/etags/ETAGS.good_2:
* test/etags/ETAGS.good_3:
* test/etags/ETAGS.good_4:
* test/etags/ETAGS.good_5:
* test/etags/ETAGS.good_6:
* test/etags/CTAGS.good: Adapt to the changes in etags.c wrt
tagging DEFUN.
| -rw-r--r-- | lib-src/etags.c | 18 | ||||
| -rw-r--r-- | test/etags/CTAGS.good | 45 | ||||
| -rw-r--r-- | test/etags/ETAGS.good_1 | 51 | ||||
| -rw-r--r-- | test/etags/ETAGS.good_2 | 51 | ||||
| -rw-r--r-- | test/etags/ETAGS.good_3 | 51 | ||||
| -rw-r--r-- | test/etags/ETAGS.good_4 | 51 | ||||
| -rw-r--r-- | test/etags/ETAGS.good_5 | 51 | ||||
| -rw-r--r-- | test/etags/ETAGS.good_6 | 51 |
8 files changed, 349 insertions, 20 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c index 01e230206ac..1457700fedd 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -3436,13 +3436,27 @@ C_entries (int c_ext, FILE *inf) | |||
| 3436 | int off = tokoff; | 3436 | int off = tokoff; |
| 3437 | int len = toklen; | 3437 | int len = toklen; |
| 3438 | 3438 | ||
| 3439 | /* Rewrite the tag so that emacs lisp DEFUNs | ||
| 3440 | can be found by their elisp name */ | ||
| 3441 | if (defun) | 3439 | if (defun) |
| 3442 | { | 3440 | { |
| 3443 | off += 1; | 3441 | off += 1; |
| 3444 | len -= 1; | 3442 | len -= 1; |
| 3443 | |||
| 3444 | /* First, tag it as its C name */ | ||
| 3445 | linebuffer_setlen (&token_name, toklen); | ||
| 3446 | memcpy (token_name.buffer, | ||
| 3447 | newlb.buffer + tokoff, toklen); | ||
| 3448 | token_name.buffer[toklen] = '\0'; | ||
| 3449 | token.named = true; | ||
| 3450 | token.lineno = lineno; | ||
| 3451 | token.offset = tokoff; | ||
| 3452 | token.length = toklen; | ||
| 3453 | token.line = newlb.buffer; | ||
| 3454 | token.linepos = newlinepos; | ||
| 3455 | token.valid = true; | ||
| 3456 | make_C_tag (funorvar); | ||
| 3445 | } | 3457 | } |
| 3458 | /* Rewrite the tag so that emacs lisp DEFUNs | ||
| 3459 | can be found also by their elisp name */ | ||
| 3446 | linebuffer_setlen (&token_name, len); | 3460 | linebuffer_setlen (&token_name, len); |
| 3447 | memcpy (token_name.buffer, | 3461 | memcpy (token_name.buffer, |
| 3448 | newlb.buffer + off, len); | 3462 | newlb.buffer + off, len); |
diff --git a/test/etags/CTAGS.good b/test/etags/CTAGS.good index 19bc0bef657..d392b691dcb 100644 --- a/test/etags/CTAGS.good +++ b/test/etags/CTAGS.good | |||
| @@ -602,22 +602,67 @@ FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 4766 | |||
| 602 | FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5061 | 602 | FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5061 |
| 603 | F_getit c-src/etags.c /^F_getit (FILE *inf)$/ | 603 | F_getit c-src/etags.c /^F_getit (FILE *inf)$/ |
| 604 | F_takeprec c-src/etags.c /^F_takeprec (void)$/ | 604 | F_takeprec c-src/etags.c /^F_takeprec (void)$/ |
| 605 | Fabbrev_expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/ | ||
| 606 | Fabbrev_symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/ | ||
| 607 | Fabort_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("abort-recursive-edit", Fabort_recursive_ed/ | ||
| 605 | Fails_t c-src/h.h 5 | 608 | Fails_t c-src/h.h 5 |
| 609 | Fclear_abbrev_table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, / | ||
| 610 | Fclear_this_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/ | ||
| 611 | Fcommand_error_default_function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/ | ||
| 612 | Fcurrent_idle_time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/ | ||
| 613 | Fcurrent_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("current-input-mode", Fcurrent_input_mode, / | ||
| 614 | Fdefine_abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/ | ||
| 615 | Fdefine_abbrev_table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/ | ||
| 616 | Fdefine_global_abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/ | ||
| 617 | Fdefine_mode_abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, / | ||
| 618 | Fdiscard_input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/ | ||
| 619 | Fevent_convert_list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, / | ||
| 620 | Fevent_symbol_parse_modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/ | ||
| 621 | Fexit_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/ | ||
| 622 | Fexpand_abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/ | ||
| 606 | Finalize_Cond/p ada-src/2ataspri.adb /^ procedure Finalize_Cond (Cond : in out Conditio/ | 623 | Finalize_Cond/p ada-src/2ataspri.adb /^ procedure Finalize_Cond (Cond : in out Conditio/ |
| 607 | Finalize_Cond/p ada-src/2ataspri.ads /^ procedure Finalize_Cond (Cond : in out Conditio/ | 624 | Finalize_Cond/p ada-src/2ataspri.ads /^ procedure Finalize_Cond (Cond : in out Conditio/ |
| 608 | Finalize_Lock/p ada-src/2ataspri.adb /^ procedure Finalize_Lock (L : in out Lock) is$/ | 625 | Finalize_Lock/p ada-src/2ataspri.adb /^ procedure Finalize_Lock (L : in out Lock) is$/ |
| 609 | Finalize_Lock/p ada-src/2ataspri.ads /^ procedure Finalize_Lock (L : in out Lock);$/ | 626 | Finalize_Lock/p ada-src/2ataspri.ads /^ procedure Finalize_Lock (L : in out Lock);$/ |
| 610 | Finalize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Finalize_TAS_Cell (Cell : in out TAS_/ | 627 | Finalize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Finalize_TAS_Cell (Cell : in out TAS_/ |
| 611 | Finalize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Finalize_TAS_Cell (Cell : in out TA/ | 628 | Finalize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Finalize_TAS_Cell (Cell : in out TA/ |
| 629 | Finput_pending_p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/ | ||
| 630 | Finsert_abbrev_table_description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/ | ||
| 612 | First100Chars pas-src/common.pas /^procedure First100Chars; (*($/ | 631 | First100Chars pas-src/common.pas /^procedure First100Chars; (*($/ |
| 632 | Fmake_abbrev_table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/ | ||
| 613 | Foo perl-src/kai-test.pl /^package Foo;$/ | 633 | Foo perl-src/kai-test.pl /^package Foo;$/ |
| 614 | Foo::Bar perl-src/kai-test.pl /^package Foo::Bar;$/ | 634 | Foo::Bar perl-src/kai-test.pl /^package Foo::Bar;$/ |
| 635 | Fopen_dribble_file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/ | ||
| 615 | Forth_help c-src/etags.c 573 | 636 | Forth_help c-src/etags.c 573 |
| 616 | Forth_suffixes c-src/etags.c 571 | 637 | Forth_suffixes c-src/etags.c 571 |
| 617 | Forth_words c-src/etags.c /^Forth_words (FILE *inf)$/ | 638 | Forth_words c-src/etags.c /^Forth_words (FILE *inf)$/ |
| 618 | Fortran_functions c-src/etags.c /^Fortran_functions (FILE *inf)$/ | 639 | Fortran_functions c-src/etags.c /^Fortran_functions (FILE *inf)$/ |
| 619 | Fortran_help c-src/etags.c 579 | 640 | Fortran_help c-src/etags.c 579 |
| 620 | Fortran_suffixes c-src/etags.c 577 | 641 | Fortran_suffixes c-src/etags.c 577 |
| 642 | Fposn_at_point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/ | ||
| 643 | Fposn_at_x_y c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, / | ||
| 644 | Fread_key_sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/ | ||
| 645 | Fread_key_sequence_vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/ | ||
| 646 | Frecent_keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, / | ||
| 647 | Frecursion_depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/ | ||
| 648 | Frecursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/ | ||
| 649 | Freset_this_command_lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/ | ||
| 650 | Fset_input_interrupt_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/ | ||
| 651 | Fset_input_meta_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/ | ||
| 652 | Fset_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/ | ||
| 653 | Fset_output_flow_control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/ | ||
| 654 | Fset_quit_char c-src/emacs/src/keyboard.c /^DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_/ | ||
| 655 | Fsuspend_emacs c-src/emacs/src/keyboard.c /^DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_e/ | ||
| 656 | Fthis_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/ | ||
| 657 | Fthis_command_keys_vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/ | ||
| 658 | Fthis_single_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/ | ||
| 659 | Fthis_single_command_raw_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-raw-keys", Fthis_singl/ | ||
| 660 | Ftop_level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, / | ||
| 661 | Ftrack_mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/ | ||
| 662 | Funexpand_abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/ | ||
| 663 | Fx_get_selection_internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/ | ||
| 664 | Fx_get_selection_internal c.c /^ Fx_get_selection_internal, Sx_get_selection/ | ||
| 665 | Fy_get_selection_internal c.c /^ Fy_get_selection_internal, Sy_get_selection_/ | ||
| 621 | GCALIGNED c-src/emacs/src/lisp.h 288 | 666 | GCALIGNED c-src/emacs/src/lisp.h 288 |
| 622 | GCALIGNED c-src/emacs/src/lisp.h 290 | 667 | GCALIGNED c-src/emacs/src/lisp.h 290 |
| 623 | GCALIGNMENT c-src/emacs/src/lisp.h 243 | 668 | GCALIGNMENT c-src/emacs/src/lisp.h 243 |
diff --git a/test/etags/ETAGS.good_1 b/test/etags/ETAGS.good_1 index 58661bbf600..873914474e2 100644 --- a/test/etags/ETAGS.good_1 +++ b/test/etags/ETAGS.good_1 | |||
| @@ -175,7 +175,7 @@ package body Truc.Bidule Truc.Bidule/b138,2153 | |||
| 175 | protected body Bidule Bidule/b139,2181 | 175 | protected body Bidule Bidule/b139,2181 |
| 176 | protected body Machin_T Machin_T/b146,2281 | 176 | protected body Machin_T Machin_T/b146,2281 |
| 177 | 177 | ||
| 178 | c-src/abbrev.c,1432 | 178 | c-src/abbrev.c,2072 |
| 179 | Lisp_Object Vabbrev_table_name_list;43,1424 | 179 | Lisp_Object Vabbrev_table_name_list;43,1424 |
| 180 | Lisp_Object Vglobal_abbrev_table;48,1569 | 180 | Lisp_Object Vglobal_abbrev_table;48,1569 |
| 181 | Lisp_Object Vfundamental_mode_abbrev_table;52,1680 | 181 | Lisp_Object Vfundamental_mode_abbrev_table;52,1680 |
| @@ -188,18 +188,29 @@ Lisp_Object Vlast_abbrev_text;75,2319 | |||
| 188 | int last_abbrev_point;79,2409 | 188 | int last_abbrev_point;79,2409 |
| 189 | Lisp_Object Vpre_abbrev_expand_hook,83,2482 | 189 | Lisp_Object Vpre_abbrev_expand_hook,83,2482 |
| 190 | Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;83,2482 | 190 | Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;83,2482 |
| 191 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,85,2546 | ||
| 191 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,make-abbrev-table85,2546 | 192 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,make-abbrev-table85,2546 |
| 193 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,92,2738 | ||
| 192 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,clear-abbrev-table92,2738 | 194 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,clear-abbrev-table92,2738 |
| 195 | DEFUN ("define-abbrev", Fdefine_abbrev,107,3119 | ||
| 193 | DEFUN ("define-abbrev", Fdefine_abbrev,define-abbrev107,3119 | 196 | DEFUN ("define-abbrev", Fdefine_abbrev,define-abbrev107,3119 |
| 197 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,149,4438 | ||
| 194 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,define-global-abbrev149,4438 | 198 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,define-global-abbrev149,4438 |
| 199 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,160,4809 | ||
| 195 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,define-mode-abbrev160,4809 | 200 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,define-mode-abbrev160,4809 |
| 201 | DEFUN ("abbrev-symbol", Fabbrev_symbol,174,5277 | ||
| 196 | DEFUN ("abbrev-symbol", Fabbrev_symbol,abbrev-symbol174,5277 | 202 | DEFUN ("abbrev-symbol", Fabbrev_symbol,abbrev-symbol174,5277 |
| 203 | DEFUN ("abbrev-expansion", Fabbrev_expansion,202,6241 | ||
| 197 | DEFUN ("abbrev-expansion", Fabbrev_expansion,abbrev-expansion202,6241 | 204 | DEFUN ("abbrev-expansion", Fabbrev_expansion,abbrev-expansion202,6241 |
| 205 | DEFUN ("expand-abbrev", Fexpand_abbrev,218,6756 | ||
| 198 | DEFUN ("expand-abbrev", Fexpand_abbrev,expand-abbrev218,6756 | 206 | DEFUN ("expand-abbrev", Fexpand_abbrev,expand-abbrev218,6756 |
| 207 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,389,11677 | ||
| 199 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,unexpand-abbrev389,11677 | 208 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,unexpand-abbrev389,11677 |
| 200 | write_abbrev 426,12884 | 209 | write_abbrev 426,12884 |
| 201 | describe_abbrev 445,13319 | 210 | describe_abbrev 445,13319 |
| 211 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,466,13834 | ||
| 202 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,insert-abbrev-table-description466,13834 | 212 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,insert-abbrev-table-description466,13834 |
| 213 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,506,14990 | ||
| 203 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,define-abbrev-table506,14990 | 214 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,define-abbrev-table506,14990 |
| 204 | syms_of_abbrev 540,16067 | 215 | syms_of_abbrev 540,16067 |
| 205 | 216 | ||
| @@ -828,7 +839,7 @@ typedef enum { RECC_ERROR 609,22953 | |||
| 828 | } re_wctype_t;618,23260 | 839 | } re_wctype_t;618,23260 |
| 829 | typedef int re_wchar_t;623,23387 | 840 | typedef int re_wchar_t;623,23387 |
| 830 | 841 | ||
| 831 | c-src/emacs/src/keyboard.c,13565 | 842 | c-src/emacs/src/keyboard.c,15539 |
| 832 | volatile int interrupt_input_blocked;76,1808 | 843 | volatile int interrupt_input_blocked;76,1808 |
| 833 | volatile bool pending_signals;80,1944 | 844 | volatile bool pending_signals;80,1944 |
| 834 | #define KBD_BUFFER_SIZE 82,1976 | 845 | #define KBD_BUFFER_SIZE 82,1976 |
| @@ -904,6 +915,7 @@ add_command_key 672,21582 | |||
| 904 | recursive_edit_1 697,22406 | 915 | recursive_edit_1 697,22406 |
| 905 | record_auto_save 742,23848 | 916 | record_auto_save 742,23848 |
| 906 | force_auto_save_soon 751,24016 | 917 | force_auto_save_soon 751,24016 |
| 918 | DEFUN ("recursive-edit", Frecursive_edit,759,24137 | ||
| 907 | DEFUN ("recursive-edit", Frecursive_edit,recursive-edit759,24137 | 919 | DEFUN ("recursive-edit", Frecursive_edit,recursive-edit759,24137 |
| 908 | recursive_edit_unwind 804,25747 | 920 | recursive_edit_unwind 804,25747 |
| 909 | any_kboard_state 817,26013 | 921 | any_kboard_state 817,26013 |
| @@ -918,16 +930,21 @@ record_single_kboard_state 943,29437 | |||
| 918 | restore_kboard_configuration 952,29621 | 930 | restore_kboard_configuration 952,29621 |
| 919 | cmd_error 970,30077 | 931 | cmd_error 970,30077 |
| 920 | cmd_error_internal 1024,31510 | 932 | cmd_error_internal 1024,31510 |
| 933 | DEFUN ("command-error-default-function", Fcommand_error_default_function,1043,32030 | ||
| 921 | DEFUN ("command-error-default-function", Fcommand_error_default_function,command-error-default-function1043,32030 | 934 | DEFUN ("command-error-default-function", Fcommand_error_default_function,command-error-default-function1043,32030 |
| 922 | command_loop 1094,33916 | 935 | command_loop 1094,33916 |
| 923 | command_loop_2 1134,35135 | 936 | command_loop_2 1134,35135 |
| 924 | top_level_2 1146,35339 | 937 | top_level_2 1146,35339 |
| 925 | top_level_1 1152,35417 | 938 | top_level_1 1152,35417 |
| 939 | DEFUN ("top-level", Ftop_level,1164,35787 | ||
| 926 | DEFUN ("top-level", Ftop_level,top-level1164,35787 | 940 | DEFUN ("top-level", Ftop_level,top-level1164,35787 |
| 927 | user_error 1183,36288 | 941 | user_error 1183,36288 |
| 942 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,1189,36429 | ||
| 928 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,exit-recursive-edit1189,36429 | 943 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,exit-recursive-edit1189,36429 |
| 944 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,1201,36819 | ||
| 929 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,abort-recursive-edit1201,36819 | 945 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,abort-recursive-edit1201,36819 |
| 930 | tracking_off 1216,37281 | 946 | tracking_off 1216,37281 |
| 947 | DEFUN ("internal--track-mouse", Ftrack_mouse,1234,37816 | ||
| 931 | DEFUN ("internal--track-mouse", Ftrack_mouse,track-mouse1234,37816 | 948 | DEFUN ("internal--track-mouse", Ftrack_mouse,track-mouse1234,37816 |
| 932 | bool ignore_mouse_drag_p;1256,38392 | 949 | bool ignore_mouse_drag_p;1256,38392 |
| 933 | some_mouse_moved 1259,38441 | 950 | some_mouse_moved 1259,38441 |
| @@ -991,6 +1008,7 @@ Lisp_Object pending_funcalls;4377,131172 | |||
| 991 | decode_timer 4381,131293 | 1008 | decode_timer 4381,131293 |
| 992 | timer_check_2 4414,132246 | 1009 | timer_check_2 4414,132246 |
| 993 | timer_check 4572,136817 | 1010 | timer_check 4572,136817 |
| 1011 | DEFUN ("current-idle-time", Fcurrent_idle_time,4607,137662 | ||
| 994 | DEFUN ("current-idle-time", Fcurrent_idle_time,current-idle-time4607,137662 | 1012 | DEFUN ("current-idle-time", Fcurrent_idle_time,current-idle-time4607,137662 |
| 995 | static Lisp_Object accent_key_syms;4625,138239 | 1013 | static Lisp_Object accent_key_syms;4625,138239 |
| 996 | static Lisp_Object func_key_syms;4626,138275 | 1014 | static Lisp_Object func_key_syms;4626,138275 |
| @@ -1037,10 +1055,12 @@ static Lisp_Object modifier_symbols;6327,189449 | |||
| 1037 | lispy_modifier_list 6331,189586 | 1055 | lispy_modifier_list 6331,189586 |
| 1038 | #define KEY_TO_CHAR(6353,190252 | 1056 | #define KEY_TO_CHAR(6353,190252 |
| 1039 | parse_modifiers 6356,190328 | 1057 | parse_modifiers 6356,190328 |
| 1058 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,6399,191517 | ||
| 1040 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,event-symbol-parse-modifiers6399,191517 | 1059 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,event-symbol-parse-modifiers6399,191517 |
| 1041 | apply_modifiers 6422,192391 | 1060 | apply_modifiers 6422,192391 |
| 1042 | reorder_modifiers 6491,194720 | 1061 | reorder_modifiers 6491,194720 |
| 1043 | modify_event_symbol 6536,196528 | 1062 | modify_event_symbol 6536,196528 |
| 1063 | DEFUN ("event-convert-list", Fevent_convert_list,6628,199244 | ||
| 1044 | DEFUN ("event-convert-list", Fevent_convert_list,event-convert-list6628,199244 | 1064 | DEFUN ("event-convert-list", Fevent_convert_list,event-convert-list6628,199244 |
| 1045 | parse_solitary_modifier 6695,201135 | 1065 | parse_solitary_modifier 6695,201135 |
| 1046 | #define SINGLE_LETTER_MOD(6701,201258 | 1066 | #define SINGLE_LETTER_MOD(6701,201258 |
| @@ -1101,24 +1121,38 @@ keyremap_step 8811,261450 | |||
| 1101 | test_undefined 8867,262934 | 1121 | test_undefined 8867,262934 |
| 1102 | read_key_sequence 8916,264861 | 1122 | read_key_sequence 8916,264861 |
| 1103 | read_key_sequence_vs 9826,295821 | 1123 | read_key_sequence_vs 9826,295821 |
| 1124 | DEFUN ("read-key-sequence", Fread_key_sequence,9885,297294 | ||
| 1104 | DEFUN ("read-key-sequence", Fread_key_sequence,read-key-sequence9885,297294 | 1125 | DEFUN ("read-key-sequence", Fread_key_sequence,read-key-sequence9885,297294 |
| 1126 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,9938,299982 | ||
| 1105 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,read-key-sequence-vector9938,299982 | 1127 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,read-key-sequence-vector9938,299982 |
| 1106 | detect_input_pending 9950,300488 | 1128 | detect_input_pending 9950,300488 |
| 1107 | detect_input_pending_ignore_squeezables 9959,300654 | 1129 | detect_input_pending_ignore_squeezables 9959,300654 |
| 1108 | detect_input_pending_run_timers 9967,300870 | 1130 | detect_input_pending_run_timers 9967,300870 |
| 1109 | clear_input_pending 9985,301362 | 1131 | clear_input_pending 9985,301362 |
| 1110 | requeued_events_pending_p 9997,301732 | 1132 | requeued_events_pending_p 9997,301732 |
| 1133 | DEFUN ("input-pending-p", Finput_pending_p,10002,301813 | ||
| 1111 | DEFUN ("input-pending-p", Finput_pending_p,input-pending-p10002,301813 | 1134 | DEFUN ("input-pending-p", Finput_pending_p,input-pending-p10002,301813 |
| 1135 | DEFUN ("recent-keys", Frecent_keys,10024,302596 | ||
| 1112 | DEFUN ("recent-keys", Frecent_keys,recent-keys10024,302596 | 1136 | DEFUN ("recent-keys", Frecent_keys,recent-keys10024,302596 |
| 1137 | DEFUN ("this-command-keys", Fthis_command_keys,10055,303517 | ||
| 1113 | DEFUN ("this-command-keys", Fthis_command_keys,this-command-keys10055,303517 | 1138 | DEFUN ("this-command-keys", Fthis_command_keys,this-command-keys10055,303517 |
| 1139 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,10068,303958 | ||
| 1114 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,this-command-keys-vector10068,303958 | 1140 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,this-command-keys-vector10068,303958 |
| 1141 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,10080,304380 | ||
| 1115 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,this-single-command-keys10080,304380 | 1142 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,this-single-command-keys10080,304380 |
| 1143 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,10096,304955 | ||
| 1116 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,this-single-command-raw-keys10096,304955 | 1144 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,this-single-command-raw-keys10096,304955 |
| 1145 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,10109,305495 | ||
| 1117 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,reset-this-command-lengths10109,305495 | 1146 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,reset-this-command-lengths10109,305495 |
| 1147 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,10136,306510 | ||
| 1118 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,clear-this-command-keys10136,306510 | 1148 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,clear-this-command-keys10136,306510 |
| 1149 | DEFUN ("recursion-depth", Frecursion_depth,10158,307069 | ||
| 1119 | DEFUN ("recursion-depth", Frecursion_depth,recursion-depth10158,307069 | 1150 | DEFUN ("recursion-depth", Frecursion_depth,recursion-depth10158,307069 |
| 1151 | DEFUN ("open-dribble-file", Fopen_dribble_file,10169,307406 | ||
| 1120 | DEFUN ("open-dribble-file", Fopen_dribble_file,open-dribble-file10169,307406 | 1152 | DEFUN ("open-dribble-file", Fopen_dribble_file,open-dribble-file10169,307406 |
| 1153 | DEFUN ("discard-input", Fdiscard_input,10203,308447 | ||
| 1121 | DEFUN ("discard-input", Fdiscard_input,discard-input10203,308447 | 1154 | DEFUN ("discard-input", Fdiscard_input,discard-input10203,308447 |
| 1155 | DEFUN ("suspend-emacs", Fsuspend_emacs,10225,308949 | ||
| 1122 | DEFUN ("suspend-emacs", Fsuspend_emacs,suspend-emacs10225,308949 | 1156 | DEFUN ("suspend-emacs", Fsuspend_emacs,suspend-emacs10225,308949 |
| 1123 | stuff_buffered_input 10285,311045 | 1157 | stuff_buffered_input 10285,311045 |
| 1124 | set_waiting_for_input 10323,312016 | 1158 | set_waiting_for_input 10323,312016 |
| @@ -1128,13 +1162,21 @@ deliver_interrupt_signal 10378,313642 | |||
| 1128 | static int volatile force_quit_count;10387,313932 | 1162 | static int volatile force_quit_count;10387,313932 |
| 1129 | handle_interrupt 10401,314414 | 1163 | handle_interrupt 10401,314414 |
| 1130 | quit_throw_to_read_char 10541,318711 | 1164 | quit_throw_to_read_char 10541,318711 |
| 1165 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,10562,319288 | ||
| 1131 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,set-input-interrupt-mode10562,319288 | 1166 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,set-input-interrupt-mode10562,319288 |
| 1167 | DEFUN ("set-output-flow-control", Fset_output_flow_control,10609,320516 | ||
| 1132 | DEFUN ("set-output-flow-control", Fset_output_flow_control,set-output-flow-control10609,320516 | 1168 | DEFUN ("set-output-flow-control", Fset_output_flow_control,set-output-flow-control10609,320516 |
| 1169 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,10643,321432 | ||
| 1133 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,set-input-meta-mode10643,321432 | 1170 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,set-input-meta-mode10643,321432 |
| 1171 | DEFUN ("set-quit-char", Fset_quit_char,10694,322706 | ||
| 1134 | DEFUN ("set-quit-char", Fset_quit_char,set-quit-char10694,322706 | 1172 | DEFUN ("set-quit-char", Fset_quit_char,set-quit-char10694,322706 |
| 1173 | DEFUN ("set-input-mode", Fset_input_mode,10729,323570 | ||
| 1135 | DEFUN ("set-input-mode", Fset_input_mode,set-input-mode10729,323570 | 1174 | DEFUN ("set-input-mode", Fset_input_mode,set-input-mode10729,323570 |
| 1175 | DEFUN ("current-input-mode", Fcurrent_input_mode,10750,324459 | ||
| 1136 | DEFUN ("current-input-mode", Fcurrent_input_mode,current-input-mode10750,324459 | 1176 | DEFUN ("current-input-mode", Fcurrent_input_mode,current-input-mode10750,324459 |
| 1177 | DEFUN ("posn-at-x-y", Fposn_at_x_y,10787,325837 | ||
| 1137 | DEFUN ("posn-at-x-y", Fposn_at_x_y,posn-at-x-y10787,325837 | 1178 | DEFUN ("posn-at-x-y", Fposn_at_x_y,posn-at-x-y10787,325837 |
| 1179 | DEFUN ("posn-at-point", Fposn_at_point,10824,327060 | ||
| 1138 | DEFUN ("posn-at-point", Fposn_at_point,posn-at-point10824,327060 | 1180 | DEFUN ("posn-at-point", Fposn_at_point,posn-at-point10824,327060 |
| 1139 | init_kboard 10861,328214 | 1181 | init_kboard 10861,328214 |
| 1140 | allocate_kboard 10893,329284 | 1182 | allocate_kboard 10893,329284 |
| @@ -3832,7 +3874,7 @@ void bar(5,69 | |||
| 3832 | int foobar(6,94 | 3874 | int foobar(6,94 |
| 3833 | interface_locate(9,131 | 3875 | interface_locate(9,131 |
| 3834 | 3876 | ||
| 3835 | c.c,1663 | 3877 | c.c,1807 |
| 3836 | my_printf 135, | 3878 | my_printf 135, |
| 3837 | void fatala 138, | 3879 | void fatala 138, |
| 3838 | max 141, | 3880 | max 141, |
| @@ -3862,8 +3904,11 @@ short array[array190, | |||
| 3862 | int f193, | 3904 | int f193, |
| 3863 | DEAFUN 196, | 3905 | DEAFUN 196, |
| 3864 | XDEFUN 203, | 3906 | XDEFUN 203, |
| 3907 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,206, | ||
| 3865 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,x-get-selection-internal206, | 3908 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,x-get-selection-internal206, |
| 3909 | Fx_get_selection_internal,212, | ||
| 3866 | Fx_get_selection_internal,x-get-selection-internal212, | 3910 | Fx_get_selection_internal,x-get-selection-internal212, |
| 3911 | Fy_get_selection_internal,216, | ||
| 3867 | Fy_get_selection_internal,y-get-selection-internal216, | 3912 | Fy_get_selection_internal,y-get-selection-internal216, |
| 3868 | defun_func1(218, | 3913 | defun_func1(218, |
| 3869 | DEFUN_func2(220, | 3914 | DEFUN_func2(220, |
diff --git a/test/etags/ETAGS.good_2 b/test/etags/ETAGS.good_2 index ecfa7d19885..7f24d06432c 100644 --- a/test/etags/ETAGS.good_2 +++ b/test/etags/ETAGS.good_2 | |||
| @@ -175,7 +175,7 @@ package body Truc.Bidule Truc.Bidule/b138,2153 | |||
| 175 | protected body Bidule Bidule/b139,2181 | 175 | protected body Bidule Bidule/b139,2181 |
| 176 | protected body Machin_T Machin_T/b146,2281 | 176 | protected body Machin_T Machin_T/b146,2281 |
| 177 | 177 | ||
| 178 | c-src/abbrev.c,1432 | 178 | c-src/abbrev.c,2072 |
| 179 | Lisp_Object Vabbrev_table_name_list;43,1424 | 179 | Lisp_Object Vabbrev_table_name_list;43,1424 |
| 180 | Lisp_Object Vglobal_abbrev_table;48,1569 | 180 | Lisp_Object Vglobal_abbrev_table;48,1569 |
| 181 | Lisp_Object Vfundamental_mode_abbrev_table;52,1680 | 181 | Lisp_Object Vfundamental_mode_abbrev_table;52,1680 |
| @@ -188,18 +188,29 @@ Lisp_Object Vlast_abbrev_text;75,2319 | |||
| 188 | int last_abbrev_point;79,2409 | 188 | int last_abbrev_point;79,2409 |
| 189 | Lisp_Object Vpre_abbrev_expand_hook,83,2482 | 189 | Lisp_Object Vpre_abbrev_expand_hook,83,2482 |
| 190 | Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;83,2482 | 190 | Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;83,2482 |
| 191 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,85,2546 | ||
| 191 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,make-abbrev-table85,2546 | 192 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,make-abbrev-table85,2546 |
| 193 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,92,2738 | ||
| 192 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,clear-abbrev-table92,2738 | 194 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,clear-abbrev-table92,2738 |
| 195 | DEFUN ("define-abbrev", Fdefine_abbrev,107,3119 | ||
| 193 | DEFUN ("define-abbrev", Fdefine_abbrev,define-abbrev107,3119 | 196 | DEFUN ("define-abbrev", Fdefine_abbrev,define-abbrev107,3119 |
| 197 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,149,4438 | ||
| 194 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,define-global-abbrev149,4438 | 198 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,define-global-abbrev149,4438 |
| 199 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,160,4809 | ||
| 195 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,define-mode-abbrev160,4809 | 200 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,define-mode-abbrev160,4809 |
| 201 | DEFUN ("abbrev-symbol", Fabbrev_symbol,174,5277 | ||
| 196 | DEFUN ("abbrev-symbol", Fabbrev_symbol,abbrev-symbol174,5277 | 202 | DEFUN ("abbrev-symbol", Fabbrev_symbol,abbrev-symbol174,5277 |
| 203 | DEFUN ("abbrev-expansion", Fabbrev_expansion,202,6241 | ||
| 197 | DEFUN ("abbrev-expansion", Fabbrev_expansion,abbrev-expansion202,6241 | 204 | DEFUN ("abbrev-expansion", Fabbrev_expansion,abbrev-expansion202,6241 |
| 205 | DEFUN ("expand-abbrev", Fexpand_abbrev,218,6756 | ||
| 198 | DEFUN ("expand-abbrev", Fexpand_abbrev,expand-abbrev218,6756 | 206 | DEFUN ("expand-abbrev", Fexpand_abbrev,expand-abbrev218,6756 |
| 207 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,389,11677 | ||
| 199 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,unexpand-abbrev389,11677 | 208 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,unexpand-abbrev389,11677 |
| 200 | write_abbrev 426,12884 | 209 | write_abbrev 426,12884 |
| 201 | describe_abbrev 445,13319 | 210 | describe_abbrev 445,13319 |
| 211 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,466,13834 | ||
| 202 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,insert-abbrev-table-description466,13834 | 212 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,insert-abbrev-table-description466,13834 |
| 213 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,506,14990 | ||
| 203 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,define-abbrev-table506,14990 | 214 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,define-abbrev-table506,14990 |
| 204 | syms_of_abbrev 540,16067 | 215 | syms_of_abbrev 540,16067 |
| 205 | 216 | ||
| @@ -980,7 +991,7 @@ extern re_wctype_t re_wctype 621,23329 | |||
| 980 | typedef int re_wchar_t;623,23387 | 991 | typedef int re_wchar_t;623,23387 |
| 981 | extern void re_set_whitespace_regexp 625,23412 | 992 | extern void re_set_whitespace_regexp 625,23412 |
| 982 | 993 | ||
| 983 | c-src/emacs/src/keyboard.c,15493 | 994 | c-src/emacs/src/keyboard.c,17467 |
| 984 | volatile int interrupt_input_blocked;76,1808 | 995 | volatile int interrupt_input_blocked;76,1808 |
| 985 | volatile bool pending_signals;80,1944 | 996 | volatile bool pending_signals;80,1944 |
| 986 | #define KBD_BUFFER_SIZE 82,1976 | 997 | #define KBD_BUFFER_SIZE 82,1976 |
| @@ -1087,6 +1098,7 @@ add_command_key 672,21582 | |||
| 1087 | recursive_edit_1 697,22406 | 1098 | recursive_edit_1 697,22406 |
| 1088 | record_auto_save 742,23848 | 1099 | record_auto_save 742,23848 |
| 1089 | force_auto_save_soon 751,24016 | 1100 | force_auto_save_soon 751,24016 |
| 1101 | DEFUN ("recursive-edit", Frecursive_edit,759,24137 | ||
| 1090 | DEFUN ("recursive-edit", Frecursive_edit,recursive-edit759,24137 | 1102 | DEFUN ("recursive-edit", Frecursive_edit,recursive-edit759,24137 |
| 1091 | recursive_edit_unwind 804,25747 | 1103 | recursive_edit_unwind 804,25747 |
| 1092 | any_kboard_state 817,26013 | 1104 | any_kboard_state 817,26013 |
| @@ -1101,6 +1113,7 @@ record_single_kboard_state 943,29437 | |||
| 1101 | restore_kboard_configuration 952,29621 | 1113 | restore_kboard_configuration 952,29621 |
| 1102 | cmd_error 970,30077 | 1114 | cmd_error 970,30077 |
| 1103 | cmd_error_internal 1024,31510 | 1115 | cmd_error_internal 1024,31510 |
| 1116 | DEFUN ("command-error-default-function", Fcommand_error_default_function,1043,32030 | ||
| 1104 | DEFUN ("command-error-default-function", Fcommand_error_default_function,command-error-default-function1043,32030 | 1117 | DEFUN ("command-error-default-function", Fcommand_error_default_function,command-error-default-function1043,32030 |
| 1105 | static Lisp_Object command_loop_2 1086,33637 | 1118 | static Lisp_Object command_loop_2 1086,33637 |
| 1106 | static Lisp_Object top_level_1 1087,33686 | 1119 | static Lisp_Object top_level_1 1087,33686 |
| @@ -1108,11 +1121,15 @@ command_loop 1094,33916 | |||
| 1108 | command_loop_2 1134,35135 | 1121 | command_loop_2 1134,35135 |
| 1109 | top_level_2 1146,35339 | 1122 | top_level_2 1146,35339 |
| 1110 | top_level_1 1152,35417 | 1123 | top_level_1 1152,35417 |
| 1124 | DEFUN ("top-level", Ftop_level,1164,35787 | ||
| 1111 | DEFUN ("top-level", Ftop_level,top-level1164,35787 | 1125 | DEFUN ("top-level", Ftop_level,top-level1164,35787 |
| 1112 | user_error 1183,36288 | 1126 | user_error 1183,36288 |
| 1127 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,1189,36429 | ||
| 1113 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,exit-recursive-edit1189,36429 | 1128 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,exit-recursive-edit1189,36429 |
| 1129 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,1201,36819 | ||
| 1114 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,abort-recursive-edit1201,36819 | 1130 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,abort-recursive-edit1201,36819 |
| 1115 | tracking_off 1216,37281 | 1131 | tracking_off 1216,37281 |
| 1132 | DEFUN ("internal--track-mouse", Ftrack_mouse,1234,37816 | ||
| 1116 | DEFUN ("internal--track-mouse", Ftrack_mouse,track-mouse1234,37816 | 1133 | DEFUN ("internal--track-mouse", Ftrack_mouse,track-mouse1234,37816 |
| 1117 | bool ignore_mouse_drag_p;1256,38392 | 1134 | bool ignore_mouse_drag_p;1256,38392 |
| 1118 | some_mouse_moved 1259,38441 | 1135 | some_mouse_moved 1259,38441 |
| @@ -1180,6 +1197,7 @@ Lisp_Object pending_funcalls;4377,131172 | |||
| 1180 | decode_timer 4381,131293 | 1197 | decode_timer 4381,131293 |
| 1181 | timer_check_2 4414,132246 | 1198 | timer_check_2 4414,132246 |
| 1182 | timer_check 4572,136817 | 1199 | timer_check 4572,136817 |
| 1200 | DEFUN ("current-idle-time", Fcurrent_idle_time,4607,137662 | ||
| 1183 | DEFUN ("current-idle-time", Fcurrent_idle_time,current-idle-time4607,137662 | 1201 | DEFUN ("current-idle-time", Fcurrent_idle_time,current-idle-time4607,137662 |
| 1184 | static Lisp_Object accent_key_syms;4625,138239 | 1202 | static Lisp_Object accent_key_syms;4625,138239 |
| 1185 | static Lisp_Object func_key_syms;4626,138275 | 1203 | static Lisp_Object func_key_syms;4626,138275 |
| @@ -1226,10 +1244,12 @@ static Lisp_Object modifier_symbols;6327,189449 | |||
| 1226 | lispy_modifier_list 6331,189586 | 1244 | lispy_modifier_list 6331,189586 |
| 1227 | #define KEY_TO_CHAR(6353,190252 | 1245 | #define KEY_TO_CHAR(6353,190252 |
| 1228 | parse_modifiers 6356,190328 | 1246 | parse_modifiers 6356,190328 |
| 1247 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,6399,191517 | ||
| 1229 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,event-symbol-parse-modifiers6399,191517 | 1248 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,event-symbol-parse-modifiers6399,191517 |
| 1230 | apply_modifiers 6422,192391 | 1249 | apply_modifiers 6422,192391 |
| 1231 | reorder_modifiers 6491,194720 | 1250 | reorder_modifiers 6491,194720 |
| 1232 | modify_event_symbol 6536,196528 | 1251 | modify_event_symbol 6536,196528 |
| 1252 | DEFUN ("event-convert-list", Fevent_convert_list,6628,199244 | ||
| 1233 | DEFUN ("event-convert-list", Fevent_convert_list,event-convert-list6628,199244 | 1253 | DEFUN ("event-convert-list", Fevent_convert_list,event-convert-list6628,199244 |
| 1234 | parse_solitary_modifier 6695,201135 | 1254 | parse_solitary_modifier 6695,201135 |
| 1235 | #define SINGLE_LETTER_MOD(6701,201258 | 1255 | #define SINGLE_LETTER_MOD(6701,201258 |
| @@ -1295,24 +1315,38 @@ keyremap_step 8811,261450 | |||
| 1295 | test_undefined 8867,262934 | 1315 | test_undefined 8867,262934 |
| 1296 | read_key_sequence 8916,264861 | 1316 | read_key_sequence 8916,264861 |
| 1297 | read_key_sequence_vs 9826,295821 | 1317 | read_key_sequence_vs 9826,295821 |
| 1318 | DEFUN ("read-key-sequence", Fread_key_sequence,9885,297294 | ||
| 1298 | DEFUN ("read-key-sequence", Fread_key_sequence,read-key-sequence9885,297294 | 1319 | DEFUN ("read-key-sequence", Fread_key_sequence,read-key-sequence9885,297294 |
| 1320 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,9938,299982 | ||
| 1299 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,read-key-sequence-vector9938,299982 | 1321 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,read-key-sequence-vector9938,299982 |
| 1300 | detect_input_pending 9950,300488 | 1322 | detect_input_pending 9950,300488 |
| 1301 | detect_input_pending_ignore_squeezables 9959,300654 | 1323 | detect_input_pending_ignore_squeezables 9959,300654 |
| 1302 | detect_input_pending_run_timers 9967,300870 | 1324 | detect_input_pending_run_timers 9967,300870 |
| 1303 | clear_input_pending 9985,301362 | 1325 | clear_input_pending 9985,301362 |
| 1304 | requeued_events_pending_p 9997,301732 | 1326 | requeued_events_pending_p 9997,301732 |
| 1327 | DEFUN ("input-pending-p", Finput_pending_p,10002,301813 | ||
| 1305 | DEFUN ("input-pending-p", Finput_pending_p,input-pending-p10002,301813 | 1328 | DEFUN ("input-pending-p", Finput_pending_p,input-pending-p10002,301813 |
| 1329 | DEFUN ("recent-keys", Frecent_keys,10024,302596 | ||
| 1306 | DEFUN ("recent-keys", Frecent_keys,recent-keys10024,302596 | 1330 | DEFUN ("recent-keys", Frecent_keys,recent-keys10024,302596 |
| 1331 | DEFUN ("this-command-keys", Fthis_command_keys,10055,303517 | ||
| 1307 | DEFUN ("this-command-keys", Fthis_command_keys,this-command-keys10055,303517 | 1332 | DEFUN ("this-command-keys", Fthis_command_keys,this-command-keys10055,303517 |
| 1333 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,10068,303958 | ||
| 1308 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,this-command-keys-vector10068,303958 | 1334 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,this-command-keys-vector10068,303958 |
| 1335 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,10080,304380 | ||
| 1309 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,this-single-command-keys10080,304380 | 1336 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,this-single-command-keys10080,304380 |
| 1337 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,10096,304955 | ||
| 1310 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,this-single-command-raw-keys10096,304955 | 1338 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,this-single-command-raw-keys10096,304955 |
| 1339 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,10109,305495 | ||
| 1311 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,reset-this-command-lengths10109,305495 | 1340 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,reset-this-command-lengths10109,305495 |
| 1341 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,10136,306510 | ||
| 1312 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,clear-this-command-keys10136,306510 | 1342 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,clear-this-command-keys10136,306510 |
| 1343 | DEFUN ("recursion-depth", Frecursion_depth,10158,307069 | ||
| 1313 | DEFUN ("recursion-depth", Frecursion_depth,recursion-depth10158,307069 | 1344 | DEFUN ("recursion-depth", Frecursion_depth,recursion-depth10158,307069 |
| 1345 | DEFUN ("open-dribble-file", Fopen_dribble_file,10169,307406 | ||
| 1314 | DEFUN ("open-dribble-file", Fopen_dribble_file,open-dribble-file10169,307406 | 1346 | DEFUN ("open-dribble-file", Fopen_dribble_file,open-dribble-file10169,307406 |
| 1347 | DEFUN ("discard-input", Fdiscard_input,10203,308447 | ||
| 1315 | DEFUN ("discard-input", Fdiscard_input,discard-input10203,308447 | 1348 | DEFUN ("discard-input", Fdiscard_input,discard-input10203,308447 |
| 1349 | DEFUN ("suspend-emacs", Fsuspend_emacs,10225,308949 | ||
| 1316 | DEFUN ("suspend-emacs", Fsuspend_emacs,suspend-emacs10225,308949 | 1350 | DEFUN ("suspend-emacs", Fsuspend_emacs,suspend-emacs10225,308949 |
| 1317 | stuff_buffered_input 10285,311045 | 1351 | stuff_buffered_input 10285,311045 |
| 1318 | set_waiting_for_input 10323,312016 | 1352 | set_waiting_for_input 10323,312016 |
| @@ -1322,13 +1356,21 @@ deliver_interrupt_signal 10378,313642 | |||
| 1322 | static int volatile force_quit_count;10387,313932 | 1356 | static int volatile force_quit_count;10387,313932 |
| 1323 | handle_interrupt 10401,314414 | 1357 | handle_interrupt 10401,314414 |
| 1324 | quit_throw_to_read_char 10541,318711 | 1358 | quit_throw_to_read_char 10541,318711 |
| 1359 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,10562,319288 | ||
| 1325 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,set-input-interrupt-mode10562,319288 | 1360 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,set-input-interrupt-mode10562,319288 |
| 1361 | DEFUN ("set-output-flow-control", Fset_output_flow_control,10609,320516 | ||
| 1326 | DEFUN ("set-output-flow-control", Fset_output_flow_control,set-output-flow-control10609,320516 | 1362 | DEFUN ("set-output-flow-control", Fset_output_flow_control,set-output-flow-control10609,320516 |
| 1363 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,10643,321432 | ||
| 1327 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,set-input-meta-mode10643,321432 | 1364 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,set-input-meta-mode10643,321432 |
| 1365 | DEFUN ("set-quit-char", Fset_quit_char,10694,322706 | ||
| 1328 | DEFUN ("set-quit-char", Fset_quit_char,set-quit-char10694,322706 | 1366 | DEFUN ("set-quit-char", Fset_quit_char,set-quit-char10694,322706 |
| 1367 | DEFUN ("set-input-mode", Fset_input_mode,10729,323570 | ||
| 1329 | DEFUN ("set-input-mode", Fset_input_mode,set-input-mode10729,323570 | 1368 | DEFUN ("set-input-mode", Fset_input_mode,set-input-mode10729,323570 |
| 1369 | DEFUN ("current-input-mode", Fcurrent_input_mode,10750,324459 | ||
| 1330 | DEFUN ("current-input-mode", Fcurrent_input_mode,current-input-mode10750,324459 | 1370 | DEFUN ("current-input-mode", Fcurrent_input_mode,current-input-mode10750,324459 |
| 1371 | DEFUN ("posn-at-x-y", Fposn_at_x_y,10787,325837 | ||
| 1331 | DEFUN ("posn-at-x-y", Fposn_at_x_y,posn-at-x-y10787,325837 | 1372 | DEFUN ("posn-at-x-y", Fposn_at_x_y,posn-at-x-y10787,325837 |
| 1373 | DEFUN ("posn-at-point", Fposn_at_point,10824,327060 | ||
| 1332 | DEFUN ("posn-at-point", Fposn_at_point,posn-at-point10824,327060 | 1374 | DEFUN ("posn-at-point", Fposn_at_point,posn-at-point10824,327060 |
| 1333 | init_kboard 10861,328214 | 1375 | init_kboard 10861,328214 |
| 1334 | allocate_kboard 10893,329284 | 1376 | allocate_kboard 10893,329284 |
| @@ -4402,7 +4444,7 @@ void bar(5,69 | |||
| 4402 | int foobar(6,94 | 4444 | int foobar(6,94 |
| 4403 | interface_locate(9,131 | 4445 | interface_locate(9,131 |
| 4404 | 4446 | ||
| 4405 | c.c,1836 | 4447 | c.c,1980 |
| 4406 | void (*fa)fa131, | 4448 | void (*fa)fa131, |
| 4407 | void 132, | 4449 | void 132, |
| 4408 | my_printf 135, | 4450 | my_printf 135, |
| @@ -4439,8 +4481,11 @@ short array[array190, | |||
| 4439 | int f193, | 4481 | int f193, |
| 4440 | DEAFUN 196, | 4482 | DEAFUN 196, |
| 4441 | XDEFUN 203, | 4483 | XDEFUN 203, |
| 4484 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,206, | ||
| 4442 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,x-get-selection-internal206, | 4485 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,x-get-selection-internal206, |
| 4486 | Fx_get_selection_internal,212, | ||
| 4443 | Fx_get_selection_internal,x-get-selection-internal212, | 4487 | Fx_get_selection_internal,x-get-selection-internal212, |
| 4488 | Fy_get_selection_internal,216, | ||
| 4444 | Fy_get_selection_internal,y-get-selection-internal216, | 4489 | Fy_get_selection_internal,y-get-selection-internal216, |
| 4445 | defun_func1(218, | 4490 | defun_func1(218, |
| 4446 | DEFUN_func2(220, | 4491 | DEFUN_func2(220, |
diff --git a/test/etags/ETAGS.good_3 b/test/etags/ETAGS.good_3 index 5f84aa9a0c6..f8bd93330e2 100644 --- a/test/etags/ETAGS.good_3 +++ b/test/etags/ETAGS.good_3 | |||
| @@ -175,7 +175,7 @@ package body Truc.Bidule Truc.Bidule/b138,2153 | |||
| 175 | protected body Bidule Bidule/b139,2181 | 175 | protected body Bidule Bidule/b139,2181 |
| 176 | protected body Machin_T Machin_T/b146,2281 | 176 | protected body Machin_T Machin_T/b146,2281 |
| 177 | 177 | ||
| 178 | c-src/abbrev.c,1432 | 178 | c-src/abbrev.c,2072 |
| 179 | Lisp_Object Vabbrev_table_name_list;43,1424 | 179 | Lisp_Object Vabbrev_table_name_list;43,1424 |
| 180 | Lisp_Object Vglobal_abbrev_table;48,1569 | 180 | Lisp_Object Vglobal_abbrev_table;48,1569 |
| 181 | Lisp_Object Vfundamental_mode_abbrev_table;52,1680 | 181 | Lisp_Object Vfundamental_mode_abbrev_table;52,1680 |
| @@ -188,18 +188,29 @@ Lisp_Object Vlast_abbrev_text;75,2319 | |||
| 188 | int last_abbrev_point;79,2409 | 188 | int last_abbrev_point;79,2409 |
| 189 | Lisp_Object Vpre_abbrev_expand_hook,83,2482 | 189 | Lisp_Object Vpre_abbrev_expand_hook,83,2482 |
| 190 | Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;83,2482 | 190 | Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;83,2482 |
| 191 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,85,2546 | ||
| 191 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,make-abbrev-table85,2546 | 192 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,make-abbrev-table85,2546 |
| 193 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,92,2738 | ||
| 192 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,clear-abbrev-table92,2738 | 194 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,clear-abbrev-table92,2738 |
| 195 | DEFUN ("define-abbrev", Fdefine_abbrev,107,3119 | ||
| 193 | DEFUN ("define-abbrev", Fdefine_abbrev,define-abbrev107,3119 | 196 | DEFUN ("define-abbrev", Fdefine_abbrev,define-abbrev107,3119 |
| 197 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,149,4438 | ||
| 194 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,define-global-abbrev149,4438 | 198 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,define-global-abbrev149,4438 |
| 199 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,160,4809 | ||
| 195 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,define-mode-abbrev160,4809 | 200 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,define-mode-abbrev160,4809 |
| 201 | DEFUN ("abbrev-symbol", Fabbrev_symbol,174,5277 | ||
| 196 | DEFUN ("abbrev-symbol", Fabbrev_symbol,abbrev-symbol174,5277 | 202 | DEFUN ("abbrev-symbol", Fabbrev_symbol,abbrev-symbol174,5277 |
| 203 | DEFUN ("abbrev-expansion", Fabbrev_expansion,202,6241 | ||
| 197 | DEFUN ("abbrev-expansion", Fabbrev_expansion,abbrev-expansion202,6241 | 204 | DEFUN ("abbrev-expansion", Fabbrev_expansion,abbrev-expansion202,6241 |
| 205 | DEFUN ("expand-abbrev", Fexpand_abbrev,218,6756 | ||
| 198 | DEFUN ("expand-abbrev", Fexpand_abbrev,expand-abbrev218,6756 | 206 | DEFUN ("expand-abbrev", Fexpand_abbrev,expand-abbrev218,6756 |
| 207 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,389,11677 | ||
| 199 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,unexpand-abbrev389,11677 | 208 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,unexpand-abbrev389,11677 |
| 200 | write_abbrev 426,12884 | 209 | write_abbrev 426,12884 |
| 201 | describe_abbrev 445,13319 | 210 | describe_abbrev 445,13319 |
| 211 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,466,13834 | ||
| 202 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,insert-abbrev-table-description466,13834 | 212 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,insert-abbrev-table-description466,13834 |
| 213 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,506,14990 | ||
| 203 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,define-abbrev-table506,14990 | 214 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,define-abbrev-table506,14990 |
| 204 | syms_of_abbrev 540,16067 | 215 | syms_of_abbrev 540,16067 |
| 205 | 216 | ||
| @@ -942,7 +953,7 @@ typedef enum { RECC_ERROR 609,22953 | |||
| 942 | } re_wctype_t;618,23260 | 953 | } re_wctype_t;618,23260 |
| 943 | typedef int re_wchar_t;623,23387 | 954 | typedef int re_wchar_t;623,23387 |
| 944 | 955 | ||
| 945 | c-src/emacs/src/keyboard.c,13949 | 956 | c-src/emacs/src/keyboard.c,15923 |
| 946 | volatile int interrupt_input_blocked;76,1808 | 957 | volatile int interrupt_input_blocked;76,1808 |
| 947 | volatile bool pending_signals;80,1944 | 958 | volatile bool pending_signals;80,1944 |
| 948 | #define KBD_BUFFER_SIZE 82,1976 | 959 | #define KBD_BUFFER_SIZE 82,1976 |
| @@ -1018,6 +1029,7 @@ add_command_key 672,21582 | |||
| 1018 | recursive_edit_1 697,22406 | 1029 | recursive_edit_1 697,22406 |
| 1019 | record_auto_save 742,23848 | 1030 | record_auto_save 742,23848 |
| 1020 | force_auto_save_soon 751,24016 | 1031 | force_auto_save_soon 751,24016 |
| 1032 | DEFUN ("recursive-edit", Frecursive_edit,759,24137 | ||
| 1021 | DEFUN ("recursive-edit", Frecursive_edit,recursive-edit759,24137 | 1033 | DEFUN ("recursive-edit", Frecursive_edit,recursive-edit759,24137 |
| 1022 | recursive_edit_unwind 804,25747 | 1034 | recursive_edit_unwind 804,25747 |
| 1023 | any_kboard_state 817,26013 | 1035 | any_kboard_state 817,26013 |
| @@ -1034,16 +1046,21 @@ record_single_kboard_state 943,29437 | |||
| 1034 | restore_kboard_configuration 952,29621 | 1046 | restore_kboard_configuration 952,29621 |
| 1035 | cmd_error 970,30077 | 1047 | cmd_error 970,30077 |
| 1036 | cmd_error_internal 1024,31510 | 1048 | cmd_error_internal 1024,31510 |
| 1049 | DEFUN ("command-error-default-function", Fcommand_error_default_function,1043,32030 | ||
| 1037 | DEFUN ("command-error-default-function", Fcommand_error_default_function,command-error-default-function1043,32030 | 1050 | DEFUN ("command-error-default-function", Fcommand_error_default_function,command-error-default-function1043,32030 |
| 1038 | command_loop 1094,33916 | 1051 | command_loop 1094,33916 |
| 1039 | command_loop_2 1134,35135 | 1052 | command_loop_2 1134,35135 |
| 1040 | top_level_2 1146,35339 | 1053 | top_level_2 1146,35339 |
| 1041 | top_level_1 1152,35417 | 1054 | top_level_1 1152,35417 |
| 1055 | DEFUN ("top-level", Ftop_level,1164,35787 | ||
| 1042 | DEFUN ("top-level", Ftop_level,top-level1164,35787 | 1056 | DEFUN ("top-level", Ftop_level,top-level1164,35787 |
| 1043 | user_error 1183,36288 | 1057 | user_error 1183,36288 |
| 1058 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,1189,36429 | ||
| 1044 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,exit-recursive-edit1189,36429 | 1059 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,exit-recursive-edit1189,36429 |
| 1060 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,1201,36819 | ||
| 1045 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,abort-recursive-edit1201,36819 | 1061 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,abort-recursive-edit1201,36819 |
| 1046 | tracking_off 1216,37281 | 1062 | tracking_off 1216,37281 |
| 1063 | DEFUN ("internal--track-mouse", Ftrack_mouse,1234,37816 | ||
| 1047 | DEFUN ("internal--track-mouse", Ftrack_mouse,track-mouse1234,37816 | 1064 | DEFUN ("internal--track-mouse", Ftrack_mouse,track-mouse1234,37816 |
| 1048 | bool ignore_mouse_drag_p;1256,38392 | 1065 | bool ignore_mouse_drag_p;1256,38392 |
| 1049 | some_mouse_moved 1259,38441 | 1066 | some_mouse_moved 1259,38441 |
| @@ -1107,6 +1124,7 @@ Lisp_Object pending_funcalls;4377,131172 | |||
| 1107 | decode_timer 4381,131293 | 1124 | decode_timer 4381,131293 |
| 1108 | timer_check_2 4414,132246 | 1125 | timer_check_2 4414,132246 |
| 1109 | timer_check 4572,136817 | 1126 | timer_check 4572,136817 |
| 1127 | DEFUN ("current-idle-time", Fcurrent_idle_time,4607,137662 | ||
| 1110 | DEFUN ("current-idle-time", Fcurrent_idle_time,current-idle-time4607,137662 | 1128 | DEFUN ("current-idle-time", Fcurrent_idle_time,current-idle-time4607,137662 |
| 1111 | static Lisp_Object accent_key_syms;4625,138239 | 1129 | static Lisp_Object accent_key_syms;4625,138239 |
| 1112 | static Lisp_Object func_key_syms;4626,138275 | 1130 | static Lisp_Object func_key_syms;4626,138275 |
| @@ -1153,10 +1171,12 @@ static Lisp_Object modifier_symbols;6327,189449 | |||
| 1153 | lispy_modifier_list 6331,189586 | 1171 | lispy_modifier_list 6331,189586 |
| 1154 | #define KEY_TO_CHAR(6353,190252 | 1172 | #define KEY_TO_CHAR(6353,190252 |
| 1155 | parse_modifiers 6356,190328 | 1173 | parse_modifiers 6356,190328 |
| 1174 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,6399,191517 | ||
| 1156 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,event-symbol-parse-modifiers6399,191517 | 1175 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,event-symbol-parse-modifiers6399,191517 |
| 1157 | apply_modifiers 6422,192391 | 1176 | apply_modifiers 6422,192391 |
| 1158 | reorder_modifiers 6491,194720 | 1177 | reorder_modifiers 6491,194720 |
| 1159 | modify_event_symbol 6536,196528 | 1178 | modify_event_symbol 6536,196528 |
| 1179 | DEFUN ("event-convert-list", Fevent_convert_list,6628,199244 | ||
| 1160 | DEFUN ("event-convert-list", Fevent_convert_list,event-convert-list6628,199244 | 1180 | DEFUN ("event-convert-list", Fevent_convert_list,event-convert-list6628,199244 |
| 1161 | parse_solitary_modifier 6695,201135 | 1181 | parse_solitary_modifier 6695,201135 |
| 1162 | #define SINGLE_LETTER_MOD(6701,201258 | 1182 | #define SINGLE_LETTER_MOD(6701,201258 |
| @@ -1225,24 +1245,38 @@ keyremap_step 8811,261450 | |||
| 1225 | test_undefined 8867,262934 | 1245 | test_undefined 8867,262934 |
| 1226 | read_key_sequence 8916,264861 | 1246 | read_key_sequence 8916,264861 |
| 1227 | read_key_sequence_vs 9826,295821 | 1247 | read_key_sequence_vs 9826,295821 |
| 1248 | DEFUN ("read-key-sequence", Fread_key_sequence,9885,297294 | ||
| 1228 | DEFUN ("read-key-sequence", Fread_key_sequence,read-key-sequence9885,297294 | 1249 | DEFUN ("read-key-sequence", Fread_key_sequence,read-key-sequence9885,297294 |
| 1250 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,9938,299982 | ||
| 1229 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,read-key-sequence-vector9938,299982 | 1251 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,read-key-sequence-vector9938,299982 |
| 1230 | detect_input_pending 9950,300488 | 1252 | detect_input_pending 9950,300488 |
| 1231 | detect_input_pending_ignore_squeezables 9959,300654 | 1253 | detect_input_pending_ignore_squeezables 9959,300654 |
| 1232 | detect_input_pending_run_timers 9967,300870 | 1254 | detect_input_pending_run_timers 9967,300870 |
| 1233 | clear_input_pending 9985,301362 | 1255 | clear_input_pending 9985,301362 |
| 1234 | requeued_events_pending_p 9997,301732 | 1256 | requeued_events_pending_p 9997,301732 |
| 1257 | DEFUN ("input-pending-p", Finput_pending_p,10002,301813 | ||
| 1235 | DEFUN ("input-pending-p", Finput_pending_p,input-pending-p10002,301813 | 1258 | DEFUN ("input-pending-p", Finput_pending_p,input-pending-p10002,301813 |
| 1259 | DEFUN ("recent-keys", Frecent_keys,10024,302596 | ||
| 1236 | DEFUN ("recent-keys", Frecent_keys,recent-keys10024,302596 | 1260 | DEFUN ("recent-keys", Frecent_keys,recent-keys10024,302596 |
| 1261 | DEFUN ("this-command-keys", Fthis_command_keys,10055,303517 | ||
| 1237 | DEFUN ("this-command-keys", Fthis_command_keys,this-command-keys10055,303517 | 1262 | DEFUN ("this-command-keys", Fthis_command_keys,this-command-keys10055,303517 |
| 1263 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,10068,303958 | ||
| 1238 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,this-command-keys-vector10068,303958 | 1264 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,this-command-keys-vector10068,303958 |
| 1265 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,10080,304380 | ||
| 1239 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,this-single-command-keys10080,304380 | 1266 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,this-single-command-keys10080,304380 |
| 1267 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,10096,304955 | ||
| 1240 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,this-single-command-raw-keys10096,304955 | 1268 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,this-single-command-raw-keys10096,304955 |
| 1269 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,10109,305495 | ||
| 1241 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,reset-this-command-lengths10109,305495 | 1270 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,reset-this-command-lengths10109,305495 |
| 1271 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,10136,306510 | ||
| 1242 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,clear-this-command-keys10136,306510 | 1272 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,clear-this-command-keys10136,306510 |
| 1273 | DEFUN ("recursion-depth", Frecursion_depth,10158,307069 | ||
| 1243 | DEFUN ("recursion-depth", Frecursion_depth,recursion-depth10158,307069 | 1274 | DEFUN ("recursion-depth", Frecursion_depth,recursion-depth10158,307069 |
| 1275 | DEFUN ("open-dribble-file", Fopen_dribble_file,10169,307406 | ||
| 1244 | DEFUN ("open-dribble-file", Fopen_dribble_file,open-dribble-file10169,307406 | 1276 | DEFUN ("open-dribble-file", Fopen_dribble_file,open-dribble-file10169,307406 |
| 1277 | DEFUN ("discard-input", Fdiscard_input,10203,308447 | ||
| 1245 | DEFUN ("discard-input", Fdiscard_input,discard-input10203,308447 | 1278 | DEFUN ("discard-input", Fdiscard_input,discard-input10203,308447 |
| 1279 | DEFUN ("suspend-emacs", Fsuspend_emacs,10225,308949 | ||
| 1246 | DEFUN ("suspend-emacs", Fsuspend_emacs,suspend-emacs10225,308949 | 1280 | DEFUN ("suspend-emacs", Fsuspend_emacs,suspend-emacs10225,308949 |
| 1247 | stuff_buffered_input 10285,311045 | 1281 | stuff_buffered_input 10285,311045 |
| 1248 | set_waiting_for_input 10323,312016 | 1282 | set_waiting_for_input 10323,312016 |
| @@ -1252,13 +1286,21 @@ deliver_interrupt_signal 10378,313642 | |||
| 1252 | static int volatile force_quit_count;10387,313932 | 1286 | static int volatile force_quit_count;10387,313932 |
| 1253 | handle_interrupt 10401,314414 | 1287 | handle_interrupt 10401,314414 |
| 1254 | quit_throw_to_read_char 10541,318711 | 1288 | quit_throw_to_read_char 10541,318711 |
| 1289 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,10562,319288 | ||
| 1255 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,set-input-interrupt-mode10562,319288 | 1290 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,set-input-interrupt-mode10562,319288 |
| 1291 | DEFUN ("set-output-flow-control", Fset_output_flow_control,10609,320516 | ||
| 1256 | DEFUN ("set-output-flow-control", Fset_output_flow_control,set-output-flow-control10609,320516 | 1292 | DEFUN ("set-output-flow-control", Fset_output_flow_control,set-output-flow-control10609,320516 |
| 1293 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,10643,321432 | ||
| 1257 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,set-input-meta-mode10643,321432 | 1294 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,set-input-meta-mode10643,321432 |
| 1295 | DEFUN ("set-quit-char", Fset_quit_char,10694,322706 | ||
| 1258 | DEFUN ("set-quit-char", Fset_quit_char,set-quit-char10694,322706 | 1296 | DEFUN ("set-quit-char", Fset_quit_char,set-quit-char10694,322706 |
| 1297 | DEFUN ("set-input-mode", Fset_input_mode,10729,323570 | ||
| 1259 | DEFUN ("set-input-mode", Fset_input_mode,set-input-mode10729,323570 | 1298 | DEFUN ("set-input-mode", Fset_input_mode,set-input-mode10729,323570 |
| 1299 | DEFUN ("current-input-mode", Fcurrent_input_mode,10750,324459 | ||
| 1260 | DEFUN ("current-input-mode", Fcurrent_input_mode,current-input-mode10750,324459 | 1300 | DEFUN ("current-input-mode", Fcurrent_input_mode,current-input-mode10750,324459 |
| 1301 | DEFUN ("posn-at-x-y", Fposn_at_x_y,10787,325837 | ||
| 1261 | DEFUN ("posn-at-x-y", Fposn_at_x_y,posn-at-x-y10787,325837 | 1302 | DEFUN ("posn-at-x-y", Fposn_at_x_y,posn-at-x-y10787,325837 |
| 1303 | DEFUN ("posn-at-point", Fposn_at_point,10824,327060 | ||
| 1262 | DEFUN ("posn-at-point", Fposn_at_point,posn-at-point10824,327060 | 1304 | DEFUN ("posn-at-point", Fposn_at_point,posn-at-point10824,327060 |
| 1263 | init_kboard 10861,328214 | 1305 | init_kboard 10861,328214 |
| 1264 | allocate_kboard 10893,329284 | 1306 | allocate_kboard 10893,329284 |
| @@ -4179,7 +4221,7 @@ void bar(5,69 | |||
| 4179 | int foobar(6,94 | 4221 | int foobar(6,94 |
| 4180 | interface_locate(9,131 | 4222 | interface_locate(9,131 |
| 4181 | 4223 | ||
| 4182 | c.c,1963 | 4224 | c.c,2107 |
| 4183 | my_printf 135, | 4225 | my_printf 135, |
| 4184 | void fatala 138, | 4226 | void fatala 138, |
| 4185 | max 141, | 4227 | max 141, |
| @@ -4224,8 +4266,11 @@ short array[array190, | |||
| 4224 | int f193, | 4266 | int f193, |
| 4225 | DEAFUN 196, | 4267 | DEAFUN 196, |
| 4226 | XDEFUN 203, | 4268 | XDEFUN 203, |
| 4269 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,206, | ||
| 4227 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,x-get-selection-internal206, | 4270 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,x-get-selection-internal206, |
| 4271 | Fx_get_selection_internal,212, | ||
| 4228 | Fx_get_selection_internal,x-get-selection-internal212, | 4272 | Fx_get_selection_internal,x-get-selection-internal212, |
| 4273 | Fy_get_selection_internal,216, | ||
| 4229 | Fy_get_selection_internal,y-get-selection-internal216, | 4274 | Fy_get_selection_internal,y-get-selection-internal216, |
| 4230 | defun_func1(218, | 4275 | defun_func1(218, |
| 4231 | DEFUN_func2(220, | 4276 | DEFUN_func2(220, |
diff --git a/test/etags/ETAGS.good_4 b/test/etags/ETAGS.good_4 index 12e2a6549cf..9db5e3833a2 100644 --- a/test/etags/ETAGS.good_4 +++ b/test/etags/ETAGS.good_4 | |||
| @@ -175,7 +175,7 @@ package body Truc.Bidule Truc.Bidule/b138,2153 | |||
| 175 | protected body Bidule Bidule/b139,2181 | 175 | protected body Bidule Bidule/b139,2181 |
| 176 | protected body Machin_T Machin_T/b146,2281 | 176 | protected body Machin_T Machin_T/b146,2281 |
| 177 | 177 | ||
| 178 | c-src/abbrev.c,2634 | 178 | c-src/abbrev.c,3274 |
| 179 | Lisp_Object Vabbrev_table_name_list;43,1424 | 179 | Lisp_Object Vabbrev_table_name_list;43,1424 |
| 180 | Lisp_Object Vglobal_abbrev_table;48,1569 | 180 | Lisp_Object Vglobal_abbrev_table;48,1569 |
| 181 | Lisp_Object Vfundamental_mode_abbrev_table;52,1680 | 181 | Lisp_Object Vfundamental_mode_abbrev_table;52,1680 |
| @@ -188,18 +188,29 @@ Lisp_Object Vlast_abbrev_text;75,2319 | |||
| 188 | int last_abbrev_point;79,2409 | 188 | int last_abbrev_point;79,2409 |
| 189 | Lisp_Object Vpre_abbrev_expand_hook,83,2482 | 189 | Lisp_Object Vpre_abbrev_expand_hook,83,2482 |
| 190 | Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;83,2482 | 190 | Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;83,2482 |
| 191 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,85,2546 | ||
| 191 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,make-abbrev-table85,2546 | 192 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,make-abbrev-table85,2546 |
| 193 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,92,2738 | ||
| 192 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,clear-abbrev-table92,2738 | 194 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,clear-abbrev-table92,2738 |
| 195 | DEFUN ("define-abbrev", Fdefine_abbrev,107,3119 | ||
| 193 | DEFUN ("define-abbrev", Fdefine_abbrev,define-abbrev107,3119 | 196 | DEFUN ("define-abbrev", Fdefine_abbrev,define-abbrev107,3119 |
| 197 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,149,4438 | ||
| 194 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,define-global-abbrev149,4438 | 198 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,define-global-abbrev149,4438 |
| 199 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,160,4809 | ||
| 195 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,define-mode-abbrev160,4809 | 200 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,define-mode-abbrev160,4809 |
| 201 | DEFUN ("abbrev-symbol", Fabbrev_symbol,174,5277 | ||
| 196 | DEFUN ("abbrev-symbol", Fabbrev_symbol,abbrev-symbol174,5277 | 202 | DEFUN ("abbrev-symbol", Fabbrev_symbol,abbrev-symbol174,5277 |
| 203 | DEFUN ("abbrev-expansion", Fabbrev_expansion,202,6241 | ||
| 197 | DEFUN ("abbrev-expansion", Fabbrev_expansion,abbrev-expansion202,6241 | 204 | DEFUN ("abbrev-expansion", Fabbrev_expansion,abbrev-expansion202,6241 |
| 205 | DEFUN ("expand-abbrev", Fexpand_abbrev,218,6756 | ||
| 198 | DEFUN ("expand-abbrev", Fexpand_abbrev,expand-abbrev218,6756 | 206 | DEFUN ("expand-abbrev", Fexpand_abbrev,expand-abbrev218,6756 |
| 207 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,389,11677 | ||
| 199 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,unexpand-abbrev389,11677 | 208 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,unexpand-abbrev389,11677 |
| 200 | write_abbrev 426,12884 | 209 | write_abbrev 426,12884 |
| 201 | describe_abbrev 445,13319 | 210 | describe_abbrev 445,13319 |
| 211 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,466,13834 | ||
| 202 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,insert-abbrev-table-description466,13834 | 212 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,insert-abbrev-table-description466,13834 |
| 213 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,506,14990 | ||
| 203 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,define-abbrev-table506,14990 | 214 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,define-abbrev-table506,14990 |
| 204 | syms_of_abbrev 540,16067 | 215 | syms_of_abbrev 540,16067 |
| 205 | DEFVAR_LISP ("abbrev-table-name-list"542,16087 | 216 | DEFVAR_LISP ("abbrev-table-name-list"542,16087 |
| @@ -852,7 +863,7 @@ typedef enum { RECC_ERROR 609,22953 | |||
| 852 | } re_wctype_t;618,23260 | 863 | } re_wctype_t;618,23260 |
| 853 | typedef int re_wchar_t;623,23387 | 864 | typedef int re_wchar_t;623,23387 |
| 854 | 865 | ||
| 855 | c-src/emacs/src/keyboard.c,20957 | 866 | c-src/emacs/src/keyboard.c,22931 |
| 856 | volatile int interrupt_input_blocked;76,1808 | 867 | volatile int interrupt_input_blocked;76,1808 |
| 857 | volatile bool pending_signals;80,1944 | 868 | volatile bool pending_signals;80,1944 |
| 858 | #define KBD_BUFFER_SIZE 82,1976 | 869 | #define KBD_BUFFER_SIZE 82,1976 |
| @@ -928,6 +939,7 @@ add_command_key 672,21582 | |||
| 928 | recursive_edit_1 697,22406 | 939 | recursive_edit_1 697,22406 |
| 929 | record_auto_save 742,23848 | 940 | record_auto_save 742,23848 |
| 930 | force_auto_save_soon 751,24016 | 941 | force_auto_save_soon 751,24016 |
| 942 | DEFUN ("recursive-edit", Frecursive_edit,759,24137 | ||
| 931 | DEFUN ("recursive-edit", Frecursive_edit,recursive-edit759,24137 | 943 | DEFUN ("recursive-edit", Frecursive_edit,recursive-edit759,24137 |
| 932 | recursive_edit_unwind 804,25747 | 944 | recursive_edit_unwind 804,25747 |
| 933 | any_kboard_state 817,26013 | 945 | any_kboard_state 817,26013 |
| @@ -942,16 +954,21 @@ record_single_kboard_state 943,29437 | |||
| 942 | restore_kboard_configuration 952,29621 | 954 | restore_kboard_configuration 952,29621 |
| 943 | cmd_error 970,30077 | 955 | cmd_error 970,30077 |
| 944 | cmd_error_internal 1024,31510 | 956 | cmd_error_internal 1024,31510 |
| 957 | DEFUN ("command-error-default-function", Fcommand_error_default_function,1043,32030 | ||
| 945 | DEFUN ("command-error-default-function", Fcommand_error_default_function,command-error-default-function1043,32030 | 958 | DEFUN ("command-error-default-function", Fcommand_error_default_function,command-error-default-function1043,32030 |
| 946 | command_loop 1094,33916 | 959 | command_loop 1094,33916 |
| 947 | command_loop_2 1134,35135 | 960 | command_loop_2 1134,35135 |
| 948 | top_level_2 1146,35339 | 961 | top_level_2 1146,35339 |
| 949 | top_level_1 1152,35417 | 962 | top_level_1 1152,35417 |
| 963 | DEFUN ("top-level", Ftop_level,1164,35787 | ||
| 950 | DEFUN ("top-level", Ftop_level,top-level1164,35787 | 964 | DEFUN ("top-level", Ftop_level,top-level1164,35787 |
| 951 | user_error 1183,36288 | 965 | user_error 1183,36288 |
| 966 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,1189,36429 | ||
| 952 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,exit-recursive-edit1189,36429 | 967 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,exit-recursive-edit1189,36429 |
| 968 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,1201,36819 | ||
| 953 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,abort-recursive-edit1201,36819 | 969 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,abort-recursive-edit1201,36819 |
| 954 | tracking_off 1216,37281 | 970 | tracking_off 1216,37281 |
| 971 | DEFUN ("internal--track-mouse", Ftrack_mouse,1234,37816 | ||
| 955 | DEFUN ("internal--track-mouse", Ftrack_mouse,track-mouse1234,37816 | 972 | DEFUN ("internal--track-mouse", Ftrack_mouse,track-mouse1234,37816 |
| 956 | bool ignore_mouse_drag_p;1256,38392 | 973 | bool ignore_mouse_drag_p;1256,38392 |
| 957 | some_mouse_moved 1259,38441 | 974 | some_mouse_moved 1259,38441 |
| @@ -1015,6 +1032,7 @@ Lisp_Object pending_funcalls;4377,131172 | |||
| 1015 | decode_timer 4381,131293 | 1032 | decode_timer 4381,131293 |
| 1016 | timer_check_2 4414,132246 | 1033 | timer_check_2 4414,132246 |
| 1017 | timer_check 4572,136817 | 1034 | timer_check 4572,136817 |
| 1035 | DEFUN ("current-idle-time", Fcurrent_idle_time,4607,137662 | ||
| 1018 | DEFUN ("current-idle-time", Fcurrent_idle_time,current-idle-time4607,137662 | 1036 | DEFUN ("current-idle-time", Fcurrent_idle_time,current-idle-time4607,137662 |
| 1019 | static Lisp_Object accent_key_syms;4625,138239 | 1037 | static Lisp_Object accent_key_syms;4625,138239 |
| 1020 | static Lisp_Object func_key_syms;4626,138275 | 1038 | static Lisp_Object func_key_syms;4626,138275 |
| @@ -1061,10 +1079,12 @@ static Lisp_Object modifier_symbols;6327,189449 | |||
| 1061 | lispy_modifier_list 6331,189586 | 1079 | lispy_modifier_list 6331,189586 |
| 1062 | #define KEY_TO_CHAR(6353,190252 | 1080 | #define KEY_TO_CHAR(6353,190252 |
| 1063 | parse_modifiers 6356,190328 | 1081 | parse_modifiers 6356,190328 |
| 1082 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,6399,191517 | ||
| 1064 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,event-symbol-parse-modifiers6399,191517 | 1083 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,event-symbol-parse-modifiers6399,191517 |
| 1065 | apply_modifiers 6422,192391 | 1084 | apply_modifiers 6422,192391 |
| 1066 | reorder_modifiers 6491,194720 | 1085 | reorder_modifiers 6491,194720 |
| 1067 | modify_event_symbol 6536,196528 | 1086 | modify_event_symbol 6536,196528 |
| 1087 | DEFUN ("event-convert-list", Fevent_convert_list,6628,199244 | ||
| 1068 | DEFUN ("event-convert-list", Fevent_convert_list,event-convert-list6628,199244 | 1088 | DEFUN ("event-convert-list", Fevent_convert_list,event-convert-list6628,199244 |
| 1069 | parse_solitary_modifier 6695,201135 | 1089 | parse_solitary_modifier 6695,201135 |
| 1070 | #define SINGLE_LETTER_MOD(6701,201258 | 1090 | #define SINGLE_LETTER_MOD(6701,201258 |
| @@ -1125,24 +1145,38 @@ keyremap_step 8811,261450 | |||
| 1125 | test_undefined 8867,262934 | 1145 | test_undefined 8867,262934 |
| 1126 | read_key_sequence 8916,264861 | 1146 | read_key_sequence 8916,264861 |
| 1127 | read_key_sequence_vs 9826,295821 | 1147 | read_key_sequence_vs 9826,295821 |
| 1148 | DEFUN ("read-key-sequence", Fread_key_sequence,9885,297294 | ||
| 1128 | DEFUN ("read-key-sequence", Fread_key_sequence,read-key-sequence9885,297294 | 1149 | DEFUN ("read-key-sequence", Fread_key_sequence,read-key-sequence9885,297294 |
| 1150 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,9938,299982 | ||
| 1129 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,read-key-sequence-vector9938,299982 | 1151 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,read-key-sequence-vector9938,299982 |
| 1130 | detect_input_pending 9950,300488 | 1152 | detect_input_pending 9950,300488 |
| 1131 | detect_input_pending_ignore_squeezables 9959,300654 | 1153 | detect_input_pending_ignore_squeezables 9959,300654 |
| 1132 | detect_input_pending_run_timers 9967,300870 | 1154 | detect_input_pending_run_timers 9967,300870 |
| 1133 | clear_input_pending 9985,301362 | 1155 | clear_input_pending 9985,301362 |
| 1134 | requeued_events_pending_p 9997,301732 | 1156 | requeued_events_pending_p 9997,301732 |
| 1157 | DEFUN ("input-pending-p", Finput_pending_p,10002,301813 | ||
| 1135 | DEFUN ("input-pending-p", Finput_pending_p,input-pending-p10002,301813 | 1158 | DEFUN ("input-pending-p", Finput_pending_p,input-pending-p10002,301813 |
| 1159 | DEFUN ("recent-keys", Frecent_keys,10024,302596 | ||
| 1136 | DEFUN ("recent-keys", Frecent_keys,recent-keys10024,302596 | 1160 | DEFUN ("recent-keys", Frecent_keys,recent-keys10024,302596 |
| 1161 | DEFUN ("this-command-keys", Fthis_command_keys,10055,303517 | ||
| 1137 | DEFUN ("this-command-keys", Fthis_command_keys,this-command-keys10055,303517 | 1162 | DEFUN ("this-command-keys", Fthis_command_keys,this-command-keys10055,303517 |
| 1163 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,10068,303958 | ||
| 1138 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,this-command-keys-vector10068,303958 | 1164 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,this-command-keys-vector10068,303958 |
| 1165 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,10080,304380 | ||
| 1139 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,this-single-command-keys10080,304380 | 1166 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,this-single-command-keys10080,304380 |
| 1167 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,10096,304955 | ||
| 1140 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,this-single-command-raw-keys10096,304955 | 1168 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,this-single-command-raw-keys10096,304955 |
| 1169 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,10109,305495 | ||
| 1141 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,reset-this-command-lengths10109,305495 | 1170 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,reset-this-command-lengths10109,305495 |
| 1171 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,10136,306510 | ||
| 1142 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,clear-this-command-keys10136,306510 | 1172 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,clear-this-command-keys10136,306510 |
| 1173 | DEFUN ("recursion-depth", Frecursion_depth,10158,307069 | ||
| 1143 | DEFUN ("recursion-depth", Frecursion_depth,recursion-depth10158,307069 | 1174 | DEFUN ("recursion-depth", Frecursion_depth,recursion-depth10158,307069 |
| 1175 | DEFUN ("open-dribble-file", Fopen_dribble_file,10169,307406 | ||
| 1144 | DEFUN ("open-dribble-file", Fopen_dribble_file,open-dribble-file10169,307406 | 1176 | DEFUN ("open-dribble-file", Fopen_dribble_file,open-dribble-file10169,307406 |
| 1177 | DEFUN ("discard-input", Fdiscard_input,10203,308447 | ||
| 1145 | DEFUN ("discard-input", Fdiscard_input,discard-input10203,308447 | 1178 | DEFUN ("discard-input", Fdiscard_input,discard-input10203,308447 |
| 1179 | DEFUN ("suspend-emacs", Fsuspend_emacs,10225,308949 | ||
| 1146 | DEFUN ("suspend-emacs", Fsuspend_emacs,suspend-emacs10225,308949 | 1180 | DEFUN ("suspend-emacs", Fsuspend_emacs,suspend-emacs10225,308949 |
| 1147 | stuff_buffered_input 10285,311045 | 1181 | stuff_buffered_input 10285,311045 |
| 1148 | set_waiting_for_input 10323,312016 | 1182 | set_waiting_for_input 10323,312016 |
| @@ -1152,13 +1186,21 @@ deliver_interrupt_signal 10378,313642 | |||
| 1152 | static int volatile force_quit_count;10387,313932 | 1186 | static int volatile force_quit_count;10387,313932 |
| 1153 | handle_interrupt 10401,314414 | 1187 | handle_interrupt 10401,314414 |
| 1154 | quit_throw_to_read_char 10541,318711 | 1188 | quit_throw_to_read_char 10541,318711 |
| 1189 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,10562,319288 | ||
| 1155 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,set-input-interrupt-mode10562,319288 | 1190 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,set-input-interrupt-mode10562,319288 |
| 1191 | DEFUN ("set-output-flow-control", Fset_output_flow_control,10609,320516 | ||
| 1156 | DEFUN ("set-output-flow-control", Fset_output_flow_control,set-output-flow-control10609,320516 | 1192 | DEFUN ("set-output-flow-control", Fset_output_flow_control,set-output-flow-control10609,320516 |
| 1193 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,10643,321432 | ||
| 1157 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,set-input-meta-mode10643,321432 | 1194 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,set-input-meta-mode10643,321432 |
| 1195 | DEFUN ("set-quit-char", Fset_quit_char,10694,322706 | ||
| 1158 | DEFUN ("set-quit-char", Fset_quit_char,set-quit-char10694,322706 | 1196 | DEFUN ("set-quit-char", Fset_quit_char,set-quit-char10694,322706 |
| 1197 | DEFUN ("set-input-mode", Fset_input_mode,10729,323570 | ||
| 1159 | DEFUN ("set-input-mode", Fset_input_mode,set-input-mode10729,323570 | 1198 | DEFUN ("set-input-mode", Fset_input_mode,set-input-mode10729,323570 |
| 1199 | DEFUN ("current-input-mode", Fcurrent_input_mode,10750,324459 | ||
| 1160 | DEFUN ("current-input-mode", Fcurrent_input_mode,current-input-mode10750,324459 | 1200 | DEFUN ("current-input-mode", Fcurrent_input_mode,current-input-mode10750,324459 |
| 1201 | DEFUN ("posn-at-x-y", Fposn_at_x_y,10787,325837 | ||
| 1161 | DEFUN ("posn-at-x-y", Fposn_at_x_y,posn-at-x-y10787,325837 | 1202 | DEFUN ("posn-at-x-y", Fposn_at_x_y,posn-at-x-y10787,325837 |
| 1203 | DEFUN ("posn-at-point", Fposn_at_point,10824,327060 | ||
| 1162 | DEFUN ("posn-at-point", Fposn_at_point,posn-at-point10824,327060 | 1204 | DEFUN ("posn-at-point", Fposn_at_point,posn-at-point10824,327060 |
| 1163 | init_kboard 10861,328214 | 1205 | init_kboard 10861,328214 |
| 1164 | allocate_kboard 10893,329284 | 1206 | allocate_kboard 10893,329284 |
| @@ -3996,7 +4038,7 @@ void bar(5,69 | |||
| 3996 | int foobar(6,94 | 4038 | int foobar(6,94 |
| 3997 | interface_locate(9,131 | 4039 | interface_locate(9,131 |
| 3998 | 4040 | ||
| 3999 | c.c,1663 | 4041 | c.c,1807 |
| 4000 | my_printf 135, | 4042 | my_printf 135, |
| 4001 | void fatala 138, | 4043 | void fatala 138, |
| 4002 | max 141, | 4044 | max 141, |
| @@ -4026,8 +4068,11 @@ short array[array190, | |||
| 4026 | int f193, | 4068 | int f193, |
| 4027 | DEAFUN 196, | 4069 | DEAFUN 196, |
| 4028 | XDEFUN 203, | 4070 | XDEFUN 203, |
| 4071 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,206, | ||
| 4029 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,x-get-selection-internal206, | 4072 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,x-get-selection-internal206, |
| 4073 | Fx_get_selection_internal,212, | ||
| 4030 | Fx_get_selection_internal,x-get-selection-internal212, | 4074 | Fx_get_selection_internal,x-get-selection-internal212, |
| 4075 | Fy_get_selection_internal,216, | ||
| 4031 | Fy_get_selection_internal,y-get-selection-internal216, | 4076 | Fy_get_selection_internal,y-get-selection-internal216, |
| 4032 | defun_func1(218, | 4077 | defun_func1(218, |
| 4033 | DEFUN_func2(220, | 4078 | DEFUN_func2(220, |
diff --git a/test/etags/ETAGS.good_5 b/test/etags/ETAGS.good_5 index 98de4f2c2fb..982682d0102 100644 --- a/test/etags/ETAGS.good_5 +++ b/test/etags/ETAGS.good_5 | |||
| @@ -175,7 +175,7 @@ package body Truc.Bidule Truc.Bidule/b138,2153 | |||
| 175 | protected body Bidule Bidule/b139,2181 | 175 | protected body Bidule Bidule/b139,2181 |
| 176 | protected body Machin_T Machin_T/b146,2281 | 176 | protected body Machin_T Machin_T/b146,2281 |
| 177 | 177 | ||
| 178 | c-src/abbrev.c,2634 | 178 | c-src/abbrev.c,3274 |
| 179 | Lisp_Object Vabbrev_table_name_list;43,1424 | 179 | Lisp_Object Vabbrev_table_name_list;43,1424 |
| 180 | Lisp_Object Vglobal_abbrev_table;48,1569 | 180 | Lisp_Object Vglobal_abbrev_table;48,1569 |
| 181 | Lisp_Object Vfundamental_mode_abbrev_table;52,1680 | 181 | Lisp_Object Vfundamental_mode_abbrev_table;52,1680 |
| @@ -188,18 +188,29 @@ Lisp_Object Vlast_abbrev_text;75,2319 | |||
| 188 | int last_abbrev_point;79,2409 | 188 | int last_abbrev_point;79,2409 |
| 189 | Lisp_Object Vpre_abbrev_expand_hook,83,2482 | 189 | Lisp_Object Vpre_abbrev_expand_hook,83,2482 |
| 190 | Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;83,2482 | 190 | Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;83,2482 |
| 191 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,85,2546 | ||
| 191 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,make-abbrev-table85,2546 | 192 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,make-abbrev-table85,2546 |
| 193 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,92,2738 | ||
| 192 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,clear-abbrev-table92,2738 | 194 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,clear-abbrev-table92,2738 |
| 195 | DEFUN ("define-abbrev", Fdefine_abbrev,107,3119 | ||
| 193 | DEFUN ("define-abbrev", Fdefine_abbrev,define-abbrev107,3119 | 196 | DEFUN ("define-abbrev", Fdefine_abbrev,define-abbrev107,3119 |
| 197 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,149,4438 | ||
| 194 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,define-global-abbrev149,4438 | 198 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,define-global-abbrev149,4438 |
| 199 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,160,4809 | ||
| 195 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,define-mode-abbrev160,4809 | 200 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,define-mode-abbrev160,4809 |
| 201 | DEFUN ("abbrev-symbol", Fabbrev_symbol,174,5277 | ||
| 196 | DEFUN ("abbrev-symbol", Fabbrev_symbol,abbrev-symbol174,5277 | 202 | DEFUN ("abbrev-symbol", Fabbrev_symbol,abbrev-symbol174,5277 |
| 203 | DEFUN ("abbrev-expansion", Fabbrev_expansion,202,6241 | ||
| 197 | DEFUN ("abbrev-expansion", Fabbrev_expansion,abbrev-expansion202,6241 | 204 | DEFUN ("abbrev-expansion", Fabbrev_expansion,abbrev-expansion202,6241 |
| 205 | DEFUN ("expand-abbrev", Fexpand_abbrev,218,6756 | ||
| 198 | DEFUN ("expand-abbrev", Fexpand_abbrev,expand-abbrev218,6756 | 206 | DEFUN ("expand-abbrev", Fexpand_abbrev,expand-abbrev218,6756 |
| 207 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,389,11677 | ||
| 199 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,unexpand-abbrev389,11677 | 208 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,unexpand-abbrev389,11677 |
| 200 | write_abbrev 426,12884 | 209 | write_abbrev 426,12884 |
| 201 | describe_abbrev 445,13319 | 210 | describe_abbrev 445,13319 |
| 211 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,466,13834 | ||
| 202 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,insert-abbrev-table-description466,13834 | 212 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,insert-abbrev-table-description466,13834 |
| 213 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,506,14990 | ||
| 203 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,define-abbrev-table506,14990 | 214 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,define-abbrev-table506,14990 |
| 204 | syms_of_abbrev 540,16067 | 215 | syms_of_abbrev 540,16067 |
| 205 | DEFVAR_LISP ("abbrev-table-name-list"542,16087 | 216 | DEFVAR_LISP ("abbrev-table-name-list"542,16087 |
| @@ -1118,7 +1129,7 @@ extern re_wctype_t re_wctype 621,23329 | |||
| 1118 | typedef int re_wchar_t;623,23387 | 1129 | typedef int re_wchar_t;623,23387 |
| 1119 | extern void re_set_whitespace_regexp 625,23412 | 1130 | extern void re_set_whitespace_regexp 625,23412 |
| 1120 | 1131 | ||
| 1121 | c-src/emacs/src/keyboard.c,23269 | 1132 | c-src/emacs/src/keyboard.c,25243 |
| 1122 | volatile int interrupt_input_blocked;76,1808 | 1133 | volatile int interrupt_input_blocked;76,1808 |
| 1123 | volatile bool pending_signals;80,1944 | 1134 | volatile bool pending_signals;80,1944 |
| 1124 | #define KBD_BUFFER_SIZE 82,1976 | 1135 | #define KBD_BUFFER_SIZE 82,1976 |
| @@ -1225,6 +1236,7 @@ add_command_key 672,21582 | |||
| 1225 | recursive_edit_1 697,22406 | 1236 | recursive_edit_1 697,22406 |
| 1226 | record_auto_save 742,23848 | 1237 | record_auto_save 742,23848 |
| 1227 | force_auto_save_soon 751,24016 | 1238 | force_auto_save_soon 751,24016 |
| 1239 | DEFUN ("recursive-edit", Frecursive_edit,759,24137 | ||
| 1228 | DEFUN ("recursive-edit", Frecursive_edit,recursive-edit759,24137 | 1240 | DEFUN ("recursive-edit", Frecursive_edit,recursive-edit759,24137 |
| 1229 | recursive_edit_unwind 804,25747 | 1241 | recursive_edit_unwind 804,25747 |
| 1230 | any_kboard_state 817,26013 | 1242 | any_kboard_state 817,26013 |
| @@ -1241,6 +1253,7 @@ record_single_kboard_state 943,29437 | |||
| 1241 | restore_kboard_configuration 952,29621 | 1253 | restore_kboard_configuration 952,29621 |
| 1242 | cmd_error 970,30077 | 1254 | cmd_error 970,30077 |
| 1243 | cmd_error_internal 1024,31510 | 1255 | cmd_error_internal 1024,31510 |
| 1256 | DEFUN ("command-error-default-function", Fcommand_error_default_function,1043,32030 | ||
| 1244 | DEFUN ("command-error-default-function", Fcommand_error_default_function,command-error-default-function1043,32030 | 1257 | DEFUN ("command-error-default-function", Fcommand_error_default_function,command-error-default-function1043,32030 |
| 1245 | static Lisp_Object command_loop_2 1086,33637 | 1258 | static Lisp_Object command_loop_2 1086,33637 |
| 1246 | static Lisp_Object top_level_1 1087,33686 | 1259 | static Lisp_Object top_level_1 1087,33686 |
| @@ -1248,11 +1261,15 @@ command_loop 1094,33916 | |||
| 1248 | command_loop_2 1134,35135 | 1261 | command_loop_2 1134,35135 |
| 1249 | top_level_2 1146,35339 | 1262 | top_level_2 1146,35339 |
| 1250 | top_level_1 1152,35417 | 1263 | top_level_1 1152,35417 |
| 1264 | DEFUN ("top-level", Ftop_level,1164,35787 | ||
| 1251 | DEFUN ("top-level", Ftop_level,top-level1164,35787 | 1265 | DEFUN ("top-level", Ftop_level,top-level1164,35787 |
| 1252 | user_error 1183,36288 | 1266 | user_error 1183,36288 |
| 1267 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,1189,36429 | ||
| 1253 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,exit-recursive-edit1189,36429 | 1268 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,exit-recursive-edit1189,36429 |
| 1269 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,1201,36819 | ||
| 1254 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,abort-recursive-edit1201,36819 | 1270 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,abort-recursive-edit1201,36819 |
| 1255 | tracking_off 1216,37281 | 1271 | tracking_off 1216,37281 |
| 1272 | DEFUN ("internal--track-mouse", Ftrack_mouse,1234,37816 | ||
| 1256 | DEFUN ("internal--track-mouse", Ftrack_mouse,track-mouse1234,37816 | 1273 | DEFUN ("internal--track-mouse", Ftrack_mouse,track-mouse1234,37816 |
| 1257 | bool ignore_mouse_drag_p;1256,38392 | 1274 | bool ignore_mouse_drag_p;1256,38392 |
| 1258 | some_mouse_moved 1259,38441 | 1275 | some_mouse_moved 1259,38441 |
| @@ -1320,6 +1337,7 @@ Lisp_Object pending_funcalls;4377,131172 | |||
| 1320 | decode_timer 4381,131293 | 1337 | decode_timer 4381,131293 |
| 1321 | timer_check_2 4414,132246 | 1338 | timer_check_2 4414,132246 |
| 1322 | timer_check 4572,136817 | 1339 | timer_check 4572,136817 |
| 1340 | DEFUN ("current-idle-time", Fcurrent_idle_time,4607,137662 | ||
| 1323 | DEFUN ("current-idle-time", Fcurrent_idle_time,current-idle-time4607,137662 | 1341 | DEFUN ("current-idle-time", Fcurrent_idle_time,current-idle-time4607,137662 |
| 1324 | static Lisp_Object accent_key_syms;4625,138239 | 1342 | static Lisp_Object accent_key_syms;4625,138239 |
| 1325 | static Lisp_Object func_key_syms;4626,138275 | 1343 | static Lisp_Object func_key_syms;4626,138275 |
| @@ -1366,10 +1384,12 @@ static Lisp_Object modifier_symbols;6327,189449 | |||
| 1366 | lispy_modifier_list 6331,189586 | 1384 | lispy_modifier_list 6331,189586 |
| 1367 | #define KEY_TO_CHAR(6353,190252 | 1385 | #define KEY_TO_CHAR(6353,190252 |
| 1368 | parse_modifiers 6356,190328 | 1386 | parse_modifiers 6356,190328 |
| 1387 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,6399,191517 | ||
| 1369 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,event-symbol-parse-modifiers6399,191517 | 1388 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,event-symbol-parse-modifiers6399,191517 |
| 1370 | apply_modifiers 6422,192391 | 1389 | apply_modifiers 6422,192391 |
| 1371 | reorder_modifiers 6491,194720 | 1390 | reorder_modifiers 6491,194720 |
| 1372 | modify_event_symbol 6536,196528 | 1391 | modify_event_symbol 6536,196528 |
| 1392 | DEFUN ("event-convert-list", Fevent_convert_list,6628,199244 | ||
| 1373 | DEFUN ("event-convert-list", Fevent_convert_list,event-convert-list6628,199244 | 1393 | DEFUN ("event-convert-list", Fevent_convert_list,event-convert-list6628,199244 |
| 1374 | parse_solitary_modifier 6695,201135 | 1394 | parse_solitary_modifier 6695,201135 |
| 1375 | #define SINGLE_LETTER_MOD(6701,201258 | 1395 | #define SINGLE_LETTER_MOD(6701,201258 |
| @@ -1443,24 +1463,38 @@ keyremap_step 8811,261450 | |||
| 1443 | test_undefined 8867,262934 | 1463 | test_undefined 8867,262934 |
| 1444 | read_key_sequence 8916,264861 | 1464 | read_key_sequence 8916,264861 |
| 1445 | read_key_sequence_vs 9826,295821 | 1465 | read_key_sequence_vs 9826,295821 |
| 1466 | DEFUN ("read-key-sequence", Fread_key_sequence,9885,297294 | ||
| 1446 | DEFUN ("read-key-sequence", Fread_key_sequence,read-key-sequence9885,297294 | 1467 | DEFUN ("read-key-sequence", Fread_key_sequence,read-key-sequence9885,297294 |
| 1468 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,9938,299982 | ||
| 1447 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,read-key-sequence-vector9938,299982 | 1469 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,read-key-sequence-vector9938,299982 |
| 1448 | detect_input_pending 9950,300488 | 1470 | detect_input_pending 9950,300488 |
| 1449 | detect_input_pending_ignore_squeezables 9959,300654 | 1471 | detect_input_pending_ignore_squeezables 9959,300654 |
| 1450 | detect_input_pending_run_timers 9967,300870 | 1472 | detect_input_pending_run_timers 9967,300870 |
| 1451 | clear_input_pending 9985,301362 | 1473 | clear_input_pending 9985,301362 |
| 1452 | requeued_events_pending_p 9997,301732 | 1474 | requeued_events_pending_p 9997,301732 |
| 1475 | DEFUN ("input-pending-p", Finput_pending_p,10002,301813 | ||
| 1453 | DEFUN ("input-pending-p", Finput_pending_p,input-pending-p10002,301813 | 1476 | DEFUN ("input-pending-p", Finput_pending_p,input-pending-p10002,301813 |
| 1477 | DEFUN ("recent-keys", Frecent_keys,10024,302596 | ||
| 1454 | DEFUN ("recent-keys", Frecent_keys,recent-keys10024,302596 | 1478 | DEFUN ("recent-keys", Frecent_keys,recent-keys10024,302596 |
| 1479 | DEFUN ("this-command-keys", Fthis_command_keys,10055,303517 | ||
| 1455 | DEFUN ("this-command-keys", Fthis_command_keys,this-command-keys10055,303517 | 1480 | DEFUN ("this-command-keys", Fthis_command_keys,this-command-keys10055,303517 |
| 1481 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,10068,303958 | ||
| 1456 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,this-command-keys-vector10068,303958 | 1482 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,this-command-keys-vector10068,303958 |
| 1483 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,10080,304380 | ||
| 1457 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,this-single-command-keys10080,304380 | 1484 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,this-single-command-keys10080,304380 |
| 1485 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,10096,304955 | ||
| 1458 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,this-single-command-raw-keys10096,304955 | 1486 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,this-single-command-raw-keys10096,304955 |
| 1487 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,10109,305495 | ||
| 1459 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,reset-this-command-lengths10109,305495 | 1488 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,reset-this-command-lengths10109,305495 |
| 1489 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,10136,306510 | ||
| 1460 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,clear-this-command-keys10136,306510 | 1490 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,clear-this-command-keys10136,306510 |
| 1491 | DEFUN ("recursion-depth", Frecursion_depth,10158,307069 | ||
| 1461 | DEFUN ("recursion-depth", Frecursion_depth,recursion-depth10158,307069 | 1492 | DEFUN ("recursion-depth", Frecursion_depth,recursion-depth10158,307069 |
| 1493 | DEFUN ("open-dribble-file", Fopen_dribble_file,10169,307406 | ||
| 1462 | DEFUN ("open-dribble-file", Fopen_dribble_file,open-dribble-file10169,307406 | 1494 | DEFUN ("open-dribble-file", Fopen_dribble_file,open-dribble-file10169,307406 |
| 1495 | DEFUN ("discard-input", Fdiscard_input,10203,308447 | ||
| 1463 | DEFUN ("discard-input", Fdiscard_input,discard-input10203,308447 | 1496 | DEFUN ("discard-input", Fdiscard_input,discard-input10203,308447 |
| 1497 | DEFUN ("suspend-emacs", Fsuspend_emacs,10225,308949 | ||
| 1464 | DEFUN ("suspend-emacs", Fsuspend_emacs,suspend-emacs10225,308949 | 1498 | DEFUN ("suspend-emacs", Fsuspend_emacs,suspend-emacs10225,308949 |
| 1465 | stuff_buffered_input 10285,311045 | 1499 | stuff_buffered_input 10285,311045 |
| 1466 | set_waiting_for_input 10323,312016 | 1500 | set_waiting_for_input 10323,312016 |
| @@ -1470,13 +1504,21 @@ deliver_interrupt_signal 10378,313642 | |||
| 1470 | static int volatile force_quit_count;10387,313932 | 1504 | static int volatile force_quit_count;10387,313932 |
| 1471 | handle_interrupt 10401,314414 | 1505 | handle_interrupt 10401,314414 |
| 1472 | quit_throw_to_read_char 10541,318711 | 1506 | quit_throw_to_read_char 10541,318711 |
| 1507 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,10562,319288 | ||
| 1473 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,set-input-interrupt-mode10562,319288 | 1508 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,set-input-interrupt-mode10562,319288 |
| 1509 | DEFUN ("set-output-flow-control", Fset_output_flow_control,10609,320516 | ||
| 1474 | DEFUN ("set-output-flow-control", Fset_output_flow_control,set-output-flow-control10609,320516 | 1510 | DEFUN ("set-output-flow-control", Fset_output_flow_control,set-output-flow-control10609,320516 |
| 1511 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,10643,321432 | ||
| 1475 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,set-input-meta-mode10643,321432 | 1512 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,set-input-meta-mode10643,321432 |
| 1513 | DEFUN ("set-quit-char", Fset_quit_char,10694,322706 | ||
| 1476 | DEFUN ("set-quit-char", Fset_quit_char,set-quit-char10694,322706 | 1514 | DEFUN ("set-quit-char", Fset_quit_char,set-quit-char10694,322706 |
| 1515 | DEFUN ("set-input-mode", Fset_input_mode,10729,323570 | ||
| 1477 | DEFUN ("set-input-mode", Fset_input_mode,set-input-mode10729,323570 | 1516 | DEFUN ("set-input-mode", Fset_input_mode,set-input-mode10729,323570 |
| 1517 | DEFUN ("current-input-mode", Fcurrent_input_mode,10750,324459 | ||
| 1478 | DEFUN ("current-input-mode", Fcurrent_input_mode,current-input-mode10750,324459 | 1518 | DEFUN ("current-input-mode", Fcurrent_input_mode,current-input-mode10750,324459 |
| 1519 | DEFUN ("posn-at-x-y", Fposn_at_x_y,10787,325837 | ||
| 1479 | DEFUN ("posn-at-x-y", Fposn_at_x_y,posn-at-x-y10787,325837 | 1520 | DEFUN ("posn-at-x-y", Fposn_at_x_y,posn-at-x-y10787,325837 |
| 1521 | DEFUN ("posn-at-point", Fposn_at_point,10824,327060 | ||
| 1480 | DEFUN ("posn-at-point", Fposn_at_point,posn-at-point10824,327060 | 1522 | DEFUN ("posn-at-point", Fposn_at_point,posn-at-point10824,327060 |
| 1481 | init_kboard 10861,328214 | 1523 | init_kboard 10861,328214 |
| 1482 | allocate_kboard 10893,329284 | 1524 | allocate_kboard 10893,329284 |
| @@ -4913,7 +4955,7 @@ void bar(5,69 | |||
| 4913 | int foobar(6,94 | 4955 | int foobar(6,94 |
| 4914 | interface_locate(9,131 | 4956 | interface_locate(9,131 |
| 4915 | 4957 | ||
| 4916 | c.c,2136 | 4958 | c.c,2280 |
| 4917 | void (*fa)fa131, | 4959 | void (*fa)fa131, |
| 4918 | void 132, | 4960 | void 132, |
| 4919 | my_printf 135, | 4961 | my_printf 135, |
| @@ -4965,8 +5007,11 @@ short array[array190, | |||
| 4965 | int f193, | 5007 | int f193, |
| 4966 | DEAFUN 196, | 5008 | DEAFUN 196, |
| 4967 | XDEFUN 203, | 5009 | XDEFUN 203, |
| 5010 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,206, | ||
| 4968 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,x-get-selection-internal206, | 5011 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,x-get-selection-internal206, |
| 5012 | Fx_get_selection_internal,212, | ||
| 4969 | Fx_get_selection_internal,x-get-selection-internal212, | 5013 | Fx_get_selection_internal,x-get-selection-internal212, |
| 5014 | Fy_get_selection_internal,216, | ||
| 4970 | Fy_get_selection_internal,y-get-selection-internal216, | 5015 | Fy_get_selection_internal,y-get-selection-internal216, |
| 4971 | defun_func1(218, | 5016 | defun_func1(218, |
| 4972 | DEFUN_func2(220, | 5017 | DEFUN_func2(220, |
diff --git a/test/etags/ETAGS.good_6 b/test/etags/ETAGS.good_6 index f5e0ad4407f..cf402ae50d7 100644 --- a/test/etags/ETAGS.good_6 +++ b/test/etags/ETAGS.good_6 | |||
| @@ -175,7 +175,7 @@ package body Truc.Bidule Truc.Bidule/b138,2153 | |||
| 175 | protected body Bidule Bidule/b139,2181 | 175 | protected body Bidule Bidule/b139,2181 |
| 176 | protected body Machin_T Machin_T/b146,2281 | 176 | protected body Machin_T Machin_T/b146,2281 |
| 177 | 177 | ||
| 178 | c-src/abbrev.c,2634 | 178 | c-src/abbrev.c,3274 |
| 179 | Lisp_Object Vabbrev_table_name_list;43,1424 | 179 | Lisp_Object Vabbrev_table_name_list;43,1424 |
| 180 | Lisp_Object Vglobal_abbrev_table;48,1569 | 180 | Lisp_Object Vglobal_abbrev_table;48,1569 |
| 181 | Lisp_Object Vfundamental_mode_abbrev_table;52,1680 | 181 | Lisp_Object Vfundamental_mode_abbrev_table;52,1680 |
| @@ -188,18 +188,29 @@ Lisp_Object Vlast_abbrev_text;75,2319 | |||
| 188 | int last_abbrev_point;79,2409 | 188 | int last_abbrev_point;79,2409 |
| 189 | Lisp_Object Vpre_abbrev_expand_hook,83,2482 | 189 | Lisp_Object Vpre_abbrev_expand_hook,83,2482 |
| 190 | Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;83,2482 | 190 | Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;83,2482 |
| 191 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,85,2546 | ||
| 191 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,make-abbrev-table85,2546 | 192 | DEFUN ("make-abbrev-table", Fmake_abbrev_table,make-abbrev-table85,2546 |
| 193 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,92,2738 | ||
| 192 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,clear-abbrev-table92,2738 | 194 | DEFUN ("clear-abbrev-table", Fclear_abbrev_table,clear-abbrev-table92,2738 |
| 195 | DEFUN ("define-abbrev", Fdefine_abbrev,107,3119 | ||
| 193 | DEFUN ("define-abbrev", Fdefine_abbrev,define-abbrev107,3119 | 196 | DEFUN ("define-abbrev", Fdefine_abbrev,define-abbrev107,3119 |
| 197 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,149,4438 | ||
| 194 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,define-global-abbrev149,4438 | 198 | DEFUN ("define-global-abbrev", Fdefine_global_abbrev,define-global-abbrev149,4438 |
| 199 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,160,4809 | ||
| 195 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,define-mode-abbrev160,4809 | 200 | DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,define-mode-abbrev160,4809 |
| 201 | DEFUN ("abbrev-symbol", Fabbrev_symbol,174,5277 | ||
| 196 | DEFUN ("abbrev-symbol", Fabbrev_symbol,abbrev-symbol174,5277 | 202 | DEFUN ("abbrev-symbol", Fabbrev_symbol,abbrev-symbol174,5277 |
| 203 | DEFUN ("abbrev-expansion", Fabbrev_expansion,202,6241 | ||
| 197 | DEFUN ("abbrev-expansion", Fabbrev_expansion,abbrev-expansion202,6241 | 204 | DEFUN ("abbrev-expansion", Fabbrev_expansion,abbrev-expansion202,6241 |
| 205 | DEFUN ("expand-abbrev", Fexpand_abbrev,218,6756 | ||
| 198 | DEFUN ("expand-abbrev", Fexpand_abbrev,expand-abbrev218,6756 | 206 | DEFUN ("expand-abbrev", Fexpand_abbrev,expand-abbrev218,6756 |
| 207 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,389,11677 | ||
| 199 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,unexpand-abbrev389,11677 | 208 | DEFUN ("unexpand-abbrev", Funexpand_abbrev,unexpand-abbrev389,11677 |
| 200 | write_abbrev 426,12884 | 209 | write_abbrev 426,12884 |
| 201 | describe_abbrev 445,13319 | 210 | describe_abbrev 445,13319 |
| 211 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,466,13834 | ||
| 202 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,insert-abbrev-table-description466,13834 | 212 | DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,insert-abbrev-table-description466,13834 |
| 213 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,506,14990 | ||
| 203 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,define-abbrev-table506,14990 | 214 | DEFUN ("define-abbrev-table", Fdefine_abbrev_table,define-abbrev-table506,14990 |
| 204 | syms_of_abbrev 540,16067 | 215 | syms_of_abbrev 540,16067 |
| 205 | DEFVAR_LISP ("abbrev-table-name-list"542,16087 | 216 | DEFVAR_LISP ("abbrev-table-name-list"542,16087 |
| @@ -1118,7 +1129,7 @@ extern re_wctype_t re_wctype 621,23329 | |||
| 1118 | typedef int re_wchar_t;623,23387 | 1129 | typedef int re_wchar_t;623,23387 |
| 1119 | extern void re_set_whitespace_regexp 625,23412 | 1130 | extern void re_set_whitespace_regexp 625,23412 |
| 1120 | 1131 | ||
| 1121 | c-src/emacs/src/keyboard.c,23269 | 1132 | c-src/emacs/src/keyboard.c,25243 |
| 1122 | volatile int interrupt_input_blocked;76,1808 | 1133 | volatile int interrupt_input_blocked;76,1808 |
| 1123 | volatile bool pending_signals;80,1944 | 1134 | volatile bool pending_signals;80,1944 |
| 1124 | #define KBD_BUFFER_SIZE 82,1976 | 1135 | #define KBD_BUFFER_SIZE 82,1976 |
| @@ -1225,6 +1236,7 @@ add_command_key 672,21582 | |||
| 1225 | recursive_edit_1 697,22406 | 1236 | recursive_edit_1 697,22406 |
| 1226 | record_auto_save 742,23848 | 1237 | record_auto_save 742,23848 |
| 1227 | force_auto_save_soon 751,24016 | 1238 | force_auto_save_soon 751,24016 |
| 1239 | DEFUN ("recursive-edit", Frecursive_edit,759,24137 | ||
| 1228 | DEFUN ("recursive-edit", Frecursive_edit,recursive-edit759,24137 | 1240 | DEFUN ("recursive-edit", Frecursive_edit,recursive-edit759,24137 |
| 1229 | recursive_edit_unwind 804,25747 | 1241 | recursive_edit_unwind 804,25747 |
| 1230 | any_kboard_state 817,26013 | 1242 | any_kboard_state 817,26013 |
| @@ -1241,6 +1253,7 @@ record_single_kboard_state 943,29437 | |||
| 1241 | restore_kboard_configuration 952,29621 | 1253 | restore_kboard_configuration 952,29621 |
| 1242 | cmd_error 970,30077 | 1254 | cmd_error 970,30077 |
| 1243 | cmd_error_internal 1024,31510 | 1255 | cmd_error_internal 1024,31510 |
| 1256 | DEFUN ("command-error-default-function", Fcommand_error_default_function,1043,32030 | ||
| 1244 | DEFUN ("command-error-default-function", Fcommand_error_default_function,command-error-default-function1043,32030 | 1257 | DEFUN ("command-error-default-function", Fcommand_error_default_function,command-error-default-function1043,32030 |
| 1245 | static Lisp_Object command_loop_2 1086,33637 | 1258 | static Lisp_Object command_loop_2 1086,33637 |
| 1246 | static Lisp_Object top_level_1 1087,33686 | 1259 | static Lisp_Object top_level_1 1087,33686 |
| @@ -1248,11 +1261,15 @@ command_loop 1094,33916 | |||
| 1248 | command_loop_2 1134,35135 | 1261 | command_loop_2 1134,35135 |
| 1249 | top_level_2 1146,35339 | 1262 | top_level_2 1146,35339 |
| 1250 | top_level_1 1152,35417 | 1263 | top_level_1 1152,35417 |
| 1264 | DEFUN ("top-level", Ftop_level,1164,35787 | ||
| 1251 | DEFUN ("top-level", Ftop_level,top-level1164,35787 | 1265 | DEFUN ("top-level", Ftop_level,top-level1164,35787 |
| 1252 | user_error 1183,36288 | 1266 | user_error 1183,36288 |
| 1267 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,1189,36429 | ||
| 1253 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,exit-recursive-edit1189,36429 | 1268 | DEFUN ("exit-recursive-edit", Fexit_recursive_edit,exit-recursive-edit1189,36429 |
| 1269 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,1201,36819 | ||
| 1254 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,abort-recursive-edit1201,36819 | 1270 | DEFUN ("abort-recursive-edit", Fabort_recursive_edit,abort-recursive-edit1201,36819 |
| 1255 | tracking_off 1216,37281 | 1271 | tracking_off 1216,37281 |
| 1272 | DEFUN ("internal--track-mouse", Ftrack_mouse,1234,37816 | ||
| 1256 | DEFUN ("internal--track-mouse", Ftrack_mouse,track-mouse1234,37816 | 1273 | DEFUN ("internal--track-mouse", Ftrack_mouse,track-mouse1234,37816 |
| 1257 | bool ignore_mouse_drag_p;1256,38392 | 1274 | bool ignore_mouse_drag_p;1256,38392 |
| 1258 | some_mouse_moved 1259,38441 | 1275 | some_mouse_moved 1259,38441 |
| @@ -1320,6 +1337,7 @@ Lisp_Object pending_funcalls;4377,131172 | |||
| 1320 | decode_timer 4381,131293 | 1337 | decode_timer 4381,131293 |
| 1321 | timer_check_2 4414,132246 | 1338 | timer_check_2 4414,132246 |
| 1322 | timer_check 4572,136817 | 1339 | timer_check 4572,136817 |
| 1340 | DEFUN ("current-idle-time", Fcurrent_idle_time,4607,137662 | ||
| 1323 | DEFUN ("current-idle-time", Fcurrent_idle_time,current-idle-time4607,137662 | 1341 | DEFUN ("current-idle-time", Fcurrent_idle_time,current-idle-time4607,137662 |
| 1324 | static Lisp_Object accent_key_syms;4625,138239 | 1342 | static Lisp_Object accent_key_syms;4625,138239 |
| 1325 | static Lisp_Object func_key_syms;4626,138275 | 1343 | static Lisp_Object func_key_syms;4626,138275 |
| @@ -1366,10 +1384,12 @@ static Lisp_Object modifier_symbols;6327,189449 | |||
| 1366 | lispy_modifier_list 6331,189586 | 1384 | lispy_modifier_list 6331,189586 |
| 1367 | #define KEY_TO_CHAR(6353,190252 | 1385 | #define KEY_TO_CHAR(6353,190252 |
| 1368 | parse_modifiers 6356,190328 | 1386 | parse_modifiers 6356,190328 |
| 1387 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,6399,191517 | ||
| 1369 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,event-symbol-parse-modifiers6399,191517 | 1388 | DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,event-symbol-parse-modifiers6399,191517 |
| 1370 | apply_modifiers 6422,192391 | 1389 | apply_modifiers 6422,192391 |
| 1371 | reorder_modifiers 6491,194720 | 1390 | reorder_modifiers 6491,194720 |
| 1372 | modify_event_symbol 6536,196528 | 1391 | modify_event_symbol 6536,196528 |
| 1392 | DEFUN ("event-convert-list", Fevent_convert_list,6628,199244 | ||
| 1373 | DEFUN ("event-convert-list", Fevent_convert_list,event-convert-list6628,199244 | 1393 | DEFUN ("event-convert-list", Fevent_convert_list,event-convert-list6628,199244 |
| 1374 | parse_solitary_modifier 6695,201135 | 1394 | parse_solitary_modifier 6695,201135 |
| 1375 | #define SINGLE_LETTER_MOD(6701,201258 | 1395 | #define SINGLE_LETTER_MOD(6701,201258 |
| @@ -1443,24 +1463,38 @@ keyremap_step 8811,261450 | |||
| 1443 | test_undefined 8867,262934 | 1463 | test_undefined 8867,262934 |
| 1444 | read_key_sequence 8916,264861 | 1464 | read_key_sequence 8916,264861 |
| 1445 | read_key_sequence_vs 9826,295821 | 1465 | read_key_sequence_vs 9826,295821 |
| 1466 | DEFUN ("read-key-sequence", Fread_key_sequence,9885,297294 | ||
| 1446 | DEFUN ("read-key-sequence", Fread_key_sequence,read-key-sequence9885,297294 | 1467 | DEFUN ("read-key-sequence", Fread_key_sequence,read-key-sequence9885,297294 |
| 1468 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,9938,299982 | ||
| 1447 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,read-key-sequence-vector9938,299982 | 1469 | DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,read-key-sequence-vector9938,299982 |
| 1448 | detect_input_pending 9950,300488 | 1470 | detect_input_pending 9950,300488 |
| 1449 | detect_input_pending_ignore_squeezables 9959,300654 | 1471 | detect_input_pending_ignore_squeezables 9959,300654 |
| 1450 | detect_input_pending_run_timers 9967,300870 | 1472 | detect_input_pending_run_timers 9967,300870 |
| 1451 | clear_input_pending 9985,301362 | 1473 | clear_input_pending 9985,301362 |
| 1452 | requeued_events_pending_p 9997,301732 | 1474 | requeued_events_pending_p 9997,301732 |
| 1475 | DEFUN ("input-pending-p", Finput_pending_p,10002,301813 | ||
| 1453 | DEFUN ("input-pending-p", Finput_pending_p,input-pending-p10002,301813 | 1476 | DEFUN ("input-pending-p", Finput_pending_p,input-pending-p10002,301813 |
| 1477 | DEFUN ("recent-keys", Frecent_keys,10024,302596 | ||
| 1454 | DEFUN ("recent-keys", Frecent_keys,recent-keys10024,302596 | 1478 | DEFUN ("recent-keys", Frecent_keys,recent-keys10024,302596 |
| 1479 | DEFUN ("this-command-keys", Fthis_command_keys,10055,303517 | ||
| 1455 | DEFUN ("this-command-keys", Fthis_command_keys,this-command-keys10055,303517 | 1480 | DEFUN ("this-command-keys", Fthis_command_keys,this-command-keys10055,303517 |
| 1481 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,10068,303958 | ||
| 1456 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,this-command-keys-vector10068,303958 | 1482 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,this-command-keys-vector10068,303958 |
| 1483 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,10080,304380 | ||
| 1457 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,this-single-command-keys10080,304380 | 1484 | DEFUN ("this-single-command-keys", Fthis_single_command_keys,this-single-command-keys10080,304380 |
| 1485 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,10096,304955 | ||
| 1458 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,this-single-command-raw-keys10096,304955 | 1486 | DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,this-single-command-raw-keys10096,304955 |
| 1487 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,10109,305495 | ||
| 1459 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,reset-this-command-lengths10109,305495 | 1488 | DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,reset-this-command-lengths10109,305495 |
| 1489 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,10136,306510 | ||
| 1460 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,clear-this-command-keys10136,306510 | 1490 | DEFUN ("clear-this-command-keys", Fclear_this_command_keys,clear-this-command-keys10136,306510 |
| 1491 | DEFUN ("recursion-depth", Frecursion_depth,10158,307069 | ||
| 1461 | DEFUN ("recursion-depth", Frecursion_depth,recursion-depth10158,307069 | 1492 | DEFUN ("recursion-depth", Frecursion_depth,recursion-depth10158,307069 |
| 1493 | DEFUN ("open-dribble-file", Fopen_dribble_file,10169,307406 | ||
| 1462 | DEFUN ("open-dribble-file", Fopen_dribble_file,open-dribble-file10169,307406 | 1494 | DEFUN ("open-dribble-file", Fopen_dribble_file,open-dribble-file10169,307406 |
| 1495 | DEFUN ("discard-input", Fdiscard_input,10203,308447 | ||
| 1463 | DEFUN ("discard-input", Fdiscard_input,discard-input10203,308447 | 1496 | DEFUN ("discard-input", Fdiscard_input,discard-input10203,308447 |
| 1497 | DEFUN ("suspend-emacs", Fsuspend_emacs,10225,308949 | ||
| 1464 | DEFUN ("suspend-emacs", Fsuspend_emacs,suspend-emacs10225,308949 | 1498 | DEFUN ("suspend-emacs", Fsuspend_emacs,suspend-emacs10225,308949 |
| 1465 | stuff_buffered_input 10285,311045 | 1499 | stuff_buffered_input 10285,311045 |
| 1466 | set_waiting_for_input 10323,312016 | 1500 | set_waiting_for_input 10323,312016 |
| @@ -1470,13 +1504,21 @@ deliver_interrupt_signal 10378,313642 | |||
| 1470 | static int volatile force_quit_count;10387,313932 | 1504 | static int volatile force_quit_count;10387,313932 |
| 1471 | handle_interrupt 10401,314414 | 1505 | handle_interrupt 10401,314414 |
| 1472 | quit_throw_to_read_char 10541,318711 | 1506 | quit_throw_to_read_char 10541,318711 |
| 1507 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,10562,319288 | ||
| 1473 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,set-input-interrupt-mode10562,319288 | 1508 | DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,set-input-interrupt-mode10562,319288 |
| 1509 | DEFUN ("set-output-flow-control", Fset_output_flow_control,10609,320516 | ||
| 1474 | DEFUN ("set-output-flow-control", Fset_output_flow_control,set-output-flow-control10609,320516 | 1510 | DEFUN ("set-output-flow-control", Fset_output_flow_control,set-output-flow-control10609,320516 |
| 1511 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,10643,321432 | ||
| 1475 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,set-input-meta-mode10643,321432 | 1512 | DEFUN ("set-input-meta-mode", Fset_input_meta_mode,set-input-meta-mode10643,321432 |
| 1513 | DEFUN ("set-quit-char", Fset_quit_char,10694,322706 | ||
| 1476 | DEFUN ("set-quit-char", Fset_quit_char,set-quit-char10694,322706 | 1514 | DEFUN ("set-quit-char", Fset_quit_char,set-quit-char10694,322706 |
| 1515 | DEFUN ("set-input-mode", Fset_input_mode,10729,323570 | ||
| 1477 | DEFUN ("set-input-mode", Fset_input_mode,set-input-mode10729,323570 | 1516 | DEFUN ("set-input-mode", Fset_input_mode,set-input-mode10729,323570 |
| 1517 | DEFUN ("current-input-mode", Fcurrent_input_mode,10750,324459 | ||
| 1478 | DEFUN ("current-input-mode", Fcurrent_input_mode,current-input-mode10750,324459 | 1518 | DEFUN ("current-input-mode", Fcurrent_input_mode,current-input-mode10750,324459 |
| 1519 | DEFUN ("posn-at-x-y", Fposn_at_x_y,10787,325837 | ||
| 1479 | DEFUN ("posn-at-x-y", Fposn_at_x_y,posn-at-x-y10787,325837 | 1520 | DEFUN ("posn-at-x-y", Fposn_at_x_y,posn-at-x-y10787,325837 |
| 1521 | DEFUN ("posn-at-point", Fposn_at_point,10824,327060 | ||
| 1480 | DEFUN ("posn-at-point", Fposn_at_point,posn-at-point10824,327060 | 1522 | DEFUN ("posn-at-point", Fposn_at_point,posn-at-point10824,327060 |
| 1481 | init_kboard 10861,328214 | 1523 | init_kboard 10861,328214 |
| 1482 | allocate_kboard 10893,329284 | 1524 | allocate_kboard 10893,329284 |
| @@ -4913,7 +4955,7 @@ void bar(5,69 | |||
| 4913 | int foobar(6,94 | 4955 | int foobar(6,94 |
| 4914 | interface_locate(9,131 | 4956 | interface_locate(9,131 |
| 4915 | 4957 | ||
| 4916 | c.c,2136 | 4958 | c.c,2280 |
| 4917 | void (*fa)fa131, | 4959 | void (*fa)fa131, |
| 4918 | void 132, | 4960 | void 132, |
| 4919 | my_printf 135, | 4961 | my_printf 135, |
| @@ -4965,8 +5007,11 @@ short array[array190, | |||
| 4965 | int f193, | 5007 | int f193, |
| 4966 | DEAFUN 196, | 5008 | DEAFUN 196, |
| 4967 | XDEFUN 203, | 5009 | XDEFUN 203, |
| 5010 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,206, | ||
| 4968 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,x-get-selection-internal206, | 5011 | DEFUN ("x-get-selection-internal", Fx_get_selection_internal,x-get-selection-internal206, |
| 5012 | Fx_get_selection_internal,212, | ||
| 4969 | Fx_get_selection_internal,x-get-selection-internal212, | 5013 | Fx_get_selection_internal,x-get-selection-internal212, |
| 5014 | Fy_get_selection_internal,216, | ||
| 4970 | Fy_get_selection_internal,y-get-selection-internal216, | 5015 | Fy_get_selection_internal,y-get-selection-internal216, |
| 4971 | defun_func1(218, | 5016 | defun_func1(218, |
| 4972 | DEFUN_func2(220, | 5017 | DEFUN_func2(220, |