diff options
| author | Paul Eggert | 2016-09-26 13:35:56 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-09-26 13:35:56 -0700 |
| commit | fffa49b136b02052073fa584cf7b9fe99b1bf951 (patch) | |
| tree | 6065ab2578cfdd73012045e8911a065ab9e0fe0c | |
| parent | 2914d52129032c471a6754f4a3961a9dffdc7b18 (diff) | |
| parent | cf9e174ae1d3b1428982204b0786a7db13d94ab7 (diff) | |
| download | emacs-fffa49b136b02052073fa584cf7b9fe99b1bf951.tar.gz emacs-fffa49b136b02052073fa584cf7b9fe99b1bf951.zip | |
Merge from origin/emacs-25
cf9e174 Document the optional zlib library in MS-Windows builds
84eb144 ; * admin/notes/unicode: Mention BidiCharacterTest.txt.
73c67dd Fix tagging of DEFUN by etags
ea1960b Avoid resetting track-mouse by mouse clicks
505fef3 Improve nt/README.W32 instructions
1229cc4 Document that desktop file overrides frame parameters
f0eb70d ; Update ChangeLog.2 and ldef-boot.el for Emacs 25.1 release
# Conflicts:
# ChangeLog.2
# admin/notes/unicode
# lisp/ldefs-boot.el
| -rw-r--r-- | ChangeLog.2 | 108 | ||||
| -rw-r--r-- | admin/notes/unicode | 15 | ||||
| -rw-r--r-- | doc/emacs/frames.texi | 8 | ||||
| -rw-r--r-- | doc/emacs/misc.texi | 11 | ||||
| -rw-r--r-- | etc/HISTORY | 2 | ||||
| -rw-r--r-- | lib-src/etags.c | 18 | ||||
| -rw-r--r-- | lisp/mouse.el | 10 | ||||
| -rw-r--r-- | nt/INSTALL | 9 | ||||
| -rw-r--r-- | nt/INSTALL.W64 | 10 | ||||
| -rw-r--r-- | nt/README.W32 | 79 | ||||
| -rw-r--r-- | test/manual/etags/CTAGS.good | 45 | ||||
| -rw-r--r-- | test/manual/etags/ETAGS.good_1 | 51 | ||||
| -rw-r--r-- | test/manual/etags/ETAGS.good_2 | 51 | ||||
| -rw-r--r-- | test/manual/etags/ETAGS.good_3 | 51 | ||||
| -rw-r--r-- | test/manual/etags/ETAGS.good_4 | 51 | ||||
| -rw-r--r-- | test/manual/etags/ETAGS.good_5 | 51 | ||||
| -rw-r--r-- | test/manual/etags/ETAGS.good_6 | 51 |
17 files changed, 581 insertions, 40 deletions
diff --git a/ChangeLog.2 b/ChangeLog.2 index 4e792955e7b..3f3d558b561 100644 --- a/ChangeLog.2 +++ b/ChangeLog.2 | |||
| @@ -1,3 +1,110 @@ | |||
| 1 | 2016-09-26 Nicolas Petton <nicolas@petton.fr> | ||
| 2 | |||
| 3 | * Version 25.1 released. | ||
| 4 | |||
| 5 | 2016-09-26 Nicolas Petton <nicolas@petton.fr> | ||
| 6 | |||
| 7 | * etc/AUTHORS: Regenerate the AUTHORS file | ||
| 8 | |||
| 9 | 2016-09-26 Eli Zaretskii <eliz@gnu.org> | ||
| 10 | |||
| 11 | Update admin/authors.el | ||
| 12 | |||
| 13 | * admin/authors.el (authors-fixed-entries): Add an entry for Bob | ||
| 14 | Weiner. | ||
| 15 | |||
| 16 | 2016-09-26 Eli Zaretskii <eliz@gnu.org> | ||
| 17 | |||
| 18 | Update Antinews in ELisp manual | ||
| 19 | |||
| 20 | * doc/lispref/anti.texi (Antinews): Update for Emacs 25.1. | ||
| 21 | * doc/lispref/elisp.texi (Top): Update the main menu entry for | ||
| 22 | Antinews. | ||
| 23 | |||
| 24 | 2016-09-26 Noam Postavsky <npostavs@gmail.com> | ||
| 25 | |||
| 26 | Fix comments on window height macros | ||
| 27 | |||
| 28 | * src/window.h (WINDOW_MODE_LINE_HEIGHT, WINDOW_HEADER_LINE_HEIGHT): Fix | ||
| 29 | confusing claim that "height is in pixels and in lines"; in fact it's in | ||
| 30 | pixels. | ||
| 31 | |||
| 32 | 2016-09-26 Toke Høiland-Jørgensen <toke@toke.dk> (tiny change) | ||
| 33 | |||
| 34 | Fix 'url-http-create-request' when cookies are used | ||
| 35 | |||
| 36 | * lisp/url/url-http.el (url-http-create-request): Make sure the | ||
| 37 | cookie headers are a unibyte string. For the details, see | ||
| 38 | http://lists.gnu.org/archive/html/emacs-devel/2016-09/msg00202.html. | ||
| 39 | |||
| 40 | 2016-09-26 Martin Rudalics <rudalics@gmx.at> | ||
| 41 | |||
| 42 | Fix cross reference in frames.texi | ||
| 43 | |||
| 44 | * doc/lispref/frames.texi (Minibuffers and Frames): Fix cross | ||
| 45 | reference. | ||
| 46 | |||
| 47 | 2016-09-26 immerrr <immerrr@gmail.com> | ||
| 48 | |||
| 49 | Fix regexp-opt documentation (bug #17862) | ||
| 50 | |||
| 51 | * lisp/emacs-lisp/regexp-opt.el (regexp-opt): | ||
| 52 | * doc/lispref/searching.texi (Regexp Functions): Update PAREN doc. | ||
| 53 | |||
| 54 | 2016-09-26 Nicolas Richard <youngfrog@members.fsf.org> | ||
| 55 | |||
| 56 | * lisp/emacs-lisp/gv.el (gv-ref): Fix example of PLACE in docstring. | ||
| 57 | |||
| 58 | 2016-09-26 Noam Postavsky <npostavs@gmail.com> | ||
| 59 | |||
| 60 | Fix tags-query-replace docstring | ||
| 61 | |||
| 62 | * lisp/progmodes/etags.el (tags-query-replace): Remove incorrect info | ||
| 63 | regarding non-existent parameters. | ||
| 64 | |||
| 65 | 2016-09-26 Eli Zaretskii <eliz@gnu.org> | ||
| 66 | |||
| 67 | Clarify documentation of precision in format specs | ||
| 68 | |||
| 69 | * doc/lispref/strings.texi (Formatting Strings): Be less | ||
| 70 | definitive wrt what precision means in format specs other than | ||
| 71 | floating-point, %s and %S. (Bug#24314) | ||
| 72 | |||
| 73 | 2016-09-26 Eli Zaretskii <eliz@gnu.org> | ||
| 74 | |||
| 75 | Improve and clarify documentation of subprocesses | ||
| 76 | |||
| 77 | * doc/lispref/processes.texi (Subprocess Creation, Shell Arguments): | ||
| 78 | Mention 'make-process' rather than 'start-process'. Update wrt | ||
| 79 | standard destinations of standard output/error streams and due to | ||
| 80 | different formats of arguments accepted by 'make-process'. | ||
| 81 | (Processes): Mention process objects that represent connections. | ||
| 82 | (Synchronous Processes): Minor clarifications. | ||
| 83 | (Asynchronous Processes): Describe 'make-process' and | ||
| 84 | 'make-pipe-process' before 'start-process'. Update and expand the | ||
| 85 | documentation. | ||
| 86 | (Deleting Processes, Process Information, Input to Processes) | ||
| 87 | (Signals to Processes, Query Before Exit, Network): Update and | ||
| 88 | expand the documentation, especially wrt process objects that | ||
| 89 | represent connections. | ||
| 90 | (Output from Processes): Mention the possibility of separating | ||
| 91 | stderr via 'make-process'. | ||
| 92 | (Filter Functions): Mention that stderr by default arrives at the | ||
| 93 | filter function together with stdout. (Bug#24287) | ||
| 94 | |||
| 95 | * src/process.c (Fprocess_id, Fprocess_command) | ||
| 96 | (Fprocess_contact, Fprocess_type, Fstop_process): Doc fixes for | ||
| 97 | process objects that represent connections. | ||
| 98 | |||
| 99 | 2016-09-26 Paul Eggert <eggert@cs.ucla.edu> | ||
| 100 | |||
| 101 | * etc/PROBLEMS: Mention gnutls-cli 3.5.3 (Bug#24247). | ||
| 102 | |||
| 103 | 2016-09-26 Nicolas Petton <nicolas@petton.fr> | ||
| 104 | |||
| 105 | * etc/AUTHORS: Update the AUTHORS file | ||
| 106 | |||
| 107 | 2016-09-26 Philipp Stephani <phst@google.com> | ||
| 1 | 2016-08-22 Philipp Stephani <phst@google.com> | 108 | 2016-08-22 Philipp Stephani <phst@google.com> |
| 2 | 109 | ||
| 3 | Some assorted documentation clarifications | 110 | Some assorted documentation clarifications |
| @@ -37627,6 +37734,7 @@ | |||
| 37627 | 37734 | ||
| 37628 | This file records repository revisions from | 37735 | This file records repository revisions from |
| 37629 | commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to | 37736 | commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to |
| 37737 | 2016-09-26c9cef49b0fceb3c5e904837ea5675fe4306ac (inclusive). | ||
| 37630 | 2016-08-22bb813cfea53e4162409f2adc0a793ab301894 (inclusive). | 37738 | 2016-08-22bb813cfea53e4162409f2adc0a793ab301894 (inclusive). |
| 37631 | 2016-08-05faead6df626b3737c10f98e9c4964232aa6b9 (inclusive). | 37739 | 2016-08-05faead6df626b3737c10f98e9c4964232aa6b9 (inclusive). |
| 37632 | 2016-06-19d77d8dbd5b051bb681bacaee4a6faffbbdde9 (inclusive). | 37740 | 2016-06-19d77d8dbd5b051bb681bacaee4a6faffbbdde9 (inclusive). |
diff --git a/admin/notes/unicode b/admin/notes/unicode index 65df2166f28..c8a956d620a 100644 --- a/admin/notes/unicode +++ b/admin/notes/unicode | |||
| @@ -15,11 +15,12 @@ Emacs uses the following files from the Unicode Character Database | |||
| 15 | . BidiBrackets.txt | 15 | . BidiBrackets.txt |
| 16 | . IVD_Sequences.txt | 16 | . IVD_Sequences.txt |
| 17 | . NormalizationTest.txt | 17 | . NormalizationTest.txt |
| 18 | . BidiCharacterTest.txt | ||
| 18 | 19 | ||
| 19 | First, these files need to be copied into admin/unidata/, and then | 20 | First, the first 6 files need to be copied into admin/unidata/, and |
| 20 | Emacs should be rebuilt for them to take effect. Rebuilding Emacs | 21 | then Emacs should be rebuilt for them to take effect. Rebuilding |
| 21 | updates several derived files elsewhere in the Emacs source tree, | 22 | Emacs updates several derived files elsewhere in the Emacs source |
| 22 | mainly in lisp/international/. | 23 | tree, mainly in lisp/international/. |
| 23 | 24 | ||
| 24 | When Emacs is rebuilt for the first time after importing the new | 25 | When Emacs is rebuilt for the first time after importing the new |
| 25 | files, pay attention to any warning or error messages. In particular, | 26 | files, pay attention to any warning or error messages. In particular, |
| @@ -49,7 +50,7 @@ might need to be updated because it knows about used and unused ranges | |||
| 49 | of Unicode codepoints, which a new release of the Unicode Standard | 50 | of Unicode codepoints, which a new release of the Unicode Standard |
| 50 | could change. | 51 | could change. |
| 51 | 52 | ||
| 52 | Finally, test normalization functions against NormalizationTests.txt, | 53 | Next, test normalization functions against NormalizationTests.txt, |
| 53 | in the test/ directory run: | 54 | in the test/ directory run: |
| 54 | 55 | ||
| 55 | make lisp/international/ucs-normalize-tests | 56 | make lisp/international/ucs-normalize-tests |
| @@ -57,6 +58,10 @@ in the test/ directory run: | |||
| 57 | See commentary in test/lisp/international/ucs-normalize-tests.el | 58 | See commentary in test/lisp/international/ucs-normalize-tests.el |
| 58 | regarding failing lines. | 59 | regarding failing lines. |
| 59 | 60 | ||
| 61 | The file BidiCharacterTest.txt should be copied to the test suite, and | ||
| 62 | if its format has changed, the file biditest.el there should be | ||
| 63 | modified to follow suit. | ||
| 64 | |||
| 60 | Problems, fixmes and other unicode-related issues | 65 | Problems, fixmes and other unicode-related issues |
| 61 | ------------------------------------------------------------- | 66 | ------------------------------------------------------------- |
| 62 | 67 | ||
diff --git a/doc/emacs/frames.texi b/doc/emacs/frames.texi index 03172b62cf5..082de3796c1 100644 --- a/doc/emacs/frames.texi +++ b/doc/emacs/frames.texi | |||
| @@ -925,6 +925,14 @@ the initial frame, by customizing the variable | |||
| 925 | specify colors and fonts don't affect menus and the menu bar, since | 925 | specify colors and fonts don't affect menus and the menu bar, since |
| 926 | those are drawn by the toolkit and not directly by Emacs. | 926 | those are drawn by the toolkit and not directly by Emacs. |
| 927 | 927 | ||
| 928 | Note that if you are using the desktop library to save and restore | ||
| 929 | your sessions, the frames to be restored are recorded in the desktop | ||
| 930 | file, together with their parameters. When these frames are restored, | ||
| 931 | the recorded parameters take precedence over the frame parameters | ||
| 932 | specified by @code{default-frame-alist} and @code{initial-frame-alist} | ||
| 933 | in your init file. @xref{Saving Emacs Sessions}, for how to avoid | ||
| 934 | that. | ||
| 935 | |||
| 928 | @node Scroll Bars | 936 | @node Scroll Bars |
| 929 | @section Scroll Bars | 937 | @section Scroll Bars |
| 930 | @cindex Scroll Bar mode | 938 | @cindex Scroll Bar mode |
diff --git a/doc/emacs/misc.texi b/doc/emacs/misc.texi index 502ccad1382..f38a797b36c 100644 --- a/doc/emacs/misc.texi +++ b/doc/emacs/misc.texi | |||
| @@ -2371,6 +2371,17 @@ To disable this, set @code{desktop-restore-frames} to @code{nil}. | |||
| 2371 | (See that variable's documentation for some related options | 2371 | (See that variable's documentation for some related options |
| 2372 | that you can customize to fine-tune this behavior.) | 2372 | that you can customize to fine-tune this behavior.) |
| 2373 | 2373 | ||
| 2374 | @vindex frameset-filter-alist | ||
| 2375 | When the desktop restores the frame and window configuration, it | ||
| 2376 | uses the recorded values of frame parameters, disregarding any | ||
| 2377 | settings for those parameters you have in your init file (@pxref{Init | ||
| 2378 | File}). This means that frame parameters such as fonts and faces for | ||
| 2379 | the restored frames will come from the desktop file, where they were | ||
| 2380 | saved when you exited your previous Emacs session; any settings for | ||
| 2381 | those parameters in your init file will be ignored. To disable this, | ||
| 2382 | customize the value of @code{frameset-filter-alist} to filter out the | ||
| 2383 | frame parameters you don't want to be restored. | ||
| 2384 | |||
| 2374 | @findex desktop-save | 2385 | @findex desktop-save |
| 2375 | @vindex desktop-save-mode | 2386 | @vindex desktop-save-mode |
| 2376 | You can save the desktop manually with the command @kbd{M-x | 2387 | You can save the desktop manually with the command @kbd{M-x |
diff --git a/etc/HISTORY b/etc/HISTORY index 810702622fa..43790bb92bc 100644 --- a/etc/HISTORY +++ b/etc/HISTORY | |||
| @@ -207,6 +207,8 @@ GNU Emacs 24.4 (2014-10-20) emacs-24.4 | |||
| 207 | 207 | ||
| 208 | GNU Emacs 24.5 (2015-04-10) emacs-24.5 | 208 | GNU Emacs 24.5 (2015-04-10) emacs-24.5 |
| 209 | 209 | ||
| 210 | GNU Emacs 25.1 (2016-09-16) emacs-25.1 | ||
| 211 | |||
| 210 | 212 | ||
| 211 | ---------------------------------------------------------------------- | 213 | ---------------------------------------------------------------------- |
| 212 | This file is part of GNU Emacs. | 214 | This file is part of GNU Emacs. |
diff --git a/lib-src/etags.c b/lib-src/etags.c index 3620b0fd321..a81b46d2e07 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -3595,13 +3595,27 @@ C_entries (int c_ext, FILE *inf) | |||
| 3595 | int off = tokoff; | 3595 | int off = tokoff; |
| 3596 | int len = toklen; | 3596 | int len = toklen; |
| 3597 | 3597 | ||
| 3598 | /* Rewrite the tag so that emacs lisp DEFUNs | ||
| 3599 | can be found by their elisp name */ | ||
| 3600 | if (defun) | 3598 | if (defun) |
| 3601 | { | 3599 | { |
| 3602 | off += 1; | 3600 | off += 1; |
| 3603 | len -= 1; | 3601 | len -= 1; |
| 3602 | |||
| 3603 | /* First, tag it as its C name */ | ||
| 3604 | linebuffer_setlen (&token_name, toklen); | ||
| 3605 | memcpy (token_name.buffer, | ||
| 3606 | newlb.buffer + tokoff, toklen); | ||
| 3607 | token_name.buffer[toklen] = '\0'; | ||
| 3608 | token.named = true; | ||
| 3609 | token.lineno = lineno; | ||
| 3610 | token.offset = tokoff; | ||
| 3611 | token.length = toklen; | ||
| 3612 | token.line = newlb.buffer; | ||
| 3613 | token.linepos = newlinepos; | ||
| 3614 | token.valid = true; | ||
| 3615 | make_C_tag (funorvar); | ||
| 3604 | } | 3616 | } |
| 3617 | /* Rewrite the tag so that emacs lisp DEFUNs | ||
| 3618 | can be found also by their elisp name */ | ||
| 3605 | linebuffer_setlen (&token_name, len); | 3619 | linebuffer_setlen (&token_name, len); |
| 3606 | memcpy (token_name.buffer, | 3620 | memcpy (token_name.buffer, |
| 3607 | newlb.buffer + off, len); | 3621 | newlb.buffer + off, len); |
diff --git a/lisp/mouse.el b/lisp/mouse.el index 2a9a62feae8..8c83f5e8f97 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el | |||
| @@ -493,7 +493,8 @@ must be one of the symbols `header', `mode', or `vertical'." | |||
| 493 | (window-pixel-height window))))) | 493 | (window-pixel-height window))))) |
| 494 | (setq dragged t) | 494 | (setq dragged t) |
| 495 | (adjust-window-trailing-edge window growth nil t)) | 495 | (adjust-window-trailing-edge window growth nil t)) |
| 496 | (setq last-position position)))))) | 496 | (setq last-position position))))) |
| 497 | (old-track-mouse track-mouse)) | ||
| 497 | ;; Start tracking. The special value 'dragging' signals the | 498 | ;; Start tracking. The special value 'dragging' signals the |
| 498 | ;; display engine to freeze the mouse pointer shape for as long | 499 | ;; display engine to freeze the mouse pointer shape for as long |
| 499 | ;; as we drag. | 500 | ;; as we drag. |
| @@ -526,7 +527,7 @@ must be one of the symbols `header', `mode', or `vertical'." | |||
| 526 | (define-key map [right-divider] map) | 527 | (define-key map [right-divider] map) |
| 527 | (define-key map [bottom-divider] map) | 528 | (define-key map [bottom-divider] map) |
| 528 | map) | 529 | map) |
| 529 | t (lambda () (setq track-mouse nil))))))) | 530 | t (lambda () (setq track-mouse old-track-mouse))))))) |
| 530 | 531 | ||
| 531 | (defun mouse-drag-mode-line (start-event) | 532 | (defun mouse-drag-mode-line (start-event) |
| 532 | "Change the height of a window by dragging on the mode line." | 533 | "Change the height of a window by dragging on the mode line." |
| @@ -853,7 +854,8 @@ The region will be defined with mark and point." | |||
| 853 | (click-count (1- (event-click-count start-event))) | 854 | (click-count (1- (event-click-count start-event))) |
| 854 | ;; Suppress automatic hscrolling, because that is a nuisance | 855 | ;; Suppress automatic hscrolling, because that is a nuisance |
| 855 | ;; when setting point near the right fringe (but see below). | 856 | ;; when setting point near the right fringe (but see below). |
| 856 | (auto-hscroll-mode-saved auto-hscroll-mode)) | 857 | (auto-hscroll-mode-saved auto-hscroll-mode) |
| 858 | (old-track-mouse track-mouse)) | ||
| 857 | 859 | ||
| 858 | (setq mouse-selection-click-count click-count) | 860 | (setq mouse-selection-click-count click-count) |
| 859 | ;; In case the down click is in the middle of some intangible text, | 861 | ;; In case the down click is in the middle of some intangible text, |
| @@ -905,7 +907,7 @@ The region will be defined with mark and point." | |||
| 905 | nil start-point)))))))) | 907 | nil start-point)))))))) |
| 906 | map) | 908 | map) |
| 907 | t (lambda () | 909 | t (lambda () |
| 908 | (setq track-mouse nil) | 910 | (setq track-mouse old-track-mouse) |
| 909 | (setq auto-hscroll-mode auto-hscroll-mode-saved) | 911 | (setq auto-hscroll-mode auto-hscroll-mode-saved) |
| 910 | (deactivate-mark) | 912 | (deactivate-mark) |
| 911 | (pop-mark))))) | 913 | (pop-mark))))) |
diff --git a/nt/INSTALL b/nt/INSTALL index 99a2f3988f9..fff0eb6f8d9 100644 --- a/nt/INSTALL +++ b/nt/INSTALL | |||
| @@ -784,6 +784,15 @@ build will run on Windows 9X and newer systems). | |||
| 784 | You need the libiconv-X.Y.Z-N-mingw32-dev.tar.lzma tarball from that | 784 | You need the libiconv-X.Y.Z-N-mingw32-dev.tar.lzma tarball from that |
| 785 | site. | 785 | site. |
| 786 | 786 | ||
| 787 | * Optional support for decompressing text | ||
| 788 | |||
| 789 | Emacs can decompress text if compiled with the zlib library. | ||
| 790 | Prebuilt binaries of zlib DLL (for 32-bit builds of Emacs) are | ||
| 791 | available from the ezwinports site; see above for the URL. | ||
| 792 | |||
| 793 | (This library is also a prerequisite for several image libraries, so | ||
| 794 | you may already have it; look for zlib1.dll or libz-1.dll.) | ||
| 795 | |||
| 787 | 796 | ||
| 788 | This file is part of GNU Emacs. | 797 | This file is part of GNU Emacs. |
| 789 | 798 | ||
diff --git a/nt/INSTALL.W64 b/nt/INSTALL.W64 index e109c6f0f23..40670a6a878 100644 --- a/nt/INSTALL.W64 +++ b/nt/INSTALL.W64 | |||
| @@ -64,13 +64,15 @@ packages (you can copy and paste it into the shell with Shift + Insert): | |||
| 64 | mingw-w64-x86_64-libjpeg-turbo \ | 64 | mingw-w64-x86_64-libjpeg-turbo \ |
| 65 | mingw-w64-x86_64-librsvg \ | 65 | mingw-w64-x86_64-librsvg \ |
| 66 | mingw-w64-x86_64-libxml2 \ | 66 | mingw-w64-x86_64-libxml2 \ |
| 67 | mingw-w64-x86_64-gnutls | 67 | mingw-w64-x86_64-gnutls \ |
| 68 | mingw-w64-x86_64-zlib | ||
| 68 | 69 | ||
| 69 | The packages include the base developer tools (autoconf, automake, grep, make, | 70 | The packages include the base developer tools (autoconf, automake, grep, make, |
| 70 | etc.), the compiler toolchain (gcc, gdb, etc.), several image libraries, an | 71 | etc.), the compiler toolchain (gcc, gdb, etc.), several image libraries, an |
| 71 | XML library, and the GnuTLS (transport layer security) library. Only the | 72 | XML library, the GnuTLS (transport layer security) library, and zlib for |
| 72 | first three packages are required (base-devel, toolchain, xpm-nox); the rest | 73 | decompressing text. Only the first three packages are required (base-devel, |
| 73 | are optional. | 74 | toolchain, xpm-nox); the rest are optional. You can select only part of the |
| 75 | libraries if you don't need them all. | ||
| 74 | 76 | ||
| 75 | You now have a complete build environment for Emacs. | 77 | You now have a complete build environment for Emacs. |
| 76 | 78 | ||
diff --git a/nt/README.W32 b/nt/README.W32 index 71a0738969a..a061596da55 100644 --- a/nt/README.W32 +++ b/nt/README.W32 | |||
| @@ -139,19 +139,21 @@ See the end of the file for license conditions. | |||
| 139 | libraries. These libraries are all available on the following sites: | 139 | libraries. These libraries are all available on the following sites: |
| 140 | 140 | ||
| 141 | 1. http://sourceforge.net/projects/ezwinports/files/ | 141 | 1. http://sourceforge.net/projects/ezwinports/files/ |
| 142 | -- leaner, more up-to-date builds, only for 32-bit Emacs | 142 | -- up-to-date builds, self-contained archives, only for 32-bit Emacs |
| 143 | 2. http://www.gtk.org/download/win32.php | 143 | 2. The MSYS2 project -- for 64-bit Emacs: |
| 144 | http://www.gtk.org/download/win64.php | 144 | http://msys2.github.io/ |
| 145 | -- the GTK project site; offers much fatter builds, but includes | 145 | https://sourceforge.net/projects/msys2/files/REPOS/MINGW/x86_64/ |
| 146 | 64-bit DLLs (from the 2nd URL) | 146 | 3. GnuWin32 project -- very old 32-bit builds, not recommended |
| 147 | 3. GnuWin32 project -- very old builds, not recommended | ||
| 148 | 147 | ||
| 149 | The libraries to download are mentioned below. Some libraries | 148 | The libraries to download are mentioned below. Some libraries |
| 150 | depend on others that need to be downloaded separately from the same | 149 | depend on others that need to be downloaded separately from the same |
| 151 | site; please consult the download instructions on each site for the | 150 | site; please consult the download instructions on each site for the |
| 152 | details. In general, the ezwinports site mentioned above has all | 151 | details. In general, the ezwinports site mentioned above has all |
| 153 | the dependencies bundled in the same zip archive, so installing from | 152 | the dependencies bundled in the same zip archive, so installing from |
| 154 | there is the easiest. | 153 | there is the easiest. For MSYS2 builds, we recommend that you |
| 154 | install and use the 'pacman' utility (available from the MSYS2 | ||
| 155 | site), see the instructions below -- it will automatically install | ||
| 156 | all the dependencies. | ||
| 155 | 157 | ||
| 156 | Emacs will find these libraries if the directory they are installed | 158 | Emacs will find these libraries if the directory they are installed |
| 157 | in is on the PATH or in the same directory where you have emacs.exe. | 159 | in is on the PATH or in the same directory where you have emacs.exe. |
| @@ -210,6 +212,69 @@ See the end of the file for license conditions. | |||
| 210 | You can get pre-built binaries (including any required DLL and the | 212 | You can get pre-built binaries (including any required DLL and the |
| 211 | header files) at http://sourceforge.net/projects/ezwinports/files/. | 213 | header files) at http://sourceforge.net/projects/ezwinports/files/. |
| 212 | 214 | ||
| 215 | |||
| 216 | * zlib support | ||
| 217 | |||
| 218 | zlib provides support for decompressing text, which is necessary for | ||
| 219 | the zlib-decompress-region primitive. | ||
| 220 | |||
| 221 | Prebuilt binaries of zlib DLL (for 32-bit builds of Emacs) are | ||
| 222 | available from the ezwinports site; see above for the URL. For the | ||
| 223 | 64-bit DLL, see the instructions below for installing from MSYS2 | ||
| 224 | site. | ||
| 225 | |||
| 226 | (This library is also a prerequisite for several image libraries, so | ||
| 227 | you may already have it; look for zlib1.dll or libz-1.dll.) | ||
| 228 | |||
| 229 | * Installing 64-bit optional libraries from the MSYS2 site | ||
| 230 | |||
| 231 | We recommend that you use the 'pacman' utility to download the | ||
| 232 | libraries you need and all of their dependencies. If you don't have | ||
| 233 | 'pacman' installed, proceed as follows: | ||
| 234 | |||
| 235 | . Install the MSYS2 64-bit (x86_64) installer, named | ||
| 236 | msys2-x86_64-YYYYMMDD.exe (where "YYYYMMDD" is the release date, | ||
| 237 | like 20160205) from http://msys2.github.io/. | ||
| 238 | |||
| 239 | . Run the installer, select the installation directory, make sure | ||
| 240 | "Run MSYS2 now" checkbox is checked, and click "Finish". A Bash | ||
| 241 | window will open. | ||
| 242 | |||
| 243 | . Type into the Bash window the following command: | ||
| 244 | |||
| 245 | pacman -Sy pacman | ||
| 246 | |||
| 247 | When asked whether to proceed with installation, type Y. | ||
| 248 | |||
| 249 | To install the optional libraries, start the MSYS2 Bash window and | ||
| 250 | type the following command: | ||
| 251 | |||
| 252 | pacman -S PACKAGES | ||
| 253 | |||
| 254 | where PACKAGES is the list of packages you want to install. The | ||
| 255 | full list is as follows: | ||
| 256 | |||
| 257 | mingw-w64-x86_64-xpm-nox mingw-w64-x86_64-libtiff mingw-w64-x86_64-giflib | ||
| 258 | mingw-w64-x86_64-libpng mingw-w64-x86_64-libjpeg-turbo | ||
| 259 | mingw-w64-x86_64-librsvg mingw-w64-x86_64-libxml2 mingw-w64-x86_64-gnutls | ||
| 260 | mingw-w64-x86_64-zlib | ||
| 261 | |||
| 262 | You can type any subset of this list. Once again, when asked | ||
| 263 | whether to proceed with installation, answer Y. | ||
| 264 | |||
| 265 | Alternatively, you could install the packages manually from this | ||
| 266 | page: | ||
| 267 | |||
| 268 | https://sourceforge.net/projects/msys2/files/REPOS/MINGW/x86_64/ | ||
| 269 | |||
| 270 | However, the packages there are not self-contained, so you will need | ||
| 271 | to download all their dependencies as well. | ||
| 272 | |||
| 273 | After the installation, if you will be installing Emacs in a | ||
| 274 | directory different from where the DLLs were installed, we recommend | ||
| 275 | to add the directory with DLLs to your PATH, so that Emacs will be | ||
| 276 | able to find those DLLs. | ||
| 277 | |||
| 213 | * Uninstalling Emacs | 278 | * Uninstalling Emacs |
| 214 | 279 | ||
| 215 | If you should need to uninstall Emacs, simply delete all the files | 280 | If you should need to uninstall Emacs, simply delete all the files |
diff --git a/test/manual/etags/CTAGS.good b/test/manual/etags/CTAGS.good index 6ee8bec9c51..e6529890b8d 100644 --- a/test/manual/etags/CTAGS.good +++ b/test/manual/etags/CTAGS.good | |||
| @@ -591,22 +591,67 @@ FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 4766 | |||
| 591 | FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5061 | 591 | FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5061 |
| 592 | F_getit c-src/etags.c /^F_getit (FILE *inf)$/ | 592 | F_getit c-src/etags.c /^F_getit (FILE *inf)$/ |
| 593 | F_takeprec c-src/etags.c /^F_takeprec (void)$/ | 593 | F_takeprec c-src/etags.c /^F_takeprec (void)$/ |
| 594 | Fabbrev_expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/ | ||
| 595 | Fabbrev_symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/ | ||
| 596 | Fabort_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("abort-recursive-edit", Fabort_recursive_ed/ | ||
| 594 | Fails_t c-src/h.h 5 | 597 | Fails_t c-src/h.h 5 |
| 598 | Fclear_abbrev_table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, / | ||
| 599 | Fclear_this_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/ | ||
| 600 | Fcommand_error_default_function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/ | ||
| 601 | Fcurrent_idle_time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/ | ||
| 602 | Fcurrent_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("current-input-mode", Fcurrent_input_mode, / | ||
| 603 | Fdefine_abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/ | ||
| 604 | Fdefine_abbrev_table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/ | ||
| 605 | Fdefine_global_abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/ | ||
| 606 | Fdefine_mode_abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, / | ||
| 607 | Fdiscard_input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/ | ||
| 608 | Fevent_convert_list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, / | ||
| 609 | Fevent_symbol_parse_modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/ | ||
| 610 | Fexit_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/ | ||
| 611 | Fexpand_abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/ | ||
| 595 | Finalize_Cond/p ada-src/2ataspri.adb /^ procedure Finalize_Cond (Cond : in out Conditio/ | 612 | Finalize_Cond/p ada-src/2ataspri.adb /^ procedure Finalize_Cond (Cond : in out Conditio/ |
| 596 | Finalize_Cond/p ada-src/2ataspri.ads /^ procedure Finalize_Cond (Cond : in out Conditio/ | 613 | Finalize_Cond/p ada-src/2ataspri.ads /^ procedure Finalize_Cond (Cond : in out Conditio/ |
| 597 | Finalize_Lock/p ada-src/2ataspri.adb /^ procedure Finalize_Lock (L : in out Lock) is$/ | 614 | Finalize_Lock/p ada-src/2ataspri.adb /^ procedure Finalize_Lock (L : in out Lock) is$/ |
| 598 | Finalize_Lock/p ada-src/2ataspri.ads /^ procedure Finalize_Lock (L : in out Lock);$/ | 615 | Finalize_Lock/p ada-src/2ataspri.ads /^ procedure Finalize_Lock (L : in out Lock);$/ |
| 599 | Finalize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Finalize_TAS_Cell (Cell : in out TAS_/ | 616 | Finalize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Finalize_TAS_Cell (Cell : in out TAS_/ |
| 600 | Finalize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Finalize_TAS_Cell (Cell : in out TA/ | 617 | Finalize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Finalize_TAS_Cell (Cell : in out TA/ |
| 618 | Finput_pending_p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/ | ||
| 619 | Finsert_abbrev_table_description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/ | ||
| 601 | First100Chars pas-src/common.pas /^procedure First100Chars; (*($/ | 620 | First100Chars pas-src/common.pas /^procedure First100Chars; (*($/ |
| 621 | Fmake_abbrev_table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/ | ||
| 602 | Foo perl-src/kai-test.pl /^package Foo;$/ | 622 | Foo perl-src/kai-test.pl /^package Foo;$/ |
| 603 | Foo::Bar perl-src/kai-test.pl /^package Foo::Bar;$/ | 623 | Foo::Bar perl-src/kai-test.pl /^package Foo::Bar;$/ |
| 624 | Fopen_dribble_file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/ | ||
| 604 | Forth_help c-src/etags.c 573 | 625 | Forth_help c-src/etags.c 573 |
| 605 | Forth_suffixes c-src/etags.c 571 | 626 | Forth_suffixes c-src/etags.c 571 |
| 606 | Forth_words c-src/etags.c /^Forth_words (FILE *inf)$/ | 627 | Forth_words c-src/etags.c /^Forth_words (FILE *inf)$/ |
| 607 | Fortran_functions c-src/etags.c /^Fortran_functions (FILE *inf)$/ | 628 | Fortran_functions c-src/etags.c /^Fortran_functions (FILE *inf)$/ |
| 608 | Fortran_help c-src/etags.c 579 | 629 | Fortran_help c-src/etags.c 579 |
| 609 | Fortran_suffixes c-src/etags.c 577 | 630 | Fortran_suffixes c-src/etags.c 577 |
| 631 | Fposn_at_point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/ | ||
| 632 | Fposn_at_x_y c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, / | ||
| 633 | Fread_key_sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/ | ||
| 634 | Fread_key_sequence_vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/ | ||
| 635 | Frecent_keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, / | ||
| 636 | Frecursion_depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/ | ||
| 637 | Frecursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/ | ||
| 638 | Freset_this_command_lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/ | ||
| 639 | Fset_input_interrupt_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/ | ||
| 640 | Fset_input_meta_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/ | ||
| 641 | Fset_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/ | ||
| 642 | Fset_output_flow_control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/ | ||
| 643 | Fset_quit_char c-src/emacs/src/keyboard.c /^DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_/ | ||
| 644 | Fsuspend_emacs c-src/emacs/src/keyboard.c /^DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_e/ | ||
| 645 | Fthis_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/ | ||
| 646 | Fthis_command_keys_vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/ | ||
| 647 | Fthis_single_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/ | ||
| 648 | Fthis_single_command_raw_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-raw-keys", Fthis_singl/ | ||
| 649 | Ftop_level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, / | ||
| 650 | Ftrack_mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/ | ||
| 651 | Funexpand_abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/ | ||
| 652 | Fx_get_selection_internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/ | ||
| 653 | Fx_get_selection_internal c.c /^ Fx_get_selection_internal, Sx_get_selection/ | ||
| 654 | Fy_get_selection_internal c.c /^ Fy_get_selection_internal, Sy_get_selection_/ | ||
| 610 | GCALIGNED c-src/emacs/src/lisp.h 288 | 655 | GCALIGNED c-src/emacs/src/lisp.h 288 |
| 611 | GCALIGNED c-src/emacs/src/lisp.h 290 | 656 | GCALIGNED c-src/emacs/src/lisp.h 290 |
| 612 | GCALIGNMENT c-src/emacs/src/lisp.h 243 | 657 | GCALIGNMENT c-src/emacs/src/lisp.h 243 |
diff --git a/test/manual/etags/ETAGS.good_1 b/test/manual/etags/ETAGS.good_1 index 2f1a9db81f7..374692c5816 100644 --- a/test/manual/etags/ETAGS.good_1 +++ b/test/manual/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/manual/etags/ETAGS.good_2 b/test/manual/etags/ETAGS.good_2 index ffa483b7a8e..a21717af75f 100644 --- a/test/manual/etags/ETAGS.good_2 +++ b/test/manual/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/manual/etags/ETAGS.good_3 b/test/manual/etags/ETAGS.good_3 index ac1f97e9ec3..33bf110687b 100644 --- a/test/manual/etags/ETAGS.good_3 +++ b/test/manual/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/manual/etags/ETAGS.good_4 b/test/manual/etags/ETAGS.good_4 index 8184e3a0f6d..3d9d6266421 100644 --- a/test/manual/etags/ETAGS.good_4 +++ b/test/manual/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/manual/etags/ETAGS.good_5 b/test/manual/etags/ETAGS.good_5 index 708ba17beb0..1dff7685212 100644 --- a/test/manual/etags/ETAGS.good_5 +++ b/test/manual/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/manual/etags/ETAGS.good_6 b/test/manual/etags/ETAGS.good_6 index 35bb97986c0..fdcbd57e7ef 100644 --- a/test/manual/etags/ETAGS.good_6 +++ b/test/manual/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, |