diff options
| author | Stefan Monnier | 2026-02-08 16:05:31 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2026-02-08 16:05:31 -0500 |
| commit | f39eaad491bdab443389fc60c8ca2ee59f22758b (patch) | |
| tree | 27dcf7ce752f4b3c4fbed1b0a6b4a47dc2f7424b /test | |
| parent | 4db3be200114caacf068f56dc60796fd7c77b619 (diff) | |
| parent | c86094057b0c391d6160ba8c37c6df9bb0370b16 (diff) | |
| download | emacs-f39eaad491bdab443389fc60c8ca2ee59f22758b.tar.gz emacs-f39eaad491bdab443389fc60c8ca2ee59f22758b.zip | |
Merge branch 'main' into icalendar
Diffstat (limited to 'test')
655 files changed, 5111 insertions, 3913 deletions
diff --git a/test/ChangeLog.1 b/test/ChangeLog.1 index 9e204f90354..8c8ad3a4486 100644 --- a/test/ChangeLog.1 +++ b/test/ChangeLog.1 | |||
| @@ -2952,7 +2952,7 @@ | |||
| 2952 | ;; coding: utf-8 | 2952 | ;; coding: utf-8 |
| 2953 | ;; End: | 2953 | ;; End: |
| 2954 | 2954 | ||
| 2955 | Copyright (C) 2008-2025 Free Software Foundation, Inc. | 2955 | Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 2956 | 2956 | ||
| 2957 | This file is part of GNU Emacs. | 2957 | This file is part of GNU Emacs. |
| 2958 | 2958 | ||
diff --git a/test/Makefile.in b/test/Makefile.in index 127f1cebbd7..21f31f4c2d0 100644 --- a/test/Makefile.in +++ b/test/Makefile.in | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ### @configure_input@ | 1 | ### @configure_input@ |
| 2 | 2 | ||
| 3 | # Copyright (C) 2010-2025 Free Software Foundation, Inc. | 3 | # Copyright (C) 2010-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | # This file is part of GNU Emacs. | 5 | # This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -200,7 +200,8 @@ EXCLUDE_TESTS = | |||
| 200 | 200 | ||
| 201 | ## To speed up parallel builds, put these slow test files (which can | 201 | ## To speed up parallel builds, put these slow test files (which can |
| 202 | ## take longer than all the rest combined) at the start of the list. | 202 | ## take longer than all the rest combined) at the start of the list. |
| 203 | SLOW_TESTS = ${srcdir}/lisp/net/tramp-tests.el | 203 | SLOW_TESTS = ${srcdir}/lisp/emacs-lisp/package-vc-tests.el \ |
| 204 | ${srcdir}/lisp/net/tramp-tests.el | ||
| 204 | 205 | ||
| 205 | ELFILES := $(sort $(shell find ${srcdir} -name manual -prune -o \ | 206 | ELFILES := $(sort $(shell find ${srcdir} -name manual -prune -o \ |
| 206 | -name data -prune -o -name infra -prune -o \ | 207 | -name data -prune -o -name infra -prune -o \ |
| @@ -217,6 +218,15 @@ LOGFILES := $(patsubst %.el,%.log, \ | |||
| 217 | $(patsubst $(srcdir)/%,%,$(ELFILES))) | 218 | $(patsubst $(srcdir)/%,%,$(ELFILES))) |
| 218 | TESTS := $(LOGFILES:.log=) | 219 | TESTS := $(LOGFILES:.log=) |
| 219 | 220 | ||
| 221 | ## Some tests show problems when run in parallel with other tests. | ||
| 222 | ## Suppress parallelism for them when SELECTOR is equal to | ||
| 223 | ## SELECTOR_EXPENSIVE or SELECTOR_ALL. | ||
| 224 | PARALLEL_TESTS := $(LOGFILES) | ||
| 225 | ifeq ($(subst $(SELECTOR_ALL),yes,$(subst $(SELECTOR_EXPENSIVE),yes,$(SELECTOR_ACTUAL))), yes) | ||
| 226 | $(eval NOT_PARALLEL_TESTS := $(filter lisp/autorevert-tests.log lisp/filenotify-tests.log lisp/net/tramp-tests.log, $(LOGFILES))) | ||
| 227 | $(eval PARALLEL_TESTS := $(filter-out $(NOT_PARALLEL_TESTS), ${LOGFILES})) | ||
| 228 | endif | ||
| 229 | |||
| 220 | ## If we have to interrupt a hanging test, preserve the log so we can | 230 | ## If we have to interrupt a hanging test, preserve the log so we can |
| 221 | ## see what the problem was. | 231 | ## see what the problem was. |
| 222 | .PRECIOUS: %.log | 232 | .PRECIOUS: %.log |
| @@ -347,7 +357,12 @@ ifeq ($(TEST_INTERACTIVE), yes) | |||
| 347 | $(patsubst %,-l %,$(if $(findstring $(TEST_LOAD_EL),yes),$ELFILES,$(ELFILES:.el=))) \ | 357 | $(patsubst %,-l %,$(if $(findstring $(TEST_LOAD_EL),yes),$ELFILES,$(ELFILES:.el=))) \ |
| 348 | $(TEST_RUN_ERT) | 358 | $(TEST_RUN_ERT) |
| 349 | else | 359 | else |
| 350 | -@${MAKE} -k ${LOGFILES} | 360 | ifdef NOT_PARALLEL_TESTS |
| 361 | -@${MAKE} -k -j1 ${NOT_PARALLEL_TESTS} | ||
| 362 | endif | ||
| 363 | ifdef PARALLEL_TESTS | ||
| 364 | -@${MAKE} -k ${PARALLEL_TESTS} | ||
| 365 | endif | ||
| 351 | @$(emacs) --batch -l ert --eval \ | 366 | @$(emacs) --batch -l ert --eval \ |
| 352 | "(ert-summarize-tests-batch-and-exit ${SUMMARIZE_TESTS})" ${LOGFILES} | 367 | "(ert-summarize-tests-batch-and-exit ${SUMMARIZE_TESTS})" ${LOGFILES} |
| 353 | endif | 368 | endif |
diff --git a/test/README b/test/README index f86aca58cc1..fa48b690347 100644 --- a/test/README +++ b/test/README | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | Copyright (C) 2008-2025 Free Software Foundation, Inc. | 1 | Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 2 | See the end of the file for license conditions. | 2 | See the end of the file for license conditions. |
| 3 | 3 | ||
| 4 | This directory contains files intended to test various aspects of | 4 | This directory contains files intended to test various aspects of |
| @@ -29,6 +29,16 @@ following tags are recognized: | |||
| 29 | * :unstable | 29 | * :unstable |
| 30 | The test is under development. It shall run on demand only. | 30 | The test is under development. It shall run on demand only. |
| 31 | 31 | ||
| 32 | The following examples expect this directory as the current working | ||
| 33 | directory. If you call make from Emacs' root directory, use "make -C | ||
| 34 | test" instead. | ||
| 35 | |||
| 36 | Running several tests in parallel could result in unexpected side | ||
| 37 | effects with ephemeral test errors. Therefore, it is recommend not to | ||
| 38 | use "make -j". Nonetheless, when expensive tests are activated, some of | ||
| 39 | the tests do not run parallel anyway. See make variable | ||
| 40 | $NOT_PARALLEL_TESTS. | ||
| 41 | |||
| 32 | The Makefile sets the environment variable $EMACS_TEST_DIRECTORY, | 42 | The Makefile sets the environment variable $EMACS_TEST_DIRECTORY, |
| 33 | which points to this directory. This environment variable does not | 43 | which points to this directory. This environment variable does not |
| 34 | exist when the tests are run outside make. The Makefile supports the | 44 | exist when the tests are run outside make. The Makefile supports the |
| @@ -89,6 +99,9 @@ use it directly: | |||
| 89 | 99 | ||
| 90 | make <filename> SELECTOR='test-foo-remote' | 100 | make <filename> SELECTOR='test-foo-remote' |
| 91 | 101 | ||
| 102 | Setting $SELECTOR in combination with the check-expensive or check-all | ||
| 103 | make targets is ignored. | ||
| 104 | |||
| 92 | Note that although the test files are always compiled (unless they set | 105 | Note that although the test files are always compiled (unless they set |
| 93 | no-byte-compile), the source files will be run when expensive or | 106 | no-byte-compile), the source files will be run when expensive or |
| 94 | unstable tests are involved, to give nicer backtraces. To run the | 107 | unstable tests are involved, to give nicer backtraces. To run the |
diff --git a/test/infra/Dockerfile.emba b/test/infra/Dockerfile.emba index 539bc42efb1..ad880212e4a 100644 --- a/test/infra/Dockerfile.emba +++ b/test/infra/Dockerfile.emba | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | # Copyright (C) 2021-2025 Free Software Foundation, Inc. | 1 | # Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 2 | # | 2 | # |
| 3 | # This file is part of GNU Emacs. | 3 | # This file is part of GNU Emacs. |
| 4 | # | 4 | # |
diff --git a/test/infra/Makefile.in b/test/infra/Makefile.in index e92623ba56d..ef4173246a6 100644 --- a/test/infra/Makefile.in +++ b/test/infra/Makefile.in | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ### @configure_input@ | 1 | ### @configure_input@ |
| 2 | 2 | ||
| 3 | # Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | # Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | # This file is part of GNU Emacs. | 5 | # This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/infra/android/README b/test/infra/android/README index c3bda37f2d4..0be8677f2a3 100644 --- a/test/infra/android/README +++ b/test/infra/android/README | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | Copyright (C) 2025 Free Software Foundation, Inc. -*- coding: utf-8 -*- | 1 | Copyright (C) 2025-2026 Free Software Foundation, Inc. -*- coding: utf-8 -*- |
| 2 | See the end of the file for license conditions. | 2 | See the end of the file for license conditions. |
| 3 | 3 | ||
| 4 | In this directory is a collection of scripts which arrange to upload | 4 | In this directory is a collection of scripts which arrange to upload |
diff --git a/test/infra/android/bin/AtsStub.java b/test/infra/android/bin/AtsStub.java index 8fab87f1298..1cc4bf46270 100644 --- a/test/infra/android/bin/AtsStub.java +++ b/test/infra/android/bin/AtsStub.java | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Launch an intent stated on the command line as an activity. -*- c-file-style: "GNU" -*- | 1 | /* Launch an intent stated on the command line as an activity. -*- c-file-style: "GNU" -*- |
| 2 | 2 | ||
| 3 | Copyright (C) 2025 Free Software Foundation, Inc. | 3 | Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/infra/android/bin/README b/test/infra/android/bin/README index f34a81dc8f9..2a40ea8b0a8 100644 --- a/test/infra/android/bin/README +++ b/test/infra/android/bin/README | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | Copyright (C) 2025 Free Software Foundation, Inc. -*- coding: utf-8 -*- | 1 | Copyright (C) 2025-2026 Free Software Foundation, Inc. -*- coding: utf-8 -*- |
| 2 | See the end of the file for license conditions. | 2 | See the end of the file for license conditions. |
| 3 | 3 | ||
| 4 | This directory holds a minuscule stub executable that invokes the | 4 | This directory holds a minuscule stub executable that invokes the |
diff --git a/test/infra/android/early-init.el b/test/infra/android/early-init.el index 8f6767f54cf..f513ba1465a 100644 --- a/test/infra/android/early-init.el +++ b/test/infra/android/early-init.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; Suppress deletion of the initial frame by `frame-initialize'. -*- lexical-binding:t -*- | 1 | ;;; Suppress deletion of the initial frame by `frame-initialize'. -*- lexical-binding:t -*- |
| 2 | ;; $Id: early-init.el,v 1.2 2025/03/02 11:18:42 jw Exp $ | 2 | ;; $Id: early-init.el,v 1.2 2025/03/02 11:18:42 jw Exp $ |
| 3 | 3 | ||
| 4 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 4 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; This file is part of GNU Emacs. | 6 | ;; This file is part of GNU Emacs. |
| 7 | 7 | ||
diff --git a/test/infra/android/test-controller.el b/test/infra/android/test-controller.el index 08dc8b85b42..07c6f0e5ba0 100644 --- a/test/infra/android/test-controller.el +++ b/test/infra/android/test-controller.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; Submit code to a connected Android device -*- lexical-binding: t; -*- | 1 | ;;; Submit code to a connected Android device -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/infra/android/test-driver.el b/test/infra/android/test-driver.el index ff9590d8d9f..84353949588 100644 --- a/test/infra/android/test-driver.el +++ b/test/infra/android/test-driver.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; Receive and execute Lisp code submitted by a test controller. -*- lexical-binding: t; -*- | 1 | ;;; Receive and execute Lisp code submitted by a test controller. -*- lexical-binding: t; -*- |
| 2 | ;;; $Id: ats-driver.el,v 1.9 2025/03/02 12:52:57 jw Exp $ | 2 | ;;; $Id: ats-driver.el,v 1.9 2025/03/02 12:52:57 jw Exp $ |
| 3 | 3 | ||
| 4 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 4 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; This file is part of GNU Emacs. | 6 | ;; This file is part of GNU Emacs. |
| 7 | 7 | ||
diff --git a/test/infra/gitlab-ci.yml b/test/infra/gitlab-ci.yml index 2697c598c1a..1f0f33bbe86 100644 --- a/test/infra/gitlab-ci.yml +++ b/test/infra/gitlab-ci.yml | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | # Copyright (C) 2017-2025 Free Software Foundation, Inc. | 1 | # Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 2 | # | 2 | # |
| 3 | # This file is part of GNU Emacs. | 3 | # This file is part of GNU Emacs. |
| 4 | # | 4 | # |
diff --git a/test/lib-src/emacsclient-tests.el b/test/lib-src/emacsclient-tests.el index d65f79876db..b84e5711bab 100644 --- a/test/lib-src/emacsclient-tests.el +++ b/test/lib-src/emacsclient-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; emacsclient-tests.el --- Test emacsclient -*- lexical-binding:t -*- | 1 | ;;; emacsclient-tests.el --- Test emacsclient -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/abbrev-tests.el b/test/lisp/abbrev-tests.el index 2ba91e99755..8e95b85a1ac 100644 --- a/test/lisp/abbrev-tests.el +++ b/test/lisp/abbrev-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; abbrev-tests.el --- Test suite for abbrevs -*- lexical-binding: t; -*- | 1 | ;;; abbrev-tests.el --- Test suite for abbrevs -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eli Zaretskii <eliz@gnu.org> | 5 | ;; Author: Eli Zaretskii <eliz@gnu.org> |
| 6 | ;; Keywords: abbrevs | 6 | ;; Keywords: abbrevs |
diff --git a/test/lisp/align-tests.el b/test/lisp/align-tests.el index 2475a2f3369..43660f8de87 100644 --- a/test/lisp/align-tests.el +++ b/test/lisp/align-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; align-tests.el --- Test suite for aligns -*- lexical-binding: t; -*- | 1 | ;;; align-tests.el --- Test suite for aligns -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -36,6 +36,53 @@ | |||
| 36 | (ert-test-erts-file (ert-resource-file "c-mode.erts") | 36 | (ert-test-erts-file (ert-resource-file "c-mode.erts") |
| 37 | (test-align-transform-fun #'c-mode))) | 37 | (test-align-transform-fun #'c-mode))) |
| 38 | 38 | ||
| 39 | (ert-deftest align-c-multi-section () | ||
| 40 | "Test alignment of multiple sections in C code. | ||
| 41 | Regression test for bug where positions become stale after earlier | ||
| 42 | sections are aligned, causing incorrect alignment in later sections." | ||
| 43 | (let ((input "int main(void) | ||
| 44 | { | ||
| 45 | long signed int foo = 5; | ||
| 46 | int bar = 7; | ||
| 47 | { | ||
| 48 | int a1 = 4; | ||
| 49 | int b1 = 2; | ||
| 50 | long signed int junk1 = 2; | ||
| 51 | } | ||
| 52 | { | ||
| 53 | int a2 = 4; /* comment */ | ||
| 54 | int b2 = 2; | ||
| 55 | long signed int junk2 = 2; /* another comment */ | ||
| 56 | } | ||
| 57 | |||
| 58 | return 0; | ||
| 59 | } | ||
| 60 | ") | ||
| 61 | (expected "int main(void) | ||
| 62 | { | ||
| 63 | long signed int foo = 5; | ||
| 64 | int bar = 7; | ||
| 65 | { | ||
| 66 | int a1 = 4; | ||
| 67 | int b1 = 2; | ||
| 68 | long signed int junk1 = 2; | ||
| 69 | } | ||
| 70 | { | ||
| 71 | int a2 = 4; /* comment */ | ||
| 72 | int b2 = 2; | ||
| 73 | long signed int junk2 = 2; /* another comment */ | ||
| 74 | } | ||
| 75 | |||
| 76 | return 0; | ||
| 77 | } | ||
| 78 | ")) | ||
| 79 | (with-temp-buffer | ||
| 80 | (c-mode) | ||
| 81 | (setq indent-tabs-mode nil) | ||
| 82 | (insert input) | ||
| 83 | (align (point-min) (point-max)) | ||
| 84 | (should (equal (buffer-string) expected))))) | ||
| 85 | |||
| 39 | (ert-deftest align-css () | 86 | (ert-deftest align-css () |
| 40 | (let ((indent-tabs-mode nil)) | 87 | (let ((indent-tabs-mode nil)) |
| 41 | (ert-test-erts-file (ert-resource-file "css-mode.erts") | 88 | (ert-test-erts-file (ert-resource-file "css-mode.erts") |
diff --git a/test/lisp/allout-tests.el b/test/lisp/allout-tests.el index 603130ab75c..7309b29a67f 100644 --- a/test/lisp/allout-tests.el +++ b/test/lisp/allout-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; allout-tests.el --- Tests for allout.el -*- lexical-binding: t -*- | 1 | ;;; allout-tests.el --- Tests for allout.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/allout-widgets-tests.el b/test/lisp/allout-widgets-tests.el index d3b0d3c0a62..a7e39aa432a 100644 --- a/test/lisp/allout-widgets-tests.el +++ b/test/lisp/allout-widgets-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; allout-widgets-tests.el --- Tests for allout-widgets.el -*- lexical-binding: t -*- | 1 | ;;; allout-widgets-tests.el --- Tests for allout-widgets.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/ansi-color-tests.el b/test/lisp/ansi-color-tests.el index 56eda90a715..a7a956ba26d 100644 --- a/test/lisp/ansi-color-tests.el +++ b/test/lisp/ansi-color-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ansi-color-tests.el --- Test suite for ansi-color -*- lexical-binding: t; -*- | 1 | ;;; ansi-color-tests.el --- Test suite for ansi-color -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Pablo Barbáchano <pablob@amazon.com> | 5 | ;; Author: Pablo Barbáchano <pablob@amazon.com> |
| 6 | 6 | ||
diff --git a/test/lisp/ansi-osc-tests.el b/test/lisp/ansi-osc-tests.el index d083626f3f9..5e33ae649a9 100644 --- a/test/lisp/ansi-osc-tests.el +++ b/test/lisp/ansi-osc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; osc-tests.el --- Tests for osc.el -*- lexical-binding: t; -*- | 1 | ;;; osc-tests.el --- Tests for osc.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Matthias Meulien <orontee@gmail.com> | 5 | ;; Author: Matthias Meulien <orontee@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/apropos-tests.el b/test/lisp/apropos-tests.el index b273068f4fd..6d8141542f8 100644 --- a/test/lisp/apropos-tests.el +++ b/test/lisp/apropos-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; apropos-tests.el --- Tests for apropos.el -*- lexical-binding: t; -*- | 1 | ;;; apropos-tests.el --- Tests for apropos.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/arc-mode-tests.el b/test/lisp/arc-mode-tests.el index dd8fdf9e0bc..43a441918a5 100644 --- a/test/lisp/arc-mode-tests.el +++ b/test/lisp/arc-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; arc-mode-tests.el --- Test suite for arc-mode. -*- lexical-binding: t -*- | 1 | ;;; arc-mode-tests.el --- Test suite for arc-mode. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/auth-source-pass-tests.el b/test/lisp/auth-source-pass-tests.el index ac88f3de030..15fd9ed7007 100644 --- a/test/lisp/auth-source-pass-tests.el +++ b/test/lisp/auth-source-pass-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; auth-source-pass-tests.el --- Tests for auth-source-pass.el -*- lexical-binding: t; -*- | 1 | ;;; auth-source-pass-tests.el --- Tests for auth-source-pass.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013, 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013, 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Damien Cassou <damien.cassou@gmail.com> | 5 | ;; Author: Damien Cassou <damien.cassou@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/auth-source-tests.el b/test/lisp/auth-source-tests.el index 4d4786f4ca9..7da3fed70be 100644 --- a/test/lisp/auth-source-tests.el +++ b/test/lisp/auth-source-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; auth-source-tests.el --- Tests for auth-source.el -*- lexical-binding: t; -*- | 1 | ;;; auth-source-tests.el --- Tests for auth-source.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Damien Cassou <damien@cassou.me>, | 5 | ;; Author: Damien Cassou <damien@cassou.me>, |
| 6 | ;; Nicolas Petton <nicolas@petton.fr> | 6 | ;; Nicolas Petton <nicolas@petton.fr> |
diff --git a/test/lisp/autoinsert-tests.el b/test/lisp/autoinsert-tests.el index 5791ffd5c53..f163d41447e 100644 --- a/test/lisp/autoinsert-tests.el +++ b/test/lisp/autoinsert-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; autoinsert-tests.el --- Tests for autoinsert.el -*- lexical-binding: t; -*- | 1 | ;;; autoinsert-tests.el --- Tests for autoinsert.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/autorevert-tests.el b/test/lisp/autorevert-tests.el index 8f00996d584..8a0ce146fbb 100644 --- a/test/lisp/autorevert-tests.el +++ b/test/lisp/autorevert-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; autorevert-tests.el --- Tests of auto-revert -*- lexical-binding: t -*- | 1 | ;;; autorevert-tests.el --- Tests of auto-revert -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> | 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> |
| 6 | 6 | ||
diff --git a/test/lisp/battery-tests.el b/test/lisp/battery-tests.el index d169be97980..4affe088479 100644 --- a/test/lisp/battery-tests.el +++ b/test/lisp/battery-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; battery-tests.el --- tests for battery.el -*- lexical-binding: t -*- | 1 | ;;; battery-tests.el --- tests for battery.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/bookmark-tests.el b/test/lisp/bookmark-tests.el index d551d429363..7692d215455 100644 --- a/test/lisp/bookmark-tests.el +++ b/test/lisp/bookmark-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; bookmark-tests.el --- Tests for bookmark.el -*- lexical-binding: t -*- | 1 | ;;; bookmark-tests.el --- Tests for bookmark.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/buff-menu-tests.el b/test/lisp/buff-menu-tests.el index d79cef86849..9f7b62a6dcc 100644 --- a/test/lisp/buff-menu-tests.el +++ b/test/lisp/buff-menu-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; buff-menu-tests.el --- Test suite for buff-menu.el -*- lexical-binding: t -*- | 1 | ;;; buff-menu-tests.el --- Test suite for buff-menu.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> | 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/button-tests.el b/test/lisp/button-tests.el index b784cf02e28..4488c171fb7 100644 --- a/test/lisp/button-tests.el +++ b/test/lisp/button-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; button-tests.el --- tests for button.el -*- lexical-binding: t -*- | 1 | ;;; button-tests.el --- tests for button.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/calc/calc-tests.el b/test/lisp/calc/calc-tests.el index 49762e146a5..886f3f16f9e 100644 --- a/test/lisp/calc/calc-tests.el +++ b/test/lisp/calc/calc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; calc-tests.el --- tests for calc -*- lexical-binding: t; -*- | 1 | ;;; calc-tests.el --- tests for calc -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Leo Liu <sdl.web@gmail.com> | 5 | ;; Author: Leo Liu <sdl.web@gmail.com> |
| 6 | ;; Keywords: maint | 6 | ;; Keywords: maint |
| @@ -882,18 +882,8 @@ An existing calc stack is reused, otherwise a new one is created." | |||
| 882 | 882 | ||
| 883 | (ert-deftest calc-math-vector-is-string () | 883 | (ert-deftest calc-math-vector-is-string () |
| 884 | "Test `math-vector-is-string' with varying `calc-string-maximum-character'. | 884 | "Test `math-vector-is-string' with varying `calc-string-maximum-character'. |
| 885 | 885 | When `calc-string-maximum-character' isn’t a valid character, | |
| 886 | All tests operate on both an integer vector and the corresponding | 886 | `math-vector-is-string' should return nil for all vectors." |
| 887 | complex vector. The sets covered are: | ||
| 888 | |||
| 889 | 1. `calc-string-maximum-character' is a valid character. The last case | ||
| 890 | with `0x3FFFFF' is borderline, as integers above it will not make it | ||
| 891 | past the `characterp' test. | ||
| 892 | 2. `calc-string-maximum-character' is negative, so the test always fails. | ||
| 893 | 3. `calc-string-maximum-character' is above `(max-char)', so only the | ||
| 894 | first `characterp' test is active. | ||
| 895 | 4. `calc-string-maximum-character' has an invalid type, which triggers | ||
| 896 | an error in the comparison." | ||
| 897 | (cl-flet* ((make-vec (lambda (contents) (append (list 'vec) contents))) | 887 | (cl-flet* ((make-vec (lambda (contents) (append (list 'vec) contents))) |
| 898 | (make-cplx (lambda (x) (list 'cplx x 0))) | 888 | (make-cplx (lambda (x) (list 'cplx x 0))) |
| 899 | (make-cplx-vec (lambda (contents) | 889 | (make-cplx-vec (lambda (contents) |
| @@ -902,50 +892,20 @@ an error in the comparison." | |||
| 902 | (dolist (maxchar '(#x7F #xFF #x10FFFF #x3FFFFD #x3FFFFF)) | 892 | (dolist (maxchar '(#x7F #xFF #x10FFFF #x3FFFFD #x3FFFFF)) |
| 903 | (let* ((calc-string-maximum-character maxchar) | 893 | (let* ((calc-string-maximum-character maxchar) |
| 904 | (small-chars (number-sequence (- maxchar 2) maxchar)) | 894 | (small-chars (number-sequence (- maxchar 2) maxchar)) |
| 905 | (large-chars (number-sequence maxchar (+ maxchar 2))) | 895 | (large-chars (number-sequence maxchar (+ maxchar 2)))) |
| 906 | (small-real-vec (make-vec small-chars)) | 896 | (should (math-vector-is-string (make-vec small-chars))) |
| 907 | (large-real-vec (make-vec large-chars)) | 897 | (should-not (math-vector-is-string (make-vec large-chars))) |
| 908 | (small-cplx-vec (make-cplx-vec small-chars)) | 898 | (should (math-vector-is-string (make-cplx-vec small-chars))) |
| 909 | (large-cplx-vec (make-cplx-vec large-chars))) | 899 | (should-not (math-vector-is-string (make-cplx-vec large-chars))))) |
| 910 | (should (math-vector-is-string small-real-vec)) | 900 | ;; 2: calc-string-maximum-character is not a valid character |
| 911 | (should-not (math-vector-is-string large-real-vec)) | 901 | (dolist (maxchar (list -1 (1+ (max-char)) "wrong type")) |
| 912 | (should (math-vector-is-string small-cplx-vec)) | 902 | (let ((calc-string-maximum-character maxchar) |
| 913 | (should-not (math-vector-is-string large-cplx-vec)))) | 903 | (valid-chars (number-sequence 0 2)) |
| 914 | ;; 2: calc-string-maximum-character is negative | 904 | (invalid-chars (number-sequence -2 -1))) |
| 915 | (let* ((maxchar -1) | 905 | (should-not (math-vector-is-string (make-vec valid-chars))) |
| 916 | (calc-string-maximum-character maxchar) | 906 | (should-not (math-vector-is-string (make-vec invalid-chars))) |
| 917 | (valid-contents (number-sequence 0 2)) | 907 | (should-not (math-vector-is-string (make-cplx-vec valid-chars))) |
| 918 | (invalid-contents (number-sequence (- maxchar 2) maxchar)) | 908 | (should-not (math-vector-is-string (make-cplx-vec invalid-chars))))))) |
| 919 | (valid-real-vec (make-vec valid-contents)) | ||
| 920 | (invalid-real-vec (make-vec invalid-contents)) | ||
| 921 | (valid-cplx-vec (make-cplx-vec valid-contents)) | ||
| 922 | (invalid-cplx-vec (make-cplx-vec invalid-contents))) | ||
| 923 | (should-not (math-vector-is-string valid-real-vec)) | ||
| 924 | (should-not (math-vector-is-string invalid-real-vec)) | ||
| 925 | (should-not (math-vector-is-string valid-cplx-vec)) | ||
| 926 | (should-not (math-vector-is-string invalid-cplx-vec))) | ||
| 927 | ;; 3: calc-string-maximum-character is larger than (max-char) | ||
| 928 | (let* ((maxchar (+ (max-char) 3)) | ||
| 929 | (calc-string-maximum-character maxchar) | ||
| 930 | (valid-chars (number-sequence (- (max-char) 2) (max-char))) | ||
| 931 | (invalid-chars (number-sequence (1+ (max-char)) maxchar)) | ||
| 932 | (valid-real-vec (make-vec valid-chars)) | ||
| 933 | (invalid-real-vec (make-vec invalid-chars)) | ||
| 934 | (valid-cplx-vec (make-cplx-vec valid-chars)) | ||
| 935 | (invalid-cplx-vec (make-cplx-vec invalid-chars))) | ||
| 936 | (should (math-vector-is-string valid-real-vec)) | ||
| 937 | (should-not (math-vector-is-string invalid-real-vec)) | ||
| 938 | (should (math-vector-is-string valid-cplx-vec)) | ||
| 939 | (should-not (math-vector-is-string invalid-cplx-vec))) | ||
| 940 | ;; 4: calc-string-maximum-character has the wrong type | ||
| 941 | (let* ((calc-string-maximum-character "wrong type") | ||
| 942 | (contents (number-sequence 0 2)) | ||
| 943 | (real-vec (make-vec contents)) | ||
| 944 | (cplx-vec (make-cplx-vec contents))) | ||
| 945 | (should-error (math-vector-is-string real-vec) | ||
| 946 | :type 'wrong-type-argument) | ||
| 947 | (should-error (math-vector-is-string cplx-vec) | ||
| 948 | :type 'wrong-type-argument)))) | ||
| 949 | 909 | ||
| 950 | (ert-deftest calc-inhibit-startup-message () | 910 | (ert-deftest calc-inhibit-startup-message () |
| 951 | "Test user option `calc-inhibit-startup-message'." | 911 | "Test user option `calc-inhibit-startup-message'." |
diff --git a/test/lisp/calculator-tests.el b/test/lisp/calculator-tests.el index 0d8d59d8d31..a059bd39d0e 100644 --- a/test/lisp/calculator-tests.el +++ b/test/lisp/calculator-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; calculator-tests.el --- Test suite for calculator. -*- lexical-binding: t -*- | 1 | ;;; calculator-tests.el --- Test suite for calculator. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/calendar/cal-bahai-tests.el b/test/lisp/calendar/cal-bahai-tests.el new file mode 100644 index 00000000000..bd95cbc4bcc --- /dev/null +++ b/test/lisp/calendar/cal-bahai-tests.el | |||
| @@ -0,0 +1,137 @@ | |||
| 1 | ;;; cal-bahai-tests.el --- tests for the Bahá’í calendar. -*- lexical-binding: t; -*- | ||
| 2 | |||
| 3 | ;; Copyright (C) 2026 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | ;; Author: John Wiegley <johnw@gnu.org> | ||
| 6 | ;; Keywords: calendar | ||
| 7 | ;; Human-Keywords: Bahá’í calendar, Bahá’í, Baha'i, Bahai, calendar, diary | ||
| 8 | ;; Package: calendar | ||
| 9 | |||
| 10 | ;; This file is part of GNU Emacs. | ||
| 11 | |||
| 12 | ;; GNU Emacs is free software: you can redistribute it and/or modify | ||
| 13 | ;; it under the terms of the GNU General Public License as published by | ||
| 14 | ;; the Free Software Foundation, either version 3 of the License, or | ||
| 15 | ;; (at your option) any later version. | ||
| 16 | |||
| 17 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 18 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 19 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 20 | ;; GNU General Public License for more details. | ||
| 21 | |||
| 22 | ;; You should have received a copy of the GNU General Public License | ||
| 23 | ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. | ||
| 24 | |||
| 25 | ;;; Commentary: | ||
| 26 | |||
| 27 | ;; The following code verifies the astronomical calculations against | ||
| 28 | ;; official dates published by the Bahá’í World Centre. | ||
| 29 | ;; | ||
| 30 | ;; BACKGROUND: 2014 Calendar Reform | ||
| 31 | ;; -------------------------------- | ||
| 32 | ;; On 10 July 2014, the Universal House of Justice announced provisions | ||
| 33 | ;; for the uniform implementation of the Badí' calendar, effective from | ||
| 34 | ;; Naw-Rúz 172 BE (March 2015). The key provisions are: | ||
| 35 | ;; | ||
| 36 | ;; 1. NAW-RÚZ DETERMINATION: | ||
| 37 | ;; "The Festival of Naw-Rúz falleth on the day that the sun entereth | ||
| 38 | ;; the sign of Aries, even should this occur no more than one minute | ||
| 39 | ;; before sunset." Tehran is the reference point for determining the | ||
| 40 | ;; moment of the vernal equinox. If the equinox occurs before sunset | ||
| 41 | ;; in Tehran, that day is Naw-Rúz; otherwise, the following day is. | ||
| 42 | ;; | ||
| 43 | ;; 2. TWIN HOLY BIRTHDAYS: | ||
| 44 | ;; "They will now be observed on the first and the second day | ||
| 45 | ;; following the occurrence of the eighth new moon after Naw-Rúz, | ||
| 46 | ;; as determined in advance by astronomical tables using Ṭihrán as | ||
| 47 | ;; the point of reference." | ||
| 48 | ;; | ||
| 49 | ;; VERIFICATION APPROACH | ||
| 50 | ;; --------------------- | ||
| 51 | ;; The functions below compare calculated dates against official data | ||
| 52 | ;; from the Bahá’í World Centre, covering the 50-year period from | ||
| 53 | ;; 172 BE (2015 CE) to 221 BE (2064 CE). This data was extracted from | ||
| 54 | ;; the official ICS calendar file distributed by the Bahá’í World Centre. | ||
| 55 | ;; | ||
| 56 | ;; The verification confirms: | ||
| 57 | ;; - Naw-Rúz dates: Calculated using `solar-equinoxes/solstices' for the | ||
| 58 | ;; vernal equinox and `solar-sunrise-sunset' for Tehran sunset times. | ||
| 59 | ;; - Twin Holy Birthdays: Calculated using `lunar-new-moon-on-or-after' | ||
| 60 | ;; to find the eighth new moon after Naw-Rúz. | ||
| 61 | |||
| 62 | ;;; Code: | ||
| 63 | |||
| 64 | (require 'ert) | ||
| 65 | (require 'cal-bahai) | ||
| 66 | |||
| 67 | (defconst calendar-bahai--nawruz-reference-dates | ||
| 68 | '((2015 3 21) (2016 3 20) (2017 3 20) (2018 3 21) (2019 3 21) | ||
| 69 | (2020 3 20) (2021 3 20) (2022 3 21) (2023 3 21) (2024 3 20) | ||
| 70 | (2025 3 20) (2026 3 21) (2027 3 21) (2028 3 20) (2029 3 20) | ||
| 71 | (2030 3 20) (2031 3 21) (2032 3 20) (2033 3 20) (2034 3 20) | ||
| 72 | (2035 3 21) (2036 3 20) (2037 3 20) (2038 3 20) (2039 3 21) | ||
| 73 | (2040 3 20) (2041 3 20) (2042 3 20) (2043 3 21) (2044 3 20) | ||
| 74 | (2045 3 20) (2046 3 20) (2047 3 21) (2048 3 20) (2049 3 20) | ||
| 75 | (2050 3 20) (2051 3 21) (2052 3 20) (2053 3 20) (2054 3 20) | ||
| 76 | (2055 3 21) (2056 3 20) (2057 3 20) (2058 3 20) (2059 3 20) | ||
| 77 | (2060 3 20) (2061 3 20) (2062 3 20) (2063 3 20) (2064 3 20)) | ||
| 78 | "Official Naw-Rúz dates from the Bahá’í World Centre (2015-2064). | ||
| 79 | Each entry is (GREGORIAN-YEAR MONTH DAY). These dates are extracted | ||
| 80 | from the official ICS calendar file and serve as the authoritative | ||
| 81 | reference for verifying the astronomical calculations. | ||
| 82 | |||
| 83 | The dates show that Naw-Rúz falls on March 20 or 21, depending on | ||
| 84 | when the vernal equinox occurs relative to sunset in Tehran.") | ||
| 85 | |||
| 86 | (defconst calendar-bahai--twin-birthdays-reference-dates | ||
| 87 | '(;; (GREG-YEAR BAB-MONTH BAB-DAY BAHA-MONTH BAHA-DAY) | ||
| 88 | (2015 11 13 11 14) (2016 11 1 11 2) (2017 10 21 10 22) | ||
| 89 | (2018 11 9 11 10) (2019 10 29 10 30) (2020 10 18 10 19) | ||
| 90 | (2021 11 6 11 7) (2022 10 26 10 27) (2023 10 16 10 17) | ||
| 91 | (2024 11 2 11 3) (2025 10 22 10 23) (2026 11 10 11 11) | ||
| 92 | (2027 10 30 10 31) (2028 10 19 10 20) (2029 11 7 11 8) | ||
| 93 | (2030 10 28 10 29) (2031 10 17 10 18) (2032 11 4 11 5) | ||
| 94 | (2033 10 24 10 25) (2034 11 12 11 13) (2035 11 1 11 2) | ||
| 95 | (2036 10 20 10 21) (2037 11 8 11 9) (2038 10 29 10 30) | ||
| 96 | (2039 10 19 10 20) (2040 11 6 11 7) (2041 10 26 10 27) | ||
| 97 | (2042 10 15 10 16) (2043 11 3 11 4) (2044 10 22 10 23) | ||
| 98 | (2045 11 10 11 11) (2046 10 30 10 31) (2047 10 20 10 21) | ||
| 99 | (2048 11 7 11 8) (2049 10 28 10 29) (2050 10 17 10 18) | ||
| 100 | (2051 11 5 11 6) (2052 10 24 10 25) (2053 11 11 11 12) | ||
| 101 | (2054 11 1 11 2) (2055 10 21 10 22) (2056 11 8 11 9) | ||
| 102 | (2057 10 29 10 30) (2058 10 18 10 19) (2059 11 6 11 7) | ||
| 103 | (2060 10 25 10 26) (2061 10 14 10 15) (2062 11 2 11 3) | ||
| 104 | (2063 10 23 10 24) (2064 11 10 11 11)) | ||
| 105 | "Official Twin Holy Birthday dates from the Bahá’í World Centre (2015-2064). | ||
| 106 | Each entry is (GREGORIAN-YEAR BAB-MONTH BAB-DAY BAHA-MONTH BAHA-DAY). | ||
| 107 | |||
| 108 | The Birth of the Báb and the Birth of Bahá’u’lláh are celebrated on | ||
| 109 | consecutive days, determined by the eighth new moon after Naw-Rúz. | ||
| 110 | These dates move through the Gregorian calendar, typically falling | ||
| 111 | between mid-October and mid-November (Bahá’í months of Mashíyyat, | ||
| 112 | \\='Ilm, and Qudrat).") | ||
| 113 | |||
| 114 | (ert-deftest calendar-bahai-verify-nawruz () | ||
| 115 | "Verify Naw-Rúz calculations against official reference dates." | ||
| 116 | (pcase-dolist (`(,greg-year ,expected-month ,expected-day) | ||
| 117 | calendar-bahai--nawruz-reference-dates) | ||
| 118 | (let* ((expected (list expected-month expected-day greg-year)) | ||
| 119 | (computed (calendar-bahai-nawruz-for-gregorian-year greg-year))) | ||
| 120 | (should (equal computed expected))))) | ||
| 121 | |||
| 122 | (ert-deftest calendar-bahai-verify-twin-birthdays () | ||
| 123 | "Verify Twin Holy Birthday calculations against official reference dates." | ||
| 124 | (pcase-dolist (`(,greg-year ,bab-month ,bab-day ,baha-month ,baha-day) | ||
| 125 | calendar-bahai--twin-birthdays-reference-dates) | ||
| 126 | (let* ((bahai-year (- greg-year (1- 1844))) | ||
| 127 | (expected-bab (list bab-month bab-day greg-year)) | ||
| 128 | (expected-baha (list baha-month baha-day greg-year))) | ||
| 129 | ;; Only verify from reform year onwards | ||
| 130 | (when (>= bahai-year calendar-bahai-reform-year) | ||
| 131 | (pcase-let* ((`(,computed-bab ,computed-baha) | ||
| 132 | (calendar-bahai-twin-holy-birthdays-for-year bahai-year))) | ||
| 133 | (should (equal computed-bab expected-bab)) | ||
| 134 | (should (equal computed-baha expected-baha))))))) | ||
| 135 | |||
| 136 | (provide 'cal-bahai-tests) | ||
| 137 | ;;; cal-bahai-tests.el ends here | ||
diff --git a/test/lisp/calendar/cal-french-tests.el b/test/lisp/calendar/cal-french-tests.el index 7d272b1f577..8aa05d1f6cf 100644 --- a/test/lisp/calendar/cal-french-tests.el +++ b/test/lisp/calendar/cal-french-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cal-french-tests.el --- tests for cal-french.el -*- lexical-binding: t -*- | 1 | ;;; cal-french-tests.el --- tests for cal-french.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/calendar/cal-julian-tests.el b/test/lisp/calendar/cal-julian-tests.el index 26d23383754..855f35946a6 100644 --- a/test/lisp/calendar/cal-julian-tests.el +++ b/test/lisp/calendar/cal-julian-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cal-julian-tests.el --- tests for calendar/cal-julian.el -*- lexical-binding:t -*- | 1 | ;;; cal-julian-tests.el --- tests for calendar/cal-julian.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/calendar/calendar-tests.el b/test/lisp/calendar/calendar-tests.el index 2aef0bf827b..2a3957bb06b 100644 --- a/test/lisp/calendar/calendar-tests.el +++ b/test/lisp/calendar/calendar-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; calendar-tests.el --- tests for calendar/calendar.el -*- lexical-binding:t -*- | 1 | ;;; calendar-tests.el --- tests for calendar/calendar.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Richard Lawrence <rwl@recursewithless.net> | 5 | ;; Author: Richard Lawrence <rwl@recursewithless.net> |
| 6 | 6 | ||
| @@ -30,5 +30,36 @@ | |||
| 30 | (should (eq (calendar-date-is-valid-p (list 1 2)) nil)) | 30 | (should (eq (calendar-date-is-valid-p (list 1 2)) nil)) |
| 31 | (should (eq (calendar-date-is-valid-p (list 5 1 2025)) t))) | 31 | (should (eq (calendar-date-is-valid-p (list 5 1 2025)) t))) |
| 32 | 32 | ||
| 33 | (ert-deftest calendar-test-date-in-calendar-mode-line () | ||
| 34 | "Test whether the calendar mode line displays `date' correctly." | ||
| 35 | (save-window-excursion | ||
| 36 | (unwind-protect | ||
| 37 | (let* ((calendar-mode-line-format (list '(calendar-date-string date))) | ||
| 38 | (calendar-move-hook '(calendar-update-mode-line)) | ||
| 39 | (today (calendar-current-date)) | ||
| 40 | (month (calendar-extract-month today)) | ||
| 41 | (year (calendar-extract-year today)) | ||
| 42 | (cursor-date (calendar-gregorian-from-absolute | ||
| 43 | (1+ (calendar-absolute-from-gregorian today))))) | ||
| 44 | (calendar) | ||
| 45 | (should (equal (string-trim mode-line-format) | ||
| 46 | (calendar-date-string today))) | ||
| 47 | (calendar-forward-day 1) | ||
| 48 | (should (equal (string-trim mode-line-format) | ||
| 49 | (calendar-date-string cursor-date))) | ||
| 50 | (calendar-goto-today) | ||
| 51 | (should (equal (string-trim mode-line-format) | ||
| 52 | (calendar-date-string today))) | ||
| 53 | (calendar-cursor-to-visible-date cursor-date) | ||
| 54 | (calendar-redraw) | ||
| 55 | (should (equal (string-trim mode-line-format) | ||
| 56 | (calendar-date-string cursor-date))) | ||
| 57 | (calendar-cursor-to-visible-date cursor-date) | ||
| 58 | (calendar-scroll-left) | ||
| 59 | (calendar-other-month month year) | ||
| 60 | (should (equal (string-trim mode-line-format) | ||
| 61 | (calendar-date-string cursor-date)))) | ||
| 62 | (kill-buffer calendar-buffer)))) | ||
| 63 | |||
| 33 | (provide 'calendar-tests) | 64 | (provide 'calendar-tests) |
| 34 | ;;; calendar-tests.el ends here | 65 | ;;; calendar-tests.el ends here |
diff --git a/test/lisp/calendar/icalendar-tests.el b/test/lisp/calendar/icalendar-tests.el index 05a999ec301..bd2097b2fb8 100644 --- a/test/lisp/calendar/icalendar-tests.el +++ b/test/lisp/calendar/icalendar-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; icalendar-tests.el --- Test suite for icalendar.el -*- lexical-binding:t -*- | 1 | ;;; icalendar-tests.el --- Test suite for icalendar.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2005, 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2005, 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Ulf Jasper <ulf.jasper@web.de> | 5 | ;; Author: Ulf Jasper <ulf.jasper@web.de> |
| 6 | ;; Created: March 2005 | 6 | ;; Created: March 2005 |
diff --git a/test/lisp/calendar/iso8601-tests.el b/test/lisp/calendar/iso8601-tests.el index 32f6254b8b4..20db0b11ddb 100644 --- a/test/lisp/calendar/iso8601-tests.el +++ b/test/lisp/calendar/iso8601-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; iso8601-tests.el --- tests for calendar/iso8601.el -*- lexical-binding:t -*- | 1 | ;;; iso8601-tests.el --- tests for calendar/iso8601.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/calendar/lunar-tests.el b/test/lisp/calendar/lunar-tests.el index cefaeafa16a..5dff3e93302 100644 --- a/test/lisp/calendar/lunar-tests.el +++ b/test/lisp/calendar/lunar-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; lunar-tests.el --- tests for calendar/lunar.el -*- lexical-binding:t -*- | 1 | ;;; lunar-tests.el --- tests for calendar/lunar.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/calendar/parse-time-tests.el b/test/lisp/calendar/parse-time-tests.el index 9161ef14252..eb7d9b58802 100644 --- a/test/lisp/calendar/parse-time-tests.el +++ b/test/lisp/calendar/parse-time-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; parse-time-tests.el --- Test suite for parse-time.el -*- lexical-binding:t -*- | 1 | ;;; parse-time-tests.el --- Test suite for parse-time.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> | 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> |
| 6 | 6 | ||
diff --git a/test/lisp/calendar/solar-tests.el b/test/lisp/calendar/solar-tests.el index 948d33b33fa..00508aef58d 100644 --- a/test/lisp/calendar/solar-tests.el +++ b/test/lisp/calendar/solar-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; solar-tests.el --- tests for solar.el -*- lexical-binding: t -*- | 1 | ;;; solar-tests.el --- tests for solar.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/calendar/time-date-tests.el b/test/lisp/calendar/time-date-tests.el index 7df1e1b0da7..cd2dc203adf 100644 --- a/test/lisp/calendar/time-date-tests.el +++ b/test/lisp/calendar/time-date-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; time-date-tests.el --- tests for calendar/time-date.el -*- lexical-binding:t -*- | 1 | ;;; time-date-tests.el --- tests for calendar/time-date.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/calendar/todo-mode-tests.el b/test/lisp/calendar/todo-mode-tests.el index 157a4c3168c..bca3610ee9d 100644 --- a/test/lisp/calendar/todo-mode-tests.el +++ b/test/lisp/calendar/todo-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; todo-mode-tests.el --- tests for todo-mode.el -*- lexical-binding: t; -*- | 1 | ;;; todo-mode-tests.el --- tests for todo-mode.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stephen Berman <stephen.berman@gmx.net> | 5 | ;; Author: Stephen Berman <stephen.berman@gmx.net> |
| 6 | ;; Keywords: calendar | 6 | ;; Keywords: calendar |
| @@ -825,7 +825,7 @@ automatic testing." | |||
| 825 | Calling todo-show should display the last current todo file, not | 825 | Calling todo-show should display the last current todo file, not |
| 826 | necessarily the new file. After deleting the new file, todo-show | 826 | necessarily the new file. After deleting the new file, todo-show |
| 827 | should display the previously current (or default) todo file." | 827 | should display the previously current (or default) todo file." |
| 828 | ;; This test has been reported to fail unreproducibly (bug#58473) or | 828 | ;; This test has been reported to fail irreproducibly (bug#58473) or |
| 829 | ;; reproducibly only on the ZFS filesystem (bug#76381). Since the | 829 | ;; reproducibly only on the ZFS filesystem (bug#76381). Since the |
| 830 | ;; causes are still unknown, don't run it with 'make check'. | 830 | ;; causes are still unknown, don't run it with 'make check'. |
| 831 | :tags '(:unstable) | 831 | :tags '(:unstable) |
diff --git a/test/lisp/cedet/cedet-files-tests.el b/test/lisp/cedet/cedet-files-tests.el index 3812a43c179..9c774864ee3 100644 --- a/test/lisp/cedet/cedet-files-tests.el +++ b/test/lisp/cedet/cedet-files-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cedet-files-tests.el --- Tests for cedet-files.el -*- lexical-binding:t -*- | 1 | ;;; cedet-files-tests.el --- Tests for cedet-files.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-c.el b/test/lisp/cedet/semantic-utest-c.el index ee08f21fcac..190d149e202 100644 --- a/test/lisp/cedet/semantic-utest-c.el +++ b/test/lisp/cedet/semantic-utest-c.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; semantic-utest-c.el --- C based parsing tests. -*- lexical-binding:t -*- | 1 | ;;; semantic-utest-c.el --- C based parsing tests. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/test.srt b/test/lisp/cedet/semantic-utest-ia-resources/test.srt index 433f2ba1be4..0bfbf4d89b9 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/test.srt +++ b/test/lisp/cedet/semantic-utest-ia-resources/test.srt | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;; test.srt --- unit test support file for semantic-utest-ia | 1 | ;; test.srt --- unit test support file for semantic-utest-ia |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testdoublens.cpp b/test/lisp/cedet/semantic-utest-ia-resources/testdoublens.cpp index 8a9f28576cf..88c4d9ae3d1 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testdoublens.cpp +++ b/test/lisp/cedet/semantic-utest-ia-resources/testdoublens.cpp | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // testdoublens.cpp --- semantic-ia-utest completion engine unit tests | 1 | // testdoublens.cpp --- semantic-ia-utest completion engine unit tests |
| 2 | 2 | ||
| 3 | // Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | // Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | // Author: Eric M. Ludlam <zappo@gnu.org> | 5 | // Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testdoublens.hpp b/test/lisp/cedet/semantic-utest-ia-resources/testdoublens.hpp index faa032873de..0aeedf41c19 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testdoublens.hpp +++ b/test/lisp/cedet/semantic-utest-ia-resources/testdoublens.hpp | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // testdoublens.hpp --- Header file used in one of the Semantic tests | 1 | // testdoublens.hpp --- Header file used in one of the Semantic tests |
| 2 | 2 | ||
| 3 | // Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | // Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | // Author: Eric M. Ludlam <zappo@gnu.org> | 5 | // Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testjavacomp.java b/test/lisp/cedet/semantic-utest-ia-resources/testjavacomp.java index dbe9765b685..bc282174002 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testjavacomp.java +++ b/test/lisp/cedet/semantic-utest-ia-resources/testjavacomp.java | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // testjavacomp.java --- Semantic unit test for Java | 1 | // testjavacomp.java --- Semantic unit test for Java |
| 2 | 2 | ||
| 3 | // Copyright (C) 2009-2025 Free Software Foundation, Inc. | 3 | // Copyright (C) 2009-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | // Author: Eric M. Ludlam <zappo@gnu.org> | 5 | // Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testlocalvars.cpp b/test/lisp/cedet/semantic-utest-ia-resources/testlocalvars.cpp index fdb934214a1..66a34fc0f16 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testlocalvars.cpp +++ b/test/lisp/cedet/semantic-utest-ia-resources/testlocalvars.cpp | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // testlocalvars.java --- Semantic unit test for Java | 1 | // testlocalvars.java --- Semantic unit test for Java |
| 2 | 2 | ||
| 3 | // Copyright (C) 2009-2025 Free Software Foundation, Inc. | 3 | // Copyright (C) 2009-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | // Author: Eric M. Ludlam <zappo@gnu.org> | 5 | // Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testnsp.cpp b/test/lisp/cedet/semantic-utest-ia-resources/testnsp.cpp index 70a895700c5..e01d7b7f2e3 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testnsp.cpp +++ b/test/lisp/cedet/semantic-utest-ia-resources/testnsp.cpp | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* testnsp.cpp --- semantic-ia-utest completion engine unit tests | 1 | /* testnsp.cpp --- semantic-ia-utest completion engine unit tests |
| 2 | 2 | ||
| 3 | Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | Author: Eric M. Ludlam <zappo@gnu.org> | 5 | Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testsppcomplete.c b/test/lisp/cedet/semantic-utest-ia-resources/testsppcomplete.c index 3e35d8f4d99..21d2652eb58 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testsppcomplete.c +++ b/test/lisp/cedet/semantic-utest-ia-resources/testsppcomplete.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* testesppcomplete.cpp --- semantic-ia-utest completion engine unit tests | 1 | /* testesppcomplete.cpp --- semantic-ia-utest completion engine unit tests |
| 2 | 2 | ||
| 3 | Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | Author: Eric M. Ludlam <zappo@gnu.org> | 5 | Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/teststruct.cpp b/test/lisp/cedet/semantic-utest-ia-resources/teststruct.cpp index 1f07d459dc4..6ee76da2037 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/teststruct.cpp +++ b/test/lisp/cedet/semantic-utest-ia-resources/teststruct.cpp | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // teststruct.cpp --- semantic-ia-utest completion engine unit tests | 1 | // teststruct.cpp --- semantic-ia-utest completion engine unit tests |
| 2 | 2 | ||
| 3 | // Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | // Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | // Author: Eric M. Ludlam <zappo@gnu.org> | 5 | // Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testsubclass.cpp b/test/lisp/cedet/semantic-utest-ia-resources/testsubclass.cpp index 22f6d56de1e..550943118dd 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testsubclass.cpp +++ b/test/lisp/cedet/semantic-utest-ia-resources/testsubclass.cpp | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // testsubclass.cpp --- unit test for analyzer and complex C++ inheritance | 1 | // testsubclass.cpp --- unit test for analyzer and complex C++ inheritance |
| 2 | 2 | ||
| 3 | // Copyright (C) 2007-2025 Free Software Foundation, Inc. | 3 | // Copyright (C) 2007-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | // Author: Eric M. Ludlam <zappo@gnu.org> | 5 | // Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testsubclass.hh b/test/lisp/cedet/semantic-utest-ia-resources/testsubclass.hh index 03e54c8d721..430948b6716 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testsubclass.hh +++ b/test/lisp/cedet/semantic-utest-ia-resources/testsubclass.hh | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // testsubclass.hh --- unit test for analyzer and complex C++ inheritance | 1 | // testsubclass.hh --- unit test for analyzer and complex C++ inheritance |
| 2 | 2 | ||
| 3 | // Copyright (C) 2007-2025 Free Software Foundation, Inc. | 3 | // Copyright (C) 2007-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | // Author: Eric M. Ludlam <zappo@gnu.org> | 5 | // Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testtemplates.cpp b/test/lisp/cedet/semantic-utest-ia-resources/testtemplates.cpp index 32fc98d7d97..56c3aacae2e 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testtemplates.cpp +++ b/test/lisp/cedet/semantic-utest-ia-resources/testtemplates.cpp | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // testtemplates.cpp --- semantic-ia-utest completion engine unit tests | 1 | // testtemplates.cpp --- semantic-ia-utest completion engine unit tests |
| 2 | 2 | ||
| 3 | // Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | // Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | // Author: Eric M. Ludlam <zappo@gnu.org> | 5 | // Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testtypedefs.cpp b/test/lisp/cedet/semantic-utest-ia-resources/testtypedefs.cpp index 33a231b0fd6..e89c3a27129 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testtypedefs.cpp +++ b/test/lisp/cedet/semantic-utest-ia-resources/testtypedefs.cpp | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // testtypedefs.cpp --- Sample with some fake bits out of std::string | 1 | // testtypedefs.cpp --- Sample with some fake bits out of std::string |
| 2 | 2 | ||
| 3 | // Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | // Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | // Author: Eric M. Ludlam <zappo@gnu.org> | 5 | // Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testusing.cpp b/test/lisp/cedet/semantic-utest-ia-resources/testusing.cpp index 4b6422e2ed1..5ca1eb3bd54 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testusing.cpp +++ b/test/lisp/cedet/semantic-utest-ia-resources/testusing.cpp | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // testusing.cpp --- semantic-ia-utest completion engine unit tests | 1 | // testusing.cpp --- semantic-ia-utest completion engine unit tests |
| 2 | 2 | ||
| 3 | // Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | // Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | // Author: Eric M. Ludlam <zappo@gnu.org> | 5 | // Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testusing.hh b/test/lisp/cedet/semantic-utest-ia-resources/testusing.hh index 47b1b142eab..e11b3acf765 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testusing.hh +++ b/test/lisp/cedet/semantic-utest-ia-resources/testusing.hh | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // testusing.hh --- semantic-ia-utest completion engine unit tests | 1 | // testusing.hh --- semantic-ia-utest completion engine unit tests |
| 2 | 2 | ||
| 3 | // Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | // Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | // Author: Eric M. Ludlam <zappo@gnu.org> | 5 | // Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testvarnames.c b/test/lisp/cedet/semantic-utest-ia-resources/testvarnames.c index ccd908eeec6..b13d496ff09 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testvarnames.c +++ b/test/lisp/cedet/semantic-utest-ia-resources/testvarnames.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* testvarnames.cpp --- semantic-ia-utest completion engine unit tests | 1 | /* testvarnames.cpp --- semantic-ia-utest completion engine unit tests |
| 2 | 2 | ||
| 3 | Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | Author: Eric M. Ludlam <zappo@gnu.org> | 5 | Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testvarnames.java b/test/lisp/cedet/semantic-utest-ia-resources/testvarnames.java index a6cc658e3b9..3ee85e0bb81 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testvarnames.java +++ b/test/lisp/cedet/semantic-utest-ia-resources/testvarnames.java | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | // testvarnames.java --- Semantic unit test for Java | 1 | // testvarnames.java --- Semantic unit test for Java |
| 2 | 2 | ||
| 3 | // Copyright (C) 2009-2025 Free Software Foundation, Inc. | 3 | // Copyright (C) 2009-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | // Author: Eric M. Ludlam <zappo@gnu.org> | 5 | // Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia-resources/testwisent.wy b/test/lisp/cedet/semantic-utest-ia-resources/testwisent.wy index 1fdb2524e9e..79c57d83c32 100644 --- a/test/lisp/cedet/semantic-utest-ia-resources/testwisent.wy +++ b/test/lisp/cedet/semantic-utest-ia-resources/testwisent.wy | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;; testwisent.wy --- unit test support file for semantic-utest-ia | 1 | ;; testwisent.wy --- unit test support file for semantic-utest-ia |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest-ia.el b/test/lisp/cedet/semantic-utest-ia.el index 99380d72e09..e0baded748e 100644 --- a/test/lisp/cedet/semantic-utest-ia.el +++ b/test/lisp/cedet/semantic-utest-ia.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; semantic-utest-ia.el --- Analyzer unit tests -*- lexical-binding:t -*- | 1 | ;;; semantic-utest-ia.el --- Analyzer unit tests -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic-utest.el b/test/lisp/cedet/semantic-utest.el index 26053326a29..f8509d5b717 100644 --- a/test/lisp/cedet/semantic-utest.el +++ b/test/lisp/cedet/semantic-utest.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; semantic-utest.el --- Tests for semantic's parsing system. -*- lexical-binding:t -*- | 1 | ;;; semantic-utest.el --- Tests for semantic's parsing system. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2003-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2003-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic/bovine/gcc-tests.el b/test/lisp/cedet/semantic/bovine/gcc-tests.el index ea95169b3ad..289f7e50ba8 100644 --- a/test/lisp/cedet/semantic/bovine/gcc-tests.el +++ b/test/lisp/cedet/semantic/bovine/gcc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; gcc-tests.el --- Tests for semantic/bovine/gcc.el -*- lexical-binding:t -*- | 1 | ;;; gcc-tests.el --- Tests for semantic/bovine/gcc.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2003-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2003-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic/format-resources/test-fmt.cpp b/test/lisp/cedet/semantic/format-resources/test-fmt.cpp index 8f44c6e089c..53c74780ece 100644 --- a/test/lisp/cedet/semantic/format-resources/test-fmt.cpp +++ b/test/lisp/cedet/semantic/format-resources/test-fmt.cpp | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /** test-fmt.cpp --- Signatures, and format answers for testing | 1 | /** test-fmt.cpp --- Signatures, and format answers for testing |
| 2 | * | 2 | * |
| 3 | * Copyright (C) 2012, 2016, 2019-2025 Free Software Foundation, Inc. | 3 | * Copyright (C) 2012, 2016, 2019-2026 Free Software Foundation, Inc. |
| 4 | * | 4 | * |
| 5 | * Author: Eric M. Ludlam <zappo@gnu.org> | 5 | * Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | * | 6 | * |
diff --git a/test/lisp/cedet/semantic/format-resources/test-fmt.el b/test/lisp/cedet/semantic/format-resources/test-fmt.el index 9f29cf003a2..ec78f092ad6 100644 --- a/test/lisp/cedet/semantic/format-resources/test-fmt.el +++ b/test/lisp/cedet/semantic/format-resources/test-fmt.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; test-fmt.el --- test semantic tag formatting -*- lexical-binding: t -*- | 1 | ;;; test-fmt.el --- test semantic tag formatting -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2012-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2012-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic/format-tests.el b/test/lisp/cedet/semantic/format-tests.el index e8ea05d2ca9..f9dcb0a91c4 100644 --- a/test/lisp/cedet/semantic/format-tests.el +++ b/test/lisp/cedet/semantic/format-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; semantic/format-tests.el --- Parsing / Formatting tests -*- lexical-binding:t -*- | 1 | ;;; semantic/format-tests.el --- Parsing / Formatting tests -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2003-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2003-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/semantic/fw-tests.el b/test/lisp/cedet/semantic/fw-tests.el index ddd279cf4ed..ef69e94df8a 100644 --- a/test/lisp/cedet/semantic/fw-tests.el +++ b/test/lisp/cedet/semantic/fw-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; fw-tests.el --- Tests for semantic/fw.el -*- lexical-binding:t -*- | 1 | ;;; fw-tests.el --- Tests for semantic/fw.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2003-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2003-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/srecode-utest-getset.el b/test/lisp/cedet/srecode-utest-getset.el index ba9cb305752..d8d9ef6543a 100644 --- a/test/lisp/cedet/srecode-utest-getset.el +++ b/test/lisp/cedet/srecode-utest-getset.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; srecode/test-getset.el --- Test the getset inserter. -*- lexical-binding:t -*- | 1 | ;;; srecode/test-getset.el --- Test the getset inserter. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2009, 2011, 2019-2025 Free Software Foundation, | 3 | ;; Copyright (C) 2008-2009, 2011, 2019-2026 Free Software Foundation, |
| 4 | ;; Inc. | 4 | ;; Inc. |
| 5 | 5 | ||
| 6 | ;; This file is part of GNU Emacs. | 6 | ;; This file is part of GNU Emacs. |
diff --git a/test/lisp/cedet/srecode-utest-template.el b/test/lisp/cedet/srecode-utest-template.el index 7de64f4b1a1..bbbadc00f9a 100644 --- a/test/lisp/cedet/srecode-utest-template.el +++ b/test/lisp/cedet/srecode-utest-template.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; srecode-utest-template.el --- SRecode Core Template tests. -*- lexical-binding:t -*- | 1 | ;;; srecode-utest-template.el --- SRecode Core Template tests. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/srecode/document-tests.el b/test/lisp/cedet/srecode/document-tests.el index cbe72c206fc..ed61f7ca9f5 100644 --- a/test/lisp/cedet/srecode/document-tests.el +++ b/test/lisp/cedet/srecode/document-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; document-tests.el --- Tests for srecode/document.el -*- lexical-binding:t -*- | 1 | ;;; document-tests.el --- Tests for srecode/document.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/cedet/srecode/fields-tests.el b/test/lisp/cedet/srecode/fields-tests.el index f09955cea5b..03b694a8305 100644 --- a/test/lisp/cedet/srecode/fields-tests.el +++ b/test/lisp/cedet/srecode/fields-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; srecode/fields-tests.el --- Tests for srecode/fields.el -*- lexical-binding: t -*- | 1 | ;;; srecode/fields-tests.el --- Tests for srecode/fields.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/char-fold-tests.el b/test/lisp/char-fold-tests.el index 0184ee0c464..4f75c0c3559 100644 --- a/test/lisp/char-fold-tests.el +++ b/test/lisp/char-fold-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; char-fold-tests.el --- Tests for char-fold.el -*- lexical-binding: t; -*- | 1 | ;;; char-fold-tests.el --- Tests for char-fold.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> | 5 | ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/color-tests.el b/test/lisp/color-tests.el index d680c4b42c3..fd4273fb954 100644 --- a/test/lisp/color-tests.el +++ b/test/lisp/color-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; color-tests.el --- Tests for color.el -*- lexical-binding: t; -*- | 1 | ;;; color-tests.el --- Tests for color.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/comint-tests.el b/test/lisp/comint-tests.el index 0ae5daa70ca..553a6187708 100644 --- a/test/lisp/comint-tests.el +++ b/test/lisp/comint-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; comint-tests.el --- Tests for comint.el -*- lexical-binding:t -*- | 1 | ;;; comint-tests.el --- Tests for comint.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2010-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2010-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/completion-preview-tests.el b/test/lisp/completion-preview-tests.el index 8ce2a30bb27..1c5fe772e07 100644 --- a/test/lisp/completion-preview-tests.el +++ b/test/lisp/completion-preview-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; completion-preview-tests.el --- tests for completion-preview.el -*- lexical-binding: t -*- | 1 | ;;; completion-preview-tests.el --- tests for completion-preview.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -378,7 +378,7 @@ instead." | |||
| 378 | (should-not exit-fn-args)))) | 378 | (should-not exit-fn-args)))) |
| 379 | 379 | ||
| 380 | (ert-deftest completion-preview-insert-mid-symbol () | 380 | (ert-deftest completion-preview-insert-mid-symbol () |
| 381 | "Test `completion-preview-insert-word' when point is in a mulit-word symbol." | 381 | "Test `completion-preview-insert-word' when point is in a multi-word symbol." |
| 382 | (with-temp-buffer | 382 | (with-temp-buffer |
| 383 | (setq-local completion-at-point-functions | 383 | (setq-local completion-at-point-functions |
| 384 | (list | 384 | (list |
diff --git a/test/lisp/completion-tests.el b/test/lisp/completion-tests.el index 1d6e3480b64..3829f80edc7 100644 --- a/test/lisp/completion-tests.el +++ b/test/lisp/completion-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; completion-tests.el --- Tests for completion.el -*- lexical-binding: t -*- | 1 | ;;; completion-tests.el --- Tests for completion.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/cus-edit-tests.el b/test/lisp/cus-edit-tests.el index 1662a7ee32e..67a377e9073 100644 --- a/test/lisp/cus-edit-tests.el +++ b/test/lisp/cus-edit-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cus-edit-tests.el --- Tests for cus-edit.el -*- lexical-binding: t -*- | 1 | ;;; cus-edit-tests.el --- Tests for cus-edit.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/custom-tests.el b/test/lisp/custom-tests.el index d800ed82ea4..984c238444d 100644 --- a/test/lisp/custom-tests.el +++ b/test/lisp/custom-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; custom-tests.el --- tests for custom.el -*- lexical-binding: t -*- | 1 | ;;; custom-tests.el --- tests for custom.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/dabbrev-resources/INSTALL_BEGIN b/test/lisp/dabbrev-resources/INSTALL_BEGIN index cd4b31edca5..817c7b805a3 100644 --- a/test/lisp/dabbrev-resources/INSTALL_BEGIN +++ b/test/lisp/dabbrev-resources/INSTALL_BEGIN | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | GNU Emacs Installation Guide | 1 | GNU Emacs Installation Guide |
| 2 | Copyright (C) 1992, 1994, 1996-1997, 2000-2025 Free Software Foundation, | 2 | Copyright (C) 1992, 1994, 1996-1997, 2000-2026 Free Software Foundation, |
| 3 | Inc. | 3 | Inc. |
| 4 | See the end of the file for license conditions. | 4 | See the end of the file for license conditions. |
| 5 | 5 | ||
diff --git a/test/lisp/dabbrev-tests.el b/test/lisp/dabbrev-tests.el index 3d2a424cba9..5a7e5a2332f 100644 --- a/test/lisp/dabbrev-tests.el +++ b/test/lisp/dabbrev-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; dabbrev-tests.el --- Test suite for dabbrev. -*- lexical-binding:t -*- | 1 | ;;; dabbrev-tests.el --- Test suite for dabbrev. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Alan Third <alan@idiocy.org> | 5 | ;; Author: Alan Third <alan@idiocy.org> |
| 6 | ;; Keywords: dabbrev | 6 | ;; Keywords: dabbrev |
diff --git a/test/lisp/delim-col-tests.el b/test/lisp/delim-col-tests.el index 92c1b8486f9..bac9c62e0ba 100644 --- a/test/lisp/delim-col-tests.el +++ b/test/lisp/delim-col-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; delim-col-tests.el --- Tests for delim-col.el -*- lexical-binding: t; -*- | 1 | ;;; delim-col-tests.el --- Tests for delim-col.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/descr-text-tests.el b/test/lisp/descr-text-tests.el index 38203c5a97d..3e4e5b4b9df 100644 --- a/test/lisp/descr-text-tests.el +++ b/test/lisp/descr-text-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; descr-text-tests.el --- ERT tests for descr-text.el -*- lexical-binding: t -*- | 1 | ;;; descr-text-tests.el --- ERT tests for descr-text.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014, 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014, 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Michal Nazarewicz <mina86@mina86.com> | 5 | ;; Author: Michal Nazarewicz <mina86@mina86.com> |
| 6 | 6 | ||
diff --git a/test/lisp/desktop-tests.el b/test/lisp/desktop-tests.el index 5240596e869..e2bdd00fe9b 100644 --- a/test/lisp/desktop-tests.el +++ b/test/lisp/desktop-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; desktop-tests.el --- Tests for desktop.el -*- lexical-binding: t -*- | 1 | ;;; desktop-tests.el --- Tests for desktop.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020, 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020, 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/dired-aux-tests.el b/test/lisp/dired-aux-tests.el index 7d4f8562277..eaccf12228c 100644 --- a/test/lisp/dired-aux-tests.el +++ b/test/lisp/dired-aux-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; dired-aux-tests.el --- Test suite for dired-aux. -*- lexical-binding: t -*- | 1 | ;;; dired-aux-tests.el --- Test suite for dired-aux. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/dired-tests.el b/test/lisp/dired-tests.el index 74732b2087e..7d0ea1692ff 100644 --- a/test/lisp/dired-tests.el +++ b/test/lisp/dired-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; dired-tests.el --- Test suite. -*- lexical-binding: t -*- | 1 | ;;; dired-tests.el --- Test suite. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/dired-x-tests.el b/test/lisp/dired-x-tests.el index b8b0ae1f3e7..fa61a6e45de 100644 --- a/test/lisp/dired-x-tests.el +++ b/test/lisp/dired-x-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; dired-x-tests.el --- Test suite for dired-x. -*- lexical-binding: t -*- | 1 | ;;; dired-x-tests.el --- Test suite for dired-x. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/dnd-tests.el b/test/lisp/dnd-tests.el index 180f0f2b288..3941173b043 100644 --- a/test/lisp/dnd-tests.el +++ b/test/lisp/dnd-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; dnd-tests.el --- Tests for window system independent DND support -*- lexical-binding: t; -*- | 1 | ;;; dnd-tests.el --- Tests for window system independent DND support -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/dom-tests.el b/test/lisp/dom-tests.el index 0681d3b337e..a7db43b1bfa 100644 --- a/test/lisp/dom-tests.el +++ b/test/lisp/dom-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; dom-tests.el --- Tests for dom.el -*- lexical-binding: t; -*- | 1 | ;;; dom-tests.el --- Tests for dom.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/edmacro-tests.el b/test/lisp/edmacro-tests.el index 7f8fa0f5a08..93767217851 100644 --- a/test/lisp/edmacro-tests.el +++ b/test/lisp/edmacro-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; edmacro-tests.el --- Tests for edmacro.el -*- lexical-binding:t -*- | 1 | ;;; edmacro-tests.el --- Tests for edmacro.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/electric-tests.el b/test/lisp/electric-tests.el index 4468559cf38..9209e1739fd 100644 --- a/test/lisp/electric-tests.el +++ b/test/lisp/electric-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; electric-tests.el --- tests for electric.el -*- lexical-binding: t; -*- | 1 | ;;; electric-tests.el --- tests for electric.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: João Távora <joaotavora@gmail.com> | 5 | ;; Author: João Távora <joaotavora@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/elide-head-tests.el b/test/lisp/elide-head-tests.el index 9150a98752f..c67704663e5 100644 --- a/test/lisp/elide-head-tests.el +++ b/test/lisp/elide-head-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; elide-head-tests.el --- Tests for elide-head.el -*- lexical-binding: t; -*- | 1 | ;;; elide-head-tests.el --- Tests for elide-head.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/backquote-tests.el b/test/lisp/emacs-lisp/backquote-tests.el index b7e651ad63e..75054d34609 100644 --- a/test/lisp/emacs-lisp/backquote-tests.el +++ b/test/lisp/emacs-lisp/backquote-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; backquote-tests.el --- Tests for backquote.el -*- lexical-binding: t -*- | 1 | ;;; backquote-tests.el --- Tests for backquote.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/backtrace-tests.el b/test/lisp/emacs-lisp/backtrace-tests.el index 3d7a422a987..a9f1fc16423 100644 --- a/test/lisp/emacs-lisp/backtrace-tests.el +++ b/test/lisp/emacs-lisp/backtrace-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; backtrace-tests.el --- Tests for backtraces -*- lexical-binding: t; -*- | 1 | ;;; backtrace-tests.el --- Tests for backtraces -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Gemini Lasswell | 5 | ;; Author: Gemini Lasswell |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/benchmark-tests.el b/test/lisp/emacs-lisp/benchmark-tests.el index a89e4b08c34..f39c5dc54ac 100644 --- a/test/lisp/emacs-lisp/benchmark-tests.el +++ b/test/lisp/emacs-lisp/benchmark-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; benchmark-tests.el --- Test suite for benchmark. -*- lexical-binding: t -*- | 1 | ;;; benchmark-tests.el --- Test suite for benchmark. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/bindat-tests.el b/test/lisp/emacs-lisp/bindat-tests.el index 78021f0bc14..5c031a3b869 100644 --- a/test/lisp/emacs-lisp/bindat-tests.el +++ b/test/lisp/emacs-lisp/bindat-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; bindat-tests.el --- tests for bindat.el -*- lexical-binding: t -*- | 1 | ;;; bindat-tests.el --- tests for bindat.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/byte-run-tests.el b/test/lisp/emacs-lisp/byte-run-tests.el index a6e1b40e262..97499662ed2 100644 --- a/test/lisp/emacs-lisp/byte-run-tests.el +++ b/test/lisp/emacs-lisp/byte-run-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; byte-run-tests.el --- Tests for byte-run.el -*- lexical-binding: t -*- | 1 | ;;; byte-run-tests.el --- Tests for byte-run.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/bytecomp-tests.el b/test/lisp/emacs-lisp/bytecomp-tests.el index 0245ad3c977..0014a0ed555 100644 --- a/test/lisp/emacs-lisp/bytecomp-tests.el +++ b/test/lisp/emacs-lisp/bytecomp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; bytecomp-tests.el --- Tests for bytecomp.el -*- lexical-binding:t -*- | 1 | ;;; bytecomp-tests.el --- Tests for bytecomp.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Shigeru Fukaya <shigeru.fukaya@gmail.com> | 5 | ;; Author: Shigeru Fukaya <shigeru.fukaya@gmail.com> |
| 6 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 6 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
| @@ -1313,11 +1313,11 @@ byte-compiled. Run with dynamic binding." | |||
| 1313 | "warn-make-process-missing-keyword-value.el" | 1313 | "warn-make-process-missing-keyword-value.el" |
| 1314 | "missing value for keyword argument :command") | 1314 | "missing value for keyword argument :command") |
| 1315 | 1315 | ||
| 1316 | ;;;; NEW STOUGH, 2025-07-13 | 1316 | ;;;; NEW STUFF, 2025-07-13 |
| 1317 | (bytecomp--define-warning-file-test "macro-warning-position.el" ":18:8:") | 1317 | (bytecomp--define-warning-file-test "macro-warning-position.el" ":18:8:") |
| 1318 | 1318 | ||
| 1319 | (bytecomp--define-warning-file-test "macro-warning-position-2.el" ":18:8:") | 1319 | (bytecomp--define-warning-file-test "macro-warning-position-2.el" ":18:8:") |
| 1320 | ;;;; END OF NEW STOUGH | 1320 | ;;;; END OF NEW STUFF |
| 1321 | 1321 | ||
| 1322 | ;;;; Macro expansion. | 1322 | ;;;; Macro expansion. |
| 1323 | 1323 | ||
| @@ -1412,7 +1412,7 @@ byte-compiled. Run with dynamic binding." | |||
| 1412 | 1412 | ||
| 1413 | (defun bytecomp-tests--f (x y &optional u v) (list x y u v)) | 1413 | (defun bytecomp-tests--f (x y &optional u v) (list x y u v)) |
| 1414 | 1414 | ||
| 1415 | (ert-deftest bytecomp-tests--warn-arity-noncompiled-callee () | 1415 | (ert-deftest bytecomp-tests--warn-arity-non-compiled-callee () |
| 1416 | "Check that calls to non-compiled functions are arity-checked (bug#78685)" | 1416 | "Check that calls to non-compiled functions are arity-checked (bug#78685)" |
| 1417 | (should (not (compiled-function-p (symbol-function 'bytecomp-tests--f)))) | 1417 | (should (not (compiled-function-p (symbol-function 'bytecomp-tests--f)))) |
| 1418 | (let* ((source (concat ";;; -*-lexical-binding:t-*-\n" | 1418 | (let* ((source (concat ";;; -*-lexical-binding:t-*-\n" |
| @@ -2081,8 +2081,8 @@ EXPECTED-POINT BINDINGS (MODES \\='\\='(ruby-mode js-mode python-mode)) \ | |||
| 2081 | (df '((((class color grayscale) (max-colors 75) (background light)) | 2081 | (df '((((class color grayscale) (max-colors 75) (background light)) |
| 2082 | :foreground "cyan")))) | 2082 | :foreground "cyan")))) |
| 2083 | (bytecomp--with-warning-test | 2083 | (bytecomp--with-warning-test |
| 2084 | (rx "Bad face display `defualt'") | 2084 | (rx "Bad face display `bad-default'") |
| 2085 | (df '((defualt :foreground "cyan")))) | 2085 | (df '((bad-default :foreground "cyan")))) |
| 2086 | (bytecomp--with-warning-test | 2086 | (bytecomp--with-warning-test |
| 2087 | (rx "`:inverse' is not a valid face attribute keyword") | 2087 | (rx "`:inverse' is not a valid face attribute keyword") |
| 2088 | (df '((t :background "blue" :inverse t)))) | 2088 | (df '((t :background "blue" :inverse t)))) |
diff --git a/test/lisp/emacs-lisp/cconv-tests.el b/test/lisp/emacs-lisp/cconv-tests.el index 6e03a14d4c0..a270ff5273f 100644 --- a/test/lisp/emacs-lisp/cconv-tests.el +++ b/test/lisp/emacs-lisp/cconv-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cconv-tests.el --- Tests for cconv.el -*- lexical-binding: t -*- | 1 | ;;; cconv-tests.el --- Tests for cconv.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/check-declare-tests.el b/test/lisp/emacs-lisp/check-declare-tests.el index 5b50d0b92f9..b766128408c 100644 --- a/test/lisp/emacs-lisp/check-declare-tests.el +++ b/test/lisp/emacs-lisp/check-declare-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; check-declare-tests.el --- Tests for check-declare.el -*- lexical-binding: t; -*- | 1 | ;;; check-declare-tests.el --- Tests for check-declare.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/emacs-lisp/checkdoc-tests.el b/test/lisp/emacs-lisp/checkdoc-tests.el index 6404c74a993..5e06d5e67cd 100644 --- a/test/lisp/emacs-lisp/checkdoc-tests.el +++ b/test/lisp/emacs-lisp/checkdoc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; checkdoc-tests.el --- unit tests for checkdoc.el -*- lexical-binding: t; -*- | 1 | ;;; checkdoc-tests.el --- unit tests for checkdoc.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Philipp Stephani <phst@google.com> | 5 | ;; Author: Philipp Stephani <phst@google.com> |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/cl-extra-tests.el b/test/lisp/emacs-lisp/cl-extra-tests.el index 2414959237e..f5c7f150fa4 100644 --- a/test/lisp/emacs-lisp/cl-extra-tests.el +++ b/test/lisp/emacs-lisp/cl-extra-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cl-extra-tests.el --- tests for emacs-lisp/cl-extra.el -*- lexical-binding:t -*- | 1 | ;;; cl-extra-tests.el --- tests for emacs-lisp/cl-extra.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/cl-generic-tests.el b/test/lisp/emacs-lisp/cl-generic-tests.el index 3778e5f1ab9..8c4ce36a6e0 100644 --- a/test/lisp/emacs-lisp/cl-generic-tests.el +++ b/test/lisp/emacs-lisp/cl-generic-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cl-generic-tests.el --- Tests for cl-generic.el functionality -*- lexical-binding: t; -*- | 1 | ;;; cl-generic-tests.el --- Tests for cl-generic.el functionality -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/cl-lib-tests.el b/test/lisp/emacs-lisp/cl-lib-tests.el index 2955e3f9c88..321d6b91ffb 100644 --- a/test/lisp/emacs-lisp/cl-lib-tests.el +++ b/test/lisp/emacs-lisp/cl-lib-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cl-lib-tests.el --- tests for emacs-lisp/cl-lib.el -*- lexical-binding:t -*- | 1 | ;;; cl-lib-tests.el --- tests for emacs-lisp/cl-lib.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/cl-macs-tests.el b/test/lisp/emacs-lisp/cl-macs-tests.el index ade5b62d05a..9c152a2fef5 100644 --- a/test/lisp/emacs-lisp/cl-macs-tests.el +++ b/test/lisp/emacs-lisp/cl-macs-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cl-macs-tests.el --- tests for emacs-lisp/cl-macs.el -*- lexical-binding:t -*- | 1 | ;;; cl-macs-tests.el --- tests for emacs-lisp/cl-macs.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/cl-preloaded-tests.el b/test/lisp/emacs-lisp/cl-preloaded-tests.el index 308d79217e4..fccd7f43cce 100644 --- a/test/lisp/emacs-lisp/cl-preloaded-tests.el +++ b/test/lisp/emacs-lisp/cl-preloaded-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cl-preloaded-tests.el --- unit tests for cl-preloaded.el -*- lexical-binding: t; -*- | 1 | ;;; cl-preloaded-tests.el --- unit tests for cl-preloaded.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | ;; Author: Philipp Stephani <phst@google.com> | 4 | ;; Author: Philipp Stephani <phst@google.com> |
| 5 | 5 | ||
| 6 | ;; This file is part of GNU Emacs. | 6 | ;; This file is part of GNU Emacs. |
diff --git a/test/lisp/emacs-lisp/cl-print-tests.el b/test/lisp/emacs-lisp/cl-print-tests.el index a2da894057b..7f307b7a334 100644 --- a/test/lisp/emacs-lisp/cl-print-tests.el +++ b/test/lisp/emacs-lisp/cl-print-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cl-print-tests.el --- Test suite for the cl-print facility. -*- lexical-binding:t -*- | 1 | ;;; cl-print-tests.el --- Test suite for the cl-print facility. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/cl-seq-tests.el b/test/lisp/emacs-lisp/cl-seq-tests.el index ff875953cc4..ae2acb48d51 100644 --- a/test/lisp/emacs-lisp/cl-seq-tests.el +++ b/test/lisp/emacs-lisp/cl-seq-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cl-seq-tests.el --- Tests for cl-seq.el -*- lexical-binding: t; -*- | 1 | ;;; cl-seq-tests.el --- Tests for cl-seq.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Nicolas Richard <youngfrog@members.fsf.org> | 5 | ;; Author: Nicolas Richard <youngfrog@members.fsf.org> |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/comp-cstr-tests.el b/test/lisp/emacs-lisp/comp-cstr-tests.el index 0f262b189f3..a4e7a182396 100644 --- a/test/lisp/emacs-lisp/comp-cstr-tests.el +++ b/test/lisp/emacs-lisp/comp-cstr-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; comp-cstr-tests.el --- unit tests for src/comp.c -*- lexical-binding: t; -*- | 1 | ;;; comp-cstr-tests.el --- unit tests for src/comp.c -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Andrea Corallo <acorallo@gnu.org> | 5 | ;; Author: Andrea Corallo <acorallo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/comp-tests.el b/test/lisp/emacs-lisp/comp-tests.el index bfcc5be3a2b..05a6031bac9 100644 --- a/test/lisp/emacs-lisp/comp-tests.el +++ b/test/lisp/emacs-lisp/comp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; comp-tests.el --- Tests for comp.el -*- lexical-binding:t -*- | 1 | ;;; comp-tests.el --- Tests for comp.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/cond-star-tests.el b/test/lisp/emacs-lisp/cond-star-tests.el index 2f9aa6168f0..4cb0f1d35f3 100644 --- a/test/lisp/emacs-lisp/cond-star-tests.el +++ b/test/lisp/emacs-lisp/cond-star-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cond-star-tests.el --- tests for emacs-lisp/cond-star.el -*- lexical-binding:t -*- | 1 | ;;; cond-star-tests.el --- tests for emacs-lisp/cond-star.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/copyright-tests.el b/test/lisp/emacs-lisp/copyright-tests.el index 9f96fba64bf..d2d1b38e923 100644 --- a/test/lisp/emacs-lisp/copyright-tests.el +++ b/test/lisp/emacs-lisp/copyright-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; copyright-tests.el --- tests for copyright.el -*- lexical-binding: t -*- | 1 | ;;; copyright-tests.el --- tests for copyright.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/derived-tests.el b/test/lisp/emacs-lisp/derived-tests.el index d235d6b7842..bc656c4eb46 100644 --- a/test/lisp/emacs-lisp/derived-tests.el +++ b/test/lisp/emacs-lisp/derived-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; derived-tests.el --- tests for derived.el -*- lexical-binding: t; -*- | 1 | ;;; derived-tests.el --- tests for derived.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/easy-mmode-tests.el b/test/lisp/emacs-lisp/easy-mmode-tests.el index b81b6fae86d..f88058e1b49 100644 --- a/test/lisp/emacs-lisp/easy-mmode-tests.el +++ b/test/lisp/emacs-lisp/easy-mmode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; easy-mmode-tests.el --- tests for easy-mmode.el -*- lexical-binding: t -*- | 1 | ;;; easy-mmode-tests.el --- tests for easy-mmode.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/edebug-resources/edebug-test-code.el b/test/lisp/emacs-lisp/edebug-resources/edebug-test-code.el index 4e63732554f..a70e8c45d7b 100644 --- a/test/lisp/emacs-lisp/edebug-resources/edebug-test-code.el +++ b/test/lisp/emacs-lisp/edebug-resources/edebug-test-code.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; edebug-test-code.el --- Sample code for the Edebug test suite -*- lexical-binding:t -*- | 1 | ;;; edebug-test-code.el --- Sample code for the Edebug test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Gemini Lasswell | 5 | ;; Author: Gemini Lasswell |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/edebug-tests.el b/test/lisp/emacs-lisp/edebug-tests.el index 4550f25f798..c93dfad0a0d 100644 --- a/test/lisp/emacs-lisp/edebug-tests.el +++ b/test/lisp/emacs-lisp/edebug-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; edebug-tests.el --- Edebug test suite -*- lexical-binding:t -*- | 1 | ;;; edebug-tests.el --- Edebug test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Gemini Lasswell | 5 | ;; Author: Gemini Lasswell |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/eieio-tests/eieio-test-methodinvoke.el b/test/lisp/emacs-lisp/eieio-tests/eieio-test-methodinvoke.el index 13c33a219ee..f2353e2374a 100644 --- a/test/lisp/emacs-lisp/eieio-tests/eieio-test-methodinvoke.el +++ b/test/lisp/emacs-lisp/eieio-tests/eieio-test-methodinvoke.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; eieio-test-methodinvoke.el --- eieio tests for method invocation -*- lexical-binding:t -*- | 1 | ;;; eieio-test-methodinvoke.el --- eieio tests for method invocation -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2005, 2008, 2010, 2013-2025 Free Software Foundation, | 3 | ;; Copyright (C) 2005, 2008, 2010, 2013-2026 Free Software Foundation, |
| 4 | ;; Inc. | 4 | ;; Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 6 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
diff --git a/test/lisp/emacs-lisp/eieio-tests/eieio-test-persist.el b/test/lisp/emacs-lisp/eieio-tests/eieio-test-persist.el index c9a002c3ae5..39dc96f2ab3 100644 --- a/test/lisp/emacs-lisp/eieio-tests/eieio-test-persist.el +++ b/test/lisp/emacs-lisp/eieio-tests/eieio-test-persist.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; eieio-test-persist.el --- Tests for eieio-persistent class -*- lexical-binding:t -*- | 1 | ;;; eieio-test-persist.el --- Tests for eieio-persistent class -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2011-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2011-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/eieio-tests/eieio-tests.el b/test/lisp/emacs-lisp/eieio-tests/eieio-tests.el index b60db80ad56..4193f0a1175 100644 --- a/test/lisp/emacs-lisp/eieio-tests/eieio-tests.el +++ b/test/lisp/emacs-lisp/eieio-tests/eieio-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; eieio-tests.el --- eieio test routines -*- lexical-binding: t -*- | 1 | ;;; eieio-tests.el --- eieio test routines -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999-2003, 2005-2010, 2012-2025 Free Software | 3 | ;; Copyright (C) 1999-2003, 2005-2010, 2012-2026 Free Software |
| 4 | ;; Foundation, Inc. | 4 | ;; Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 6 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
diff --git a/test/lisp/emacs-lisp/ert-font-lock-tests.el b/test/lisp/emacs-lisp/ert-font-lock-tests.el index 0c3e4405562..2badb8f7aac 100644 --- a/test/lisp/emacs-lisp/ert-font-lock-tests.el +++ b/test/lisp/emacs-lisp/ert-font-lock-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ert-font-lock-tests.el --- ERT Font Lock tests -*- lexical-binding: t -*- | 1 | ;;; ert-font-lock-tests.el --- ERT Font Lock tests -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Vladimir Kazanov | 5 | ;; Author: Vladimir Kazanov |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/ert-tests.el b/test/lisp/emacs-lisp/ert-tests.el index 048ab931f50..00020e8bef6 100644 --- a/test/lisp/emacs-lisp/ert-tests.el +++ b/test/lisp/emacs-lisp/ert-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ert-tests.el --- ERT's self-tests -*- lexical-binding: t -*- | 1 | ;;; ert-tests.el --- ERT's self-tests -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2007-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2007-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Christian Ohler <ohler@gnu.org> | 5 | ;; Author: Christian Ohler <ohler@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/ert-x-tests.el b/test/lisp/emacs-lisp/ert-x-tests.el index 7b7abf1ba7e..c72ab97c557 100644 --- a/test/lisp/emacs-lisp/ert-x-tests.el +++ b/test/lisp/emacs-lisp/ert-x-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ert-x-tests.el --- Tests for ert-x.el -*- lexical-binding:t -*- | 1 | ;;; ert-x-tests.el --- Tests for ert-x.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008, 2010-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008, 2010-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Phil Hagelberg | 5 | ;; Author: Phil Hagelberg |
| 6 | ;; Christian Ohler <ohler@gnu.org> | 6 | ;; Christian Ohler <ohler@gnu.org> |
diff --git a/test/lisp/emacs-lisp/faceup-resources/faceup-test-mode.el b/test/lisp/emacs-lisp/faceup-resources/faceup-test-mode.el index 742103e9c45..4d164db6141 100644 --- a/test/lisp/emacs-lisp/faceup-resources/faceup-test-mode.el +++ b/test/lisp/emacs-lisp/faceup-resources/faceup-test-mode.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; faceup-test-mode.el --- Dummy major mode for testing `faceup'. -*- lexical-binding:t -*- | 1 | ;;; faceup-test-mode.el --- Dummy major mode for testing `faceup'. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Anders Lindgren | 5 | ;; Author: Anders Lindgren |
| 6 | ;; Keywords: languages, faces | 6 | ;; Keywords: languages, faces |
diff --git a/test/lisp/emacs-lisp/faceup-resources/faceup-test-this-file-directory.el b/test/lisp/emacs-lisp/faceup-resources/faceup-test-this-file-directory.el index 5d301d498ae..c4150fac63b 100644 --- a/test/lisp/emacs-lisp/faceup-resources/faceup-test-this-file-directory.el +++ b/test/lisp/emacs-lisp/faceup-resources/faceup-test-this-file-directory.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; faceup-test-this-file-directory.el --- Support file for faceup tests -*- lexical-binding:t -*- | 1 | ;;; faceup-test-this-file-directory.el --- Support file for faceup tests -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Anders Lindgren | 5 | ;; Author: Anders Lindgren |
| 6 | ;; Keywords: languages, faces | 6 | ;; Keywords: languages, faces |
diff --git a/test/lisp/emacs-lisp/faceup-tests/faceup-test-basics.el b/test/lisp/emacs-lisp/faceup-tests/faceup-test-basics.el index 9d466d4f2ee..aec9bd02ad7 100644 --- a/test/lisp/emacs-lisp/faceup-tests/faceup-test-basics.el +++ b/test/lisp/emacs-lisp/faceup-tests/faceup-test-basics.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; faceup-test-basics.el --- Tests for the `faceup' package. -*- lexical-binding:t -*- | 1 | ;;; faceup-test-basics.el --- Tests for the `faceup' package. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Anders Lindgren | 5 | ;; Author: Anders Lindgren |
| 6 | ;; Keywords: languages, faces | 6 | ;; Keywords: languages, faces |
diff --git a/test/lisp/emacs-lisp/faceup-tests/faceup-test-files.el b/test/lisp/emacs-lisp/faceup-tests/faceup-test-files.el index f995394a01e..63f4df5942b 100644 --- a/test/lisp/emacs-lisp/faceup-tests/faceup-test-files.el +++ b/test/lisp/emacs-lisp/faceup-tests/faceup-test-files.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; faceup-test-files.el --- Self test of `faceup' using dummy major mode. -*- lexical-binding:t -*- | 1 | ;;; faceup-test-files.el --- Self test of `faceup' using dummy major mode. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Anders Lindgren | 5 | ;; Author: Anders Lindgren |
| 6 | ;; Keywords: languages, faces | 6 | ;; Keywords: languages, faces |
diff --git a/test/lisp/emacs-lisp/find-func-tests.el b/test/lisp/emacs-lisp/find-func-tests.el index 5a2dbc5d8d7..b9722c08c01 100644 --- a/test/lisp/emacs-lisp/find-func-tests.el +++ b/test/lisp/emacs-lisp/find-func-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; find-func-tests.el --- Unit tests for find-func.el -*- lexical-binding: t; -*- | 1 | ;;; find-func-tests.el --- Unit tests for find-func.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/emacs-lisp/float-sup-tests.el b/test/lisp/emacs-lisp/float-sup-tests.el index 306a20d6468..6767c911843 100644 --- a/test/lisp/emacs-lisp/float-sup-tests.el +++ b/test/lisp/emacs-lisp/float-sup-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; float-sup-tests.el --- Tests for float-sup.el -*- lexical-binding:t -*- | 1 | ;;; float-sup-tests.el --- Tests for float-sup.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/generator-tests.el b/test/lisp/emacs-lisp/generator-tests.el index 01d2f978909..fdaf691aded 100644 --- a/test/lisp/emacs-lisp/generator-tests.el +++ b/test/lisp/emacs-lisp/generator-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; generator-tests.el --- Testing generators -*- lexical-binding: t -*- | 1 | ;;; generator-tests.el --- Testing generators -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Daniel Colascione <dancol@dancol.org> | 5 | ;; Author: Daniel Colascione <dancol@dancol.org> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/emacs-lisp/gv-tests.el b/test/lisp/emacs-lisp/gv-tests.el index 892af4bfab1..c2ae871cb35 100644 --- a/test/lisp/emacs-lisp/gv-tests.el +++ b/test/lisp/emacs-lisp/gv-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; gv-tests.el --- tests for gv.el -*- lexical-binding: t; -*- | 1 | ;;; gv-tests.el --- tests for gv.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/icons-tests.el b/test/lisp/emacs-lisp/icons-tests.el index cedc48efe78..827c0d82457 100644 --- a/test/lisp/emacs-lisp/icons-tests.el +++ b/test/lisp/emacs-lisp/icons-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; icons-tests.el --- Tests for icons.el -*- lexical-binding: t; -*- | 1 | ;;; icons-tests.el --- Tests for icons.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/let-alist-tests.el b/test/lisp/emacs-lisp/let-alist-tests.el index b23178f5467..edca0958dbc 100644 --- a/test/lisp/emacs-lisp/let-alist-tests.el +++ b/test/lisp/emacs-lisp/let-alist-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; let-alist.el --- tests for file handling. -*- lexical-binding: t; -*- | 1 | ;;; let-alist.el --- tests for file handling. -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2012-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2012-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/lisp-mnt-tests.el b/test/lisp/emacs-lisp/lisp-mnt-tests.el index bf65034b2f3..d1a3c6a7c6b 100644 --- a/test/lisp/emacs-lisp/lisp-mnt-tests.el +++ b/test/lisp/emacs-lisp/lisp-mnt-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; lisp-mnt-tests.el --- Tests for lisp-mnt -*- lexical-binding: t; -*- | 1 | ;;; lisp-mnt-tests.el --- Tests for lisp-mnt -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/lisp-mode-tests.el b/test/lisp/emacs-lisp/lisp-mode-tests.el index f8f9330d4c7..bc790e84899 100644 --- a/test/lisp/emacs-lisp/lisp-mode-tests.el +++ b/test/lisp/emacs-lisp/lisp-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; lisp-mode-tests.el --- Test Lisp editing commands -*- lexical-binding: t; -*- | 1 | ;;; lisp-mode-tests.el --- Test Lisp editing commands -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/lisp-tests.el b/test/lisp/emacs-lisp/lisp-tests.el index d7cdaa3b331..560fd436015 100644 --- a/test/lisp/emacs-lisp/lisp-tests.el +++ b/test/lisp/emacs-lisp/lisp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; lisp-tests.el --- Test Lisp editing commands -*- lexical-binding: t; -*- | 1 | ;;; lisp-tests.el --- Test Lisp editing commands -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Aaron S. Hawley <aaron.s.hawley@gmail.com> | 5 | ;; Author: Aaron S. Hawley <aaron.s.hawley@gmail.com> |
| 6 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 6 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
diff --git a/test/lisp/emacs-lisp/macroexp-resources/m1.el b/test/lisp/emacs-lisp/macroexp-resources/m1.el index fc9000c8a35..9a794dfde9a 100644 --- a/test/lisp/emacs-lisp/macroexp-resources/m1.el +++ b/test/lisp/emacs-lisp/macroexp-resources/m1.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; m1.el --- Some sample code for macroexp-tests -*- lexical-binding: t; -*- | 1 | ;;; m1.el --- Some sample code for macroexp-tests -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/emacs-lisp/macroexp-resources/m2.el b/test/lisp/emacs-lisp/macroexp-resources/m2.el index 65b0a37286a..4b236eb01b8 100644 --- a/test/lisp/emacs-lisp/macroexp-resources/m2.el +++ b/test/lisp/emacs-lisp/macroexp-resources/m2.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; m2.el --- More sample code for macroexp-tests -*- lexical-binding: t; -*- | 1 | ;;; m2.el --- More sample code for macroexp-tests -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/emacs-lisp/macroexp-resources/vk.el b/test/lisp/emacs-lisp/macroexp-resources/vk.el index 31ff99e77d1..c1cdb9f9f4d 100644 --- a/test/lisp/emacs-lisp/macroexp-resources/vk.el +++ b/test/lisp/emacs-lisp/macroexp-resources/vk.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; vk.el --- test code for macroexp-tests -*- lexical-binding: t -*- | 1 | ;;; vk.el --- test code for macroexp-tests -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/macroexp-tests.el b/test/lisp/emacs-lisp/macroexp-tests.el index 91d66986bc6..94bd1e98920 100644 --- a/test/lisp/emacs-lisp/macroexp-tests.el +++ b/test/lisp/emacs-lisp/macroexp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; macroexp-tests.el --- Tests for macroexp.el -*- lexical-binding: t; -*- | 1 | ;;; macroexp-tests.el --- Tests for macroexp.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/emacs-lisp/map-tests.el b/test/lisp/emacs-lisp/map-tests.el index ce0f2b08275..a7e9f857563 100644 --- a/test/lisp/emacs-lisp/map-tests.el +++ b/test/lisp/emacs-lisp/map-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; map-tests.el --- Tests for map.el -*- lexical-binding:t -*- | 1 | ;;; map-tests.el --- Tests for map.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Nicolas Petton <nicolas@petton.fr> | 5 | ;; Author: Nicolas Petton <nicolas@petton.fr> |
| 6 | ;; Maintainer: emacs-devel@gnu.org | 6 | ;; Maintainer: emacs-devel@gnu.org |
diff --git a/test/lisp/emacs-lisp/map-ynp-tests.el b/test/lisp/emacs-lisp/map-ynp-tests.el index 4e88e5865fe..bf89e972d8b 100644 --- a/test/lisp/emacs-lisp/map-ynp-tests.el +++ b/test/lisp/emacs-lisp/map-ynp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; map-ynp-tests.el --- Tests for map-ynp.el -*- lexical-binding: t -*- | 1 | ;;; map-ynp-tests.el --- Tests for map-ynp.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Spencer Baugh <sbaugh@catern.com> | 5 | ;; Author: Spencer Baugh <sbaugh@catern.com> |
| 6 | ;; Maintainer: emacs-devel@gnu.org | 6 | ;; Maintainer: emacs-devel@gnu.org |
diff --git a/test/lisp/emacs-lisp/memory-report-tests.el b/test/lisp/emacs-lisp/memory-report-tests.el index 7846322f380..a34dc92dc57 100644 --- a/test/lisp/emacs-lisp/memory-report-tests.el +++ b/test/lisp/emacs-lisp/memory-report-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; memory-report-tests.el --- tests for memory-report.el -*- lexical-binding: t -*- | 1 | ;;; memory-report-tests.el --- tests for memory-report.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/multisession-tests.el b/test/lisp/emacs-lisp/multisession-tests.el index d2e39f662e9..e898015be06 100644 --- a/test/lisp/emacs-lisp/multisession-tests.el +++ b/test/lisp/emacs-lisp/multisession-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; multisession-tests.el --- Tests for multisession.el -*- lexical-binding: t; -*- | 1 | ;;; multisession-tests.el --- Tests for multisession.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/nadvice-tests.el b/test/lisp/emacs-lisp/nadvice-tests.el index f9bb3d1c675..addea35f334 100644 --- a/test/lisp/emacs-lisp/nadvice-tests.el +++ b/test/lisp/emacs-lisp/nadvice-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; nadvice-tests.el --- Test suite for the new advice thingy. -*- lexical-binding:t -*- | 1 | ;;; nadvice-tests.el --- Test suite for the new advice thingy. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2012-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2012-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/oclosure-tests.el b/test/lisp/emacs-lisp/oclosure-tests.el index beebe68b3f4..aba9be958bc 100644 --- a/test/lisp/emacs-lisp/oclosure-tests.el +++ b/test/lisp/emacs-lisp/oclosure-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; oclosure-tests.e; --- Tests for Open Closures -*- lexical-binding: t; -*- | 1 | ;;; oclosure-tests.e; --- Tests for Open Closures -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/package-resources/signed/update-signatures.sh b/test/lisp/emacs-lisp/package-resources/signed/update-signatures.sh index 2659af274e7..ec1b97a1667 100755 --- a/test/lisp/emacs-lisp/package-resources/signed/update-signatures.sh +++ b/test/lisp/emacs-lisp/package-resources/signed/update-signatures.sh | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | # Generate a new key and update the signatures for tests. | 3 | # Generate a new key and update the signatures for tests. |
| 4 | 4 | ||
| 5 | # Copyright (C) 2020-2025 Free Software Foundation, Inc. | 5 | # Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 6 | 6 | ||
| 7 | # This file is part of GNU Emacs. | 7 | # This file is part of GNU Emacs. |
| 8 | 8 | ||
diff --git a/test/lisp/emacs-lisp/package-tests.el b/test/lisp/emacs-lisp/package-tests.el index 3ebb3b8b2ab..a8c34e8e45b 100644 --- a/test/lisp/emacs-lisp/package-tests.el +++ b/test/lisp/emacs-lisp/package-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; package-tests.el --- Tests for the Emacs package system -*- lexical-binding:t -*- | 1 | ;;; package-tests.el --- Tests for the Emacs package system -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Daniel Hackney <dan@haxney.org> | 5 | ;; Author: Daniel Hackney <dan@haxney.org> |
| 6 | ;; Version: 1.0 | 6 | ;; Version: 1.0 |
| @@ -241,10 +241,9 @@ Must called from within a `tar-mode' buffer." | |||
| 241 | (package-initialize) | 241 | (package-initialize) |
| 242 | (should (package-installed-p 'simple-single)) | 242 | (should (package-installed-p 'simple-single)) |
| 243 | ;; Check if we properly report an "already installed". | 243 | ;; Check if we properly report an "already installed". |
| 244 | (package-install 'simple-single) | 244 | (should (condition-case nil |
| 245 | (with-current-buffer "*Messages*" | 245 | (progn (package-install 'simple-single nil 'interactive) nil) |
| 246 | (should (string-match "^[`‘']simple-single[’'] is already installed\n?\\'" | 246 | (user-error t))) |
| 247 | (buffer-string)))) | ||
| 248 | (should (package-installed-p 'simple-single)) | 247 | (should (package-installed-p 'simple-single)) |
| 249 | (let* ((simple-pkg-dir (file-name-as-directory | 248 | (let* ((simple-pkg-dir (file-name-as-directory |
| 250 | (expand-file-name | 249 | (expand-file-name |
diff --git a/test/lisp/emacs-lisp/package-vc-tests.el b/test/lisp/emacs-lisp/package-vc-tests.el index 3a6145f39fb..5ae36e79bcc 100644 --- a/test/lisp/emacs-lisp/package-vc-tests.el +++ b/test/lisp/emacs-lisp/package-vc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; package-vc-tests.el --- Tests for package-vc -*- lexical-binding:t -*- | 1 | ;;; package-vc-tests.el --- Tests for package-vc -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Przemsyław Kryger <pkryger@gmail.com> | 5 | ;; Author: Przemsyław Kryger <pkryger@gmail.com> |
| 6 | ;; Maintainer: Philip Kaludercic <philipk@posteo.net> | 6 | ;; Maintainer: Philip Kaludercic <philipk@posteo.net> |
| @@ -46,7 +46,7 @@ | |||
| 46 | ;; Silence byte-compiler | 46 | ;; Silence byte-compiler |
| 47 | (defvar message-auto-save-directory) | 47 | (defvar message-auto-save-directory) |
| 48 | 48 | ||
| 49 | (defvar package-vc-tests-preserve-artefacts nil | 49 | (defvar package-vc-tests-preserve-artifacts nil |
| 50 | "When non-nil preserve temporary files and buffers produced by tests. | 50 | "When non-nil preserve temporary files and buffers produced by tests. |
| 51 | Each test produces a new temporary directory for each package under | 51 | Each test produces a new temporary directory for each package under |
| 52 | test. This leads to creation of [length of `package-vc-tests-packages'] | 52 | test. This leads to creation of [length of `package-vc-tests-packages'] |
| @@ -65,25 +65,28 @@ of symbols, then preserve temporary directories and buffers for each | |||
| 65 | package that matches a symbol in the list. When this variable is t then | 65 | package that matches a symbol in the list. When this variable is t then |
| 66 | preserve all temporary directories.") | 66 | preserve all temporary directories.") |
| 67 | 67 | ||
| 68 | (defvar package-vc-tests-repos (make-hash-table)) | ||
| 69 | |||
| 68 | (defvar package-vc-tests-dir) | 70 | (defvar package-vc-tests-dir) |
| 69 | (defvar package-vc-tests-packages) | 71 | (defvar package-vc-tests-packages) |
| 70 | (defvar package-vc-tests-repository) | 72 | (defvar package-vc-tests-repository) |
| 71 | 73 | ||
| 72 | (eval-and-compile | 74 | (eval-and-compile |
| 73 | (defun package-vc-tests-packages () | 75 | (defun package-vc-tests-packages (&optional full) |
| 74 | "Return a list of package definitions to test. | 76 | "Return a list of package definitions to test. |
| 75 | When variable `package-vc-tests-packages' is bound then return its | 77 | When variable `package-vc-tests-packages' is bound then return its |
| 76 | value. If `package-vc-tests-dir' is bound then each entry is in a form | 78 | value. If `package-vc-tests-dir' is bound or FULL is non nil then each |
| 77 | of (PKG CHECKOUT-DIR LISP-DIR INSTALL-FUN), where PKG is a package | 79 | entry is in a form of (PKG CHECKOUT-DIR LISP-DIR INSTALL-FUN), where PKG |
| 78 | name (a symbol), CHECKOUT-DIR is an expected checkout directory, | 80 | is a package name (a symbol), CHECKOUT-DIR either is nil when |
| 79 | LISP-DIR is a directory with package's sources (relative to | 81 | `package-vc-tests-dir' is not bound or is an expected checkout |
| 82 | directory, LISP-DIR is a directory with package's sources (relative to | ||
| 80 | CHECKOUT-DIR), and INSTALL-FUN is a function that checkouts and install | 83 | CHECKOUT-DIR), and INSTALL-FUN is a function that checkouts and install |
| 81 | the package. Otherwise each entry is in a form of PKG." | 84 | the package. Otherwise each entry is in a form of PKG." |
| 82 | (if (boundp 'package-vc-tests-packages) | 85 | (if (boundp 'package-vc-tests-packages) |
| 83 | package-vc-tests-packages | 86 | package-vc-tests-packages |
| 84 | (cl-macrolet ((test-package-def | 87 | (cl-macrolet ((test-package-def |
| 85 | (pkg checkout-dir-exp lisp-dir install-fun) | 88 | (pkg checkout-dir-exp lisp-dir install-fun) |
| 86 | `(if (boundp 'package-vc-tests-dir) | 89 | `(if (or (boundp 'package-vc-tests-dir) full) |
| 87 | (list | 90 | (list |
| 88 | ',pkg | 91 | ',pkg |
| 89 | (expand-file-name (symbol-name ',pkg) | 92 | (expand-file-name (symbol-name ',pkg) |
| @@ -91,56 +94,59 @@ the package. Otherwise each entry is in a form of PKG." | |||
| 91 | ,lisp-dir | 94 | ,lisp-dir |
| 92 | #',install-fun) | 95 | #',install-fun) |
| 93 | ',pkg))) | 96 | ',pkg))) |
| 94 | (list | 97 | (let* ((tests-dir (bound-and-true-p package-vc-tests-dir)) |
| 95 | ;; checkout and install with `package-vc-install' (on ELPA) | 98 | (user-dir (and tests-dir package-user-dir))) |
| 96 | (test-package-def | 99 | (list |
| 97 | test-package-one package-user-dir nil | 100 | ;; checkout and install with `package-vc-install' (on ELPA) |
| 98 | package-vc-tests-install-from-elpa) | 101 | (test-package-def |
| 99 | ;; checkout and install with `package-vc-install' (not on ELPA) | 102 | test-package-one user-dir nil |
| 100 | (test-package-def | 103 | package-vc-tests-install-from-elpa) |
| 101 | test-package-two package-user-dir nil | 104 | ;; checkout and install with `package-vc-install' (not on |
| 102 | package-vc-tests-install-from-spec) | 105 | ;; ELPA) |
| 103 | ;; checkout with `package-vc-checktout' and install with | 106 | (test-package-def |
| 104 | ;; `package-vc-install-from-checkout' (on ELPA) | 107 | test-package-two user-dir nil |
| 105 | (test-package-def | 108 | package-vc-tests-install-from-spec) |
| 106 | test-package-three package-vc-tests-dir nil | 109 | ;; checkout with `package-vc-checktout' and install with |
| 107 | package-vc-tests-checkout-from-elpa-install-from-checkout) | 110 | ;; `package-vc-install-from-checkout' (on ELPA) |
| 108 | ;; checkout with git and install with | 111 | (test-package-def |
| 109 | ;; `package-vc-install-from-checkout' | 112 | test-package-three tests-dir nil |
| 110 | (test-package-def | 113 | package-vc-tests-checkout-from-elpa-install-from-checkout) |
| 111 | test-package-four package-vc-tests-dir nil | 114 | ;; checkout with git and install with |
| 112 | package-vc-tests-checkout-with-git-install-from-checkout) | 115 | ;; `package-vc-install-from-checkout' |
| 113 | ;; sources in "lisp" sub directory, checkout and install with | 116 | (test-package-def |
| 114 | ;; `package-vc-install' (not on ELPA) | 117 | test-package-four tests-dir nil |
| 115 | (test-package-def | 118 | package-vc-tests-checkout-with-git-install-from-checkout) |
| 116 | test-package-five package-user-dir "lisp" | 119 | ;; sources in "lisp" sub directory, checkout and install with |
| 117 | package-vc-tests-install-from-spec) | 120 | ;; `package-vc-install' (not on ELPA) |
| 118 | ;; sources in "lisp" sub directory, checkout with git and | 121 | (test-package-def |
| 119 | ;; install with `package-vc-install-from-checkout' | 122 | test-package-five user-dir "lisp" |
| 120 | (test-package-def | 123 | package-vc-tests-install-from-spec) |
| 121 | test-package-six package-vc-tests-dir "lisp" | 124 | ;; sources in "lisp" sub directory, checkout with git and |
| 122 | package-vc-tests-checkout-with-git-install-from-checkout) | 125 | ;; install with `package-vc-install-from-checkout' |
| 123 | ;; sources in "src" sub directory, checkout and install with | 126 | (test-package-def |
| 124 | ;; `package-vc-install' (on ELPA) | 127 | test-package-six tests-dir "lisp" |
| 125 | (test-package-def | 128 | package-vc-tests-checkout-with-git-install-from-checkout) |
| 126 | test-package-seven package-user-dir "src" | 129 | ;; sources in "src" sub directory, checkout and install with |
| 127 | package-vc-tests-install-from-elpa) | 130 | ;; `package-vc-install' (on ELPA) |
| 128 | ;; sources in "src" sub directory, checkout with | 131 | (test-package-def |
| 129 | ;; `package-vc-checktout' and install with | 132 | test-package-seven user-dir "src" |
| 130 | ;; `package-vc-install-from-checkout' (on ELPA) | 133 | package-vc-tests-install-from-elpa) |
| 131 | (test-package-def | 134 | ;; sources in "src" sub directory, checkout with |
| 132 | test-package-eight package-vc-tests-dir nil | 135 | ;; `package-vc-checktout' and install with |
| 133 | package-vc-tests-checkout-from-elpa-install-from-checkout) | 136 | ;; `package-vc-install-from-checkout' (on ELPA) |
| 134 | ;; sources in "custom-dir" sub directory, checkout and install | 137 | (test-package-def |
| 135 | ;; with `package-vc-install' (on ELPA) | 138 | test-package-eight tests-dir nil |
| 136 | (test-package-def | 139 | package-vc-tests-checkout-from-elpa-install-from-checkout) |
| 137 | test-package-nine package-user-dir "custom-dir" | 140 | ;; sources in "custom-dir" sub directory, checkout and |
| 138 | package-vc-tests-install-from-elpa)))))) | 141 | ;; install with `package-vc-install' (on ELPA) |
| 142 | (test-package-def | ||
| 143 | test-package-nine user-dir "custom-dir" | ||
| 144 | package-vc-tests-install-from-elpa))))))) | ||
| 139 | 145 | ||
| 140 | ;; TODO: add test for deleting packages, with asserting | 146 | ;; TODO: add test for deleting packages, with asserting |
| 141 | ;; `package-vc-selected-packages' | 147 | ;; `package-vc-selected-packages' |
| 142 | 148 | ||
| 143 | ;; TODO: clarify `package-vc-install-all' behaviour with regards to | 149 | ;; TODO: clarify `package-vc-install-all' behavior with regards to |
| 144 | ;; packages installed with `package-vc' but not stored in | 150 | ;; packages installed with `package-vc' but not stored in |
| 145 | ;; `package-vc-selected-packages' i.e., packages from ELPAs | 151 | ;; `package-vc-selected-packages' i.e., packages from ELPAs |
| 146 | 152 | ||
| @@ -165,12 +171,11 @@ When LISP-DIR is non-nil place the NAME file under LISP-DIR." | |||
| 165 | (error "Failed to invoke sed on %s" in-file)) | 171 | (error "Failed to invoke sed on %s" in-file)) |
| 166 | (vc-git-command nil 0 nil "add" "."))) | 172 | (vc-git-command nil 0 nil "add" "."))) |
| 167 | 173 | ||
| 168 | (defun package-vc-tests-create-repository (suffix &optional lisp-dir) | 174 | (defun package-vc-tests-create-repository (suffix repos-dir &optional lisp-dir) |
| 169 | "Create a test package repository with SUFFIX. | 175 | "Create a test package repository with SUFFIX in REPOS-DIR. |
| 170 | If LISP-DIR is non-nil place sources of the package in LISP-DIR." | 176 | If LISP-DIR is non-nil place sources of the package in LISP-DIR." |
| 171 | (let* ((name (format "test-package-%s" suffix)) | 177 | (let* ((name (format "test-package-%s" suffix)) |
| 172 | (repo-dir (expand-file-name (file-name-concat "repo" name) | 178 | (repo-dir (expand-file-name name repos-dir))) |
| 173 | package-vc-tests-dir))) | ||
| 174 | (make-directory (expand-file-name (or lisp-dir ".") repo-dir) t) | 179 | (make-directory (expand-file-name (or lisp-dir ".") repo-dir) t) |
| 175 | (let ((default-directory repo-dir) | 180 | (let ((default-directory repo-dir) |
| 176 | (process-environment | 181 | (process-environment |
| @@ -179,7 +184,8 @@ If LISP-DIR is non-nil place sources of the package in LISP-DIR." | |||
| 179 | (format "GIT_AUTHOR_NAME=%s" name) | 184 | (format "GIT_AUTHOR_NAME=%s" name) |
| 180 | (format "GIT_COMMITTER_NAME=%s" name)) | 185 | (format "GIT_COMMITTER_NAME=%s" name)) |
| 181 | process-environment))) | 186 | process-environment))) |
| 182 | (vc-git-command nil 0 nil "init" "-b" "master") | 187 | (vc-git-command nil 0 nil "init") |
| 188 | (vc-git-command nil 0 nil "checkout" "-b" "master") | ||
| 183 | (package-vc-tests-add | 189 | (package-vc-tests-add |
| 184 | suffix "test-package-SUFFIX-lib-v0.1.el.in" lisp-dir) | 190 | suffix "test-package-SUFFIX-lib-v0.1.el.in" lisp-dir) |
| 185 | (package-vc-tests-add | 191 | (package-vc-tests-add |
| @@ -395,6 +401,11 @@ names." | |||
| 395 | (not (member lisp-dir '("lisp" "src"))) | 401 | (not (member lisp-dir '("lisp" "src"))) |
| 396 | (list :lisp-dir lisp-dir))))) | 402 | (list :lisp-dir lisp-dir))))) |
| 397 | 403 | ||
| 404 | (defun package-vc-tests-make-temp-dir (prefix) | ||
| 405 | "Create temp directory with PREFIX." | ||
| 406 | (expand-file-name | ||
| 407 | (make-temp-file prefix t (format-time-string "-%Y%m%d.%H%M%S.%3N")))) | ||
| 408 | |||
| 398 | (defun package-vc-with-tests-environment (pkg function) | 409 | (defun package-vc-with-tests-environment (pkg function) |
| 399 | "Call FUNCTION with no arguments within a test environment set up for PKG." | 410 | "Call FUNCTION with no arguments within a test environment set up for PKG." |
| 400 | ;; Create a test package sources repository, based on skeleton files | 411 | ;; Create a test package sources repository, based on skeleton files |
| @@ -402,17 +413,14 @@ names." | |||
| 402 | ;; that: | 413 | ;; that: |
| 403 | ;; | 414 | ;; |
| 404 | (let* ((package-vc-tests-dir | 415 | (let* ((package-vc-tests-dir |
| 405 | (expand-file-name | 416 | (package-vc-tests-make-temp-dir "package-vc-tests-")) |
| 406 | (make-temp-file "package-vc-tests-" | ||
| 407 | t | ||
| 408 | (format-time-string "-%Y%m%d.%H%M%S.%3N")))) | ||
| 409 | ;; - packages are installed into test directory | 417 | ;; - packages are installed into test directory |
| 410 | (package-user-dir (expand-file-name "elpa" | 418 | (package-user-dir (expand-file-name "elpa" |
| 411 | package-vc-tests-dir)) | 419 | package-vc-tests-dir)) |
| 412 | ;; - keyring is saved in test directory | 420 | ;; - keyring is saved in test directory |
| 413 | (package-gnupghome-dir (expand-file-name "gnupg" | 421 | (package-gnupghome-dir (expand-file-name "gnupg" |
| 414 | package-user-dir)) | 422 | package-user-dir)) |
| 415 | ;; - `package' has been initialised, and there are no | 423 | ;; - `package' has been initialized, and there are no |
| 416 | ;; `package-archives' defined | 424 | ;; `package-archives' defined |
| 417 | (package-archives (unless package--initialized | 425 | (package-archives (unless package--initialized |
| 418 | (let (package-archives) | 426 | (let (package-archives) |
| @@ -424,13 +432,25 @@ names." | |||
| 424 | (package-vc-tests-packages (package-vc-tests-packages)) | 432 | (package-vc-tests-packages (package-vc-tests-packages)) |
| 425 | ;; - create a test package bundle | 433 | ;; - create a test package bundle |
| 426 | (package-vc-tests-repository | 434 | (package-vc-tests-repository |
| 427 | (let* ((pkg-name (symbol-name pkg)) | 435 | (or |
| 428 | (suffix (and (string-match | 436 | (gethash pkg package-vc-tests-repos) |
| 429 | (rx ?- (group (1+ (not ?-))) eos) | 437 | (let* ((pkg-name (symbol-name pkg)) |
| 430 | pkg-name) | 438 | (suffix (and (string-match |
| 431 | (match-string 1 pkg-name)))) | 439 | (rx ?- (group (1+ (not ?-))) eos) |
| 432 | (package-vc-tests-create-repository | 440 | pkg-name) |
| 433 | suffix (cadr (alist-get pkg package-vc-tests-packages))))) | 441 | (match-string 1 pkg-name))) |
| 442 | (repos-dir | ||
| 443 | (or (gethash 'repos-dir package-vc-tests-repos) | ||
| 444 | (puthash 'repos-dir | ||
| 445 | (package-vc-tests-make-temp-dir | ||
| 446 | "package-vc-tests-repos-") | ||
| 447 | package-vc-tests-repos)))) | ||
| 448 | (puthash pkg | ||
| 449 | (package-vc-tests-create-repository | ||
| 450 | suffix | ||
| 451 | repos-dir | ||
| 452 | (cadr (alist-get pkg package-vc-tests-packages))) | ||
| 453 | package-vc-tests-repos)))) | ||
| 434 | ;; - find all packages that are present in a test ELPA | 454 | ;; - find all packages that are present in a test ELPA |
| 435 | (package-vc-tests-elpa-packages | 455 | (package-vc-tests-elpa-packages |
| 436 | (cl-loop | 456 | (cl-loop |
| @@ -440,7 +460,7 @@ names." | |||
| 440 | '(package-vc-tests-install-from-elpa | 460 | '(package-vc-tests-install-from-elpa |
| 441 | package-vc-tests-checkout-from-elpa-install-from-checkout)) | 461 | package-vc-tests-checkout-from-elpa-install-from-checkout)) |
| 442 | collect name)) | 462 | collect name)) |
| 443 | ;; - make test packages recognisable by `package' and | 463 | ;; - make test packages recognizable by `package' and |
| 444 | ;; `package-vc' internals: | 464 | ;; `package-vc' internals: |
| 445 | (package-archive-contents | 465 | (package-archive-contents |
| 446 | (mapcar | 466 | (mapcar |
| @@ -472,7 +492,7 @@ names." | |||
| 472 | package-vc-tests-elpa-packages)))) | 492 | package-vc-tests-elpa-packages)))) |
| 473 | (package-vc--archive-data-alist | 493 | (package-vc--archive-data-alist |
| 474 | '((test-elpa :version 1 :default-vc Git))) | 494 | '((test-elpa :version 1 :default-vc Git))) |
| 475 | ;; - `vc-guess-backend-url' is recognising bundles as `Git' | 495 | ;; - `vc-guess-backend-url' is recognizing bundles as `Git' |
| 476 | ;; repositories: | 496 | ;; repositories: |
| 477 | (vc-clone-heuristic-alist | 497 | (vc-clone-heuristic-alist |
| 478 | `((,(rx "test-package-" (1+ digit) ".bundle" eos) | 498 | `((,(rx "test-package-" (1+ digit) ".bundle" eos) |
| @@ -491,12 +511,18 @@ names." | |||
| 491 | (package-vc-allow-build-commands t)) | 511 | (package-vc-allow-build-commands t)) |
| 492 | (funcall function))) | 512 | (funcall function))) |
| 493 | 513 | ||
| 514 | (defun package-vc-tests-preserve-pkg-artifacts-p (pkg) | ||
| 515 | "Return non nil if files and buffers for PKG should be preserved." | ||
| 516 | (or (memq package-vc-tests-preserve-artifacts `(t ,pkg)) | ||
| 517 | (and (listp package-vc-tests-preserve-artifacts) | ||
| 518 | (memq pkg package-vc-tests-preserve-artifacts)))) | ||
| 519 | |||
| 494 | (defun package-vc-tests-environment-tear-down (pkg) | 520 | (defun package-vc-tests-environment-tear-down (pkg) |
| 495 | "Tear down test environment for PKG. | 521 | "Tear down test environment for PKG. |
| 496 | Unbind package defined symbols, and remove package defined features and | 522 | Unbind package defined symbols, and remove package defined features and |
| 497 | entries from `load-path',`load-history', and `Info-directory-list'. | 523 | entries from `load-path',`load-history', and `Info-directory-list'. |
| 498 | Delete temporary directories and buffers produced by tests, except for | 524 | Delete temporary directories and buffers produced by tests, except for |
| 499 | when PKG matches `package-vc-tests-preserve-artefacts'." | 525 | when PKG matches `package-vc-tests-preserve-artifacts'." |
| 500 | (let ((pattern (rx string-start (literal package-vc-tests-dir)))) | 526 | (let ((pattern (rx string-start (literal package-vc-tests-dir)))) |
| 501 | (dolist (entry load-history) | 527 | (dolist (entry load-history) |
| 502 | (when-let* ((file (car-safe entry)) | 528 | (when-let* ((file (car-safe entry)) |
| @@ -534,27 +560,74 @@ when PKG matches `package-vc-tests-preserve-artefacts'." | |||
| 534 | (package-vc-tests-log-buffer-name pkg | 560 | (package-vc-tests-log-buffer-name pkg |
| 535 | type))) | 561 | type))) |
| 536 | '(doc make))))) | 562 | '(doc make))))) |
| 537 | (if (or (memq package-vc-tests-preserve-artefacts `(t ,pkg)) | 563 | (if (package-vc-tests-preserve-pkg-artifacts-p pkg) |
| 538 | (and (listp package-vc-tests-preserve-artefacts) | ||
| 539 | (memq pkg package-vc-tests-preserve-artefacts))) | ||
| 540 | (let ((buffers | 564 | (let ((buffers |
| 541 | (mapconcat (lambda (buffer) | 565 | (if buffers |
| 542 | (with-current-buffer buffer | 566 | (format " and %s: %s" |
| 543 | (let* ((old-name (buffer-name)) | 567 | (if (cdr buffers) "buffers" "buffer") |
| 544 | (new-name (make-temp-name | 568 | (mapconcat |
| 545 | (string-trim old-name)))) | 569 | (lambda (buffer) |
| 546 | (rename-buffer new-name) | 570 | (with-current-buffer buffer |
| 547 | (concat old-name " -> " new-name)))) | 571 | (let* ((old-name (buffer-name)) |
| 548 | buffers | 572 | (new-name (make-temp-name |
| 549 | ", "))) | 573 | (string-trim old-name)))) |
| 574 | (rename-buffer new-name) | ||
| 575 | (format "`%s' -> `%s'" | ||
| 576 | old-name new-name)))) | ||
| 577 | buffers | ||
| 578 | ", ")) | ||
| 579 | "")) | ||
| 580 | (repo-dir (car (gethash pkg package-vc-tests-repos)))) | ||
| 550 | (message | 581 | (message |
| 551 | "package-vc-tests: preserving temporary directory: %s%s" | 582 | "package-vc-tests: preserving temporary %s: %s%s%s" |
| 583 | (if repo-dir "directories" "directory") | ||
| 552 | package-vc-tests-dir | 584 | package-vc-tests-dir |
| 553 | (and buffers (format " and buffers: %s" buffers)))) | 585 | (if repo-dir (format " and %s" repo-dir) "") |
| 586 | buffers)) | ||
| 554 | (delete-directory package-vc-tests-dir t) | 587 | (delete-directory package-vc-tests-dir t) |
| 555 | (dolist (buffer buffers) | 588 | (dolist (buffer buffers) |
| 556 | (kill-buffer buffer))))) | 589 | (kill-buffer buffer))))) |
| 557 | 590 | ||
| 591 | ;; Tests create a repository for a package only once per a tests run. | ||
| 592 | ;; The repository location is cached in `package-vc-tests-repos'. To | ||
| 593 | ;; support development, clear the cache on start of each tests run, such | ||
| 594 | ;; that the package repository contains files from the source code. | ||
| 595 | ;; When tests run completes delete repositories accounting for | ||
| 596 | ;; `package-vc-tests-preserve-artifacts', which see. | ||
| 597 | |||
| 598 | (defun package-vc-tests-add-ert-run-tests-listener (args) | ||
| 599 | "Add `package-vc-tests' repositories cleanup to listener in ARGS." | ||
| 600 | (if-let* ((listener (cadr args)) | ||
| 601 | ((functionp listener))) | ||
| 602 | (cl-list* | ||
| 603 | (car args) | ||
| 604 | (lambda (event-type &rest event-args) | ||
| 605 | (cl-case event-type | ||
| 606 | (run-started | ||
| 607 | (clrhash package-vc-tests-repos)) | ||
| 608 | (run-ended | ||
| 609 | (when-let* ((repos-dir (gethash 'repos-dir | ||
| 610 | package-vc-tests-repos)) | ||
| 611 | ((file-directory-p repos-dir))) | ||
| 612 | (if package-vc-tests-preserve-artifacts | ||
| 613 | (progn | ||
| 614 | (dolist (pkg (package-vc-tests-packages)) | ||
| 615 | (unless | ||
| 616 | (package-vc-tests-preserve-pkg-artifacts-p pkg) | ||
| 617 | (when-let* ((repo-dir | ||
| 618 | (car (gethash pkg package-vc-tests-repos))) | ||
| 619 | ((file-directory-p repo-dir))) | ||
| 620 | (delete-directory repo-dir t)))) | ||
| 621 | (when (directory-empty-p repos-dir) | ||
| 622 | (delete-directory repos-dir))) | ||
| 623 | (delete-directory repos-dir t))))) | ||
| 624 | (apply listener (cons event-type event-args))) | ||
| 625 | (drop 2 args)) | ||
| 626 | args)) | ||
| 627 | |||
| 628 | (advice-add #'ert-run-tests | ||
| 629 | :filter-args #'package-vc-tests-add-ert-run-tests-listener) | ||
| 630 | |||
| 558 | (defun package-vc-tests-with-installed (pkg function) | 631 | (defun package-vc-tests-with-installed (pkg function) |
| 559 | "Call FUNCTION with PKG installed in a test environment. | 632 | "Call FUNCTION with PKG installed in a test environment. |
| 560 | FUNCTION should have no arguments." | 633 | FUNCTION should have no arguments." |
| @@ -678,27 +751,33 @@ contains key `:tags' use its value as tests tags." | |||
| 678 | (error "`package-vc' tests first argument has to be a symbol")) | 751 | (error "`package-vc' tests first argument has to be a symbol")) |
| 679 | (let ((file (or (macroexp-file-name) buffer-file-name)) | 752 | (let ((file (or (macroexp-file-name) buffer-file-name)) |
| 680 | (tests '()) (fn (gensym)) | 753 | (tests '()) (fn (gensym)) |
| 754 | (pkg-arg (car args)) | ||
| 755 | (skip-forms (take-while (lambda (form) | ||
| 756 | (memq (car-safe form) '(skip-when | ||
| 757 | skip-unless))) | ||
| 758 | body)) | ||
| 681 | (tags (plist-get (cdr-safe args) :tags))) | 759 | (tags (plist-get (cdr-safe args) :tags))) |
| 760 | (setq body (nthcdr (length skip-forms) body)) | ||
| 682 | (dolist (pkg (package-vc-tests-packages)) | 761 | (dolist (pkg (package-vc-tests-packages)) |
| 683 | (let ((name (intern (format "package-vc-tests-%s/%s" name pkg)))) | 762 | (let ((name (intern (format "package-vc-tests-%s/%s" name pkg)))) |
| 684 | (push | 763 | (push |
| 685 | `(ert-set-test | 764 | `(ert-set-test ',name |
| 686 | ',name | 765 | (make-ert-test |
| 687 | (make-ert-test | 766 | :name ',name |
| 688 | :name ',name | 767 | :tags (cons 'package-vc ',tags) |
| 689 | :tags (cons 'package-vc ',tags) | 768 | :file-name ,file |
| 690 | :file-name ,file | 769 | :body |
| 691 | :body | 770 | (lambda () |
| 692 | (lambda () | 771 | (funcall ,fn ',pkg) |
| 693 | (package-vc-tests-with-installed | 772 | nil))) |
| 694 | ',pkg (funcall ,fn ',pkg)) | ||
| 695 | nil))) | ||
| 696 | tests))) | 773 | tests))) |
| 697 | `(let ((,fn (lambda (,(car args)) | 774 | `(cl-macrolet ((skip-when (form) `(ert--skip-when ,form)) |
| 698 | (cl-macrolet ((skip-when (form) `(ert--skip-when ,form)) | 775 | (skip-unless (form) `(ert--skip-unless ,form))) |
| 699 | (skip-unless (form) `(ert--skip-unless ,form))) | 776 | (let ((,fn (lambda (,pkg-arg) |
| 700 | (lambda () ,@body))))) | 777 | ,@skip-forms |
| 701 | ,@tests))) | 778 | (package-vc-tests-with-installed ,pkg-arg |
| 779 | (lambda () ,@body))))) | ||
| 780 | ,@tests)))) | ||
| 702 | 781 | ||
| 703 | (package-vc-test-deftest install-post-conditions (pkg) | 782 | (package-vc-test-deftest install-post-conditions (pkg) |
| 704 | (let ((install-begin | 783 | (let ((install-begin |
| @@ -984,7 +1063,7 @@ contains key `:tags' use its value as tests tags." | |||
| 984 | (should | 1063 | (should |
| 985 | (package-vc-tests-package-vc-async-wait | 1064 | (package-vc-tests-package-vc-async-wait |
| 986 | 5 1 '("log" "--decorate") | 1065 | 5 1 '("log" "--decorate") |
| 987 | (package-vc-log-incoming (package-vc-tests-package-desc pkg t)) | 1066 | (package-vc-root-log-incoming (package-vc-tests-package-desc pkg t)) |
| 988 | t)) | 1067 | t)) |
| 989 | (let ((incoming-buffer (get-buffer "*vc-incoming*")) | 1068 | (let ((incoming-buffer (get-buffer "*vc-incoming*")) |
| 990 | (pattern (rx (literal | 1069 | (pattern (rx (literal |
| @@ -1006,7 +1085,7 @@ contains key `:tags' use its value as tests tags." | |||
| 1006 | 1085 | ||
| 1007 | (package-vc-test-deftest pkg-spec-make-shell-command (pkg) | 1086 | (package-vc-test-deftest pkg-spec-make-shell-command (pkg) |
| 1008 | ;; Only `package-vc-install' runs make and shell command | 1087 | ;; Only `package-vc-install' runs make and shell command |
| 1009 | (skip-unless (memq (caddr (alist-get pkg package-vc-tests-packages)) | 1088 | (skip-unless (memq (caddr (alist-get pkg (package-vc-tests-packages t))) |
| 1010 | '(package-vc-tests-install-from-elpa | 1089 | '(package-vc-tests-install-from-elpa |
| 1011 | package-vc-tests-install-from-spec))) | 1090 | package-vc-tests-install-from-spec))) |
| 1012 | (let* ((desc (package-vc-tests-package-desc pkg t)) | 1091 | (let* ((desc (package-vc-tests-package-desc pkg t)) |
| @@ -1024,7 +1103,7 @@ contains key `:tags' use its value as tests tags." | |||
| 1024 | ;; Only `package-vc-install' builds info manuals, but only when | 1103 | ;; Only `package-vc-install' builds info manuals, but only when |
| 1025 | ;; executable install-info is available. | 1104 | ;; executable install-info is available. |
| 1026 | (skip-unless (and (executable-find "install-info") | 1105 | (skip-unless (and (executable-find "install-info") |
| 1027 | (memq (caddr (alist-get pkg package-vc-tests-packages)) | 1106 | (memq (caddr (alist-get pkg (package-vc-tests-packages t))) |
| 1028 | '(package-vc-tests-install-from-elpa | 1107 | '(package-vc-tests-install-from-elpa |
| 1029 | package-vc-tests-install-from-spec)))) | 1108 | package-vc-tests-install-from-spec)))) |
| 1030 | (should-not (package-vc-tests-log-buffer-exists 'doc pkg)) | 1109 | (should-not (package-vc-tests-log-buffer-exists 'doc pkg)) |
diff --git a/test/lisp/emacs-lisp/pcase-tests.el b/test/lisp/emacs-lisp/pcase-tests.el index cdc16cfdeaa..9b8a643c731 100644 --- a/test/lisp/emacs-lisp/pcase-tests.el +++ b/test/lisp/emacs-lisp/pcase-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; pcase-tests.el --- Test suite for pcase macro. -*- lexical-binding:t -*- | 1 | ;;; pcase-tests.el --- Test suite for pcase macro. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2012-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2012-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -80,6 +80,7 @@ | |||
| 80 | (ert-deftest pcase-tests-quote-optimization () | 80 | (ert-deftest pcase-tests-quote-optimization () |
| 81 | ;; FIXME: We could/should also test that we get a corresponding | 81 | ;; FIXME: We could/should also test that we get a corresponding |
| 82 | ;; "shadowed branch" warning. | 82 | ;; "shadowed branch" warning. |
| 83 | (require 'byte-opt) ;; FIXME: Needed for pcase to see that `consp' is `pure'. | ||
| 83 | (should-not (pcase-tests-grep | 84 | (should-not (pcase-tests-grep |
| 84 | 'FOO (macroexpand '(pcase EXP | 85 | 'FOO (macroexpand '(pcase EXP |
| 85 | (`(,_ . ,_) (BAR)) | 86 | (`(,_ . ,_) (BAR)) |
| @@ -191,4 +192,22 @@ | |||
| 191 | (should (pcase--mutually-exclusive-p (nth 1 x) (nth 0 x))) | 192 | (should (pcase--mutually-exclusive-p (nth 1 x) (nth 0 x))) |
| 192 | (should-not (pcase--mutually-exclusive-p (nth 1 x) (nth 0 x)))))) | 193 | (should-not (pcase--mutually-exclusive-p (nth 1 x) (nth 0 x)))))) |
| 193 | 194 | ||
| 195 | (ert-deftest pcase-pred-equiv () | ||
| 196 | (cl-flet ((f1 (x) (pcase x ((pred atom) 1) (_ 2)))) | ||
| 197 | (should (equal (f1 'a) 1)) | ||
| 198 | (should (equal (f1 nil) 1)) | ||
| 199 | (should (equal (f1 '(a)) 2))) | ||
| 200 | (cl-flet ((f2 (x) (pcase x ((pred nlistp) 1) (_ 2)))) | ||
| 201 | (should (equal (f2 'a) 1)) | ||
| 202 | (should (equal (f2 nil) 2)) | ||
| 203 | (should (equal (f2 '(a)) 2))) | ||
| 204 | (cl-flet ((f3 (x) (pcase x ((pred identity) 1) (_ 2)))) | ||
| 205 | (should (equal (f3 'a) 1)) | ||
| 206 | (should (equal (f3 nil) 2)) | ||
| 207 | (should (equal (f3 '(a)) 1))) | ||
| 208 | (cl-flet ((f4 (x) (pcase x ((pred not) 1) (_ 2)))) | ||
| 209 | (should (equal (f4 'a) 2)) | ||
| 210 | (should (equal (f4 nil) 1)) | ||
| 211 | (should (equal (f4 '(a)) 2)))) | ||
| 212 | |||
| 194 | ;;; pcase-tests.el ends here. | 213 | ;;; pcase-tests.el ends here. |
diff --git a/test/lisp/emacs-lisp/pp-tests.el b/test/lisp/emacs-lisp/pp-tests.el index d964ed38986..ed4c9fcf978 100644 --- a/test/lisp/emacs-lisp/pp-tests.el +++ b/test/lisp/emacs-lisp/pp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; pp-tests.el --- Test suite for pretty printer. -*- lexical-binding: t -*- | 1 | ;;; pp-tests.el --- Test suite for pretty printer. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/range-tests.el b/test/lisp/emacs-lisp/range-tests.el index aee1134ef83..86746283511 100644 --- a/test/lisp/emacs-lisp/range-tests.el +++ b/test/lisp/emacs-lisp/range-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; range-tests.el --- Tests for range.el -*- lexical-binding: t; -*- | 1 | ;;; range-tests.el --- Tests for range.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/regexp-opt-tests.el b/test/lisp/emacs-lisp/regexp-opt-tests.el index e302f8ea23c..e70496ce8a3 100644 --- a/test/lisp/emacs-lisp/regexp-opt-tests.el +++ b/test/lisp/emacs-lisp/regexp-opt-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; regexp-opt-tests.el --- Tests for regexp-opt.el -*- lexical-binding: t -*- | 1 | ;;; regexp-opt-tests.el --- Tests for regexp-opt.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/lisp/emacs-lisp/ring-tests.el b/test/lisp/emacs-lisp/ring-tests.el index baedc44f2f5..7e14044e92e 100644 --- a/test/lisp/emacs-lisp/ring-tests.el +++ b/test/lisp/emacs-lisp/ring-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ring-tests.el --- Tests for ring.el -*- lexical-binding: t; -*- | 1 | ;;; ring-tests.el --- Tests for ring.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/emacs-lisp/rmc-tests.el b/test/lisp/emacs-lisp/rmc-tests.el index 02d8be5b812..b43f92c127c 100644 --- a/test/lisp/emacs-lisp/rmc-tests.el +++ b/test/lisp/emacs-lisp/rmc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; rmc-tests.el --- Test suite for rmc.el -*- lexical-binding: t -*- | 1 | ;;; rmc-tests.el --- Test suite for rmc.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> | 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/emacs-lisp/rx-tests.el b/test/lisp/emacs-lisp/rx-tests.el index c60a73b2b58..2ebdda2b96c 100644 --- a/test/lisp/emacs-lisp/rx-tests.el +++ b/test/lisp/emacs-lisp/rx-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; rx-tests.el --- tests for rx.el -*- lexical-binding: t -*- | 1 | ;;; rx-tests.el --- tests for rx.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/seq-tests.el b/test/lisp/emacs-lisp/seq-tests.el index e84e50dda4c..55074b26412 100644 --- a/test/lisp/emacs-lisp/seq-tests.el +++ b/test/lisp/emacs-lisp/seq-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; seq-tests.el --- Tests for seq.el -*- lexical-binding:t -*- | 1 | ;;; seq-tests.el --- Tests for seq.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Nicolas Petton <nicolas@petton.fr> | 5 | ;; Author: Nicolas Petton <nicolas@petton.fr> |
| 6 | ;; Maintainer: emacs-devel@gnu.org | 6 | ;; Maintainer: emacs-devel@gnu.org |
diff --git a/test/lisp/emacs-lisp/shadow-tests.el b/test/lisp/emacs-lisp/shadow-tests.el index 7937abb1b5f..a97ff3bc25b 100644 --- a/test/lisp/emacs-lisp/shadow-tests.el +++ b/test/lisp/emacs-lisp/shadow-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; shadow-tests.el --- Test suite for shadow. -*- lexical-binding: t -*- | 1 | ;;; shadow-tests.el --- Test suite for shadow. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/shortdoc-tests.el b/test/lisp/emacs-lisp/shortdoc-tests.el index 1cbec24a556..4df46879f25 100644 --- a/test/lisp/emacs-lisp/shortdoc-tests.el +++ b/test/lisp/emacs-lisp/shortdoc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; shortdoc-tests.el --- tests for shortdoc.el -*- lexical-binding: t -*- | 1 | ;;; shortdoc-tests.el --- tests for shortdoc.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/subr-x-tests.el b/test/lisp/emacs-lisp/subr-x-tests.el index e0eecc3e934..cad4dcbb7aa 100644 --- a/test/lisp/emacs-lisp/subr-x-tests.el +++ b/test/lisp/emacs-lisp/subr-x-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; subr-x-tests.el --- Testing the extended lisp routines -*- lexical-binding:t -*- | 1 | ;;; subr-x-tests.el --- Testing the extended lisp routines -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Fabián E. Gallina <fgallina@gnu.org> | 5 | ;; Author: Fabián E. Gallina <fgallina@gnu.org> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
| @@ -537,31 +537,6 @@ | |||
| 537 | 537 | ||
| 538 | ;; Substring tests | 538 | ;; Substring tests |
| 539 | 539 | ||
| 540 | (ert-deftest subr-x-test-string-trim-left () | ||
| 541 | "Test `string-trim-left' behavior." | ||
| 542 | (should (equal (string-trim-left "") "")) | ||
| 543 | (should (equal (string-trim-left " \t\n\r") "")) | ||
| 544 | (should (equal (string-trim-left " \t\n\ra") "a")) | ||
| 545 | (should (equal (string-trim-left "a \t\n\r") "a \t\n\r")) | ||
| 546 | (should (equal (string-trim-left "" "") "")) | ||
| 547 | (should (equal (string-trim-left "a" "") "a")) | ||
| 548 | (should (equal (string-trim-left "aa" "a*") "")) | ||
| 549 | (should (equal (string-trim-left "ba" "a*") "ba")) | ||
| 550 | (should (equal (string-trim-left "aa" "a*?") "aa")) | ||
| 551 | (should (equal (string-trim-left "aa" "a+?") "a"))) | ||
| 552 | |||
| 553 | (ert-deftest subr-x-test-string-trim-right () | ||
| 554 | "Test `string-trim-right' behavior." | ||
| 555 | (should (equal (string-trim-right "") "")) | ||
| 556 | (should (equal (string-trim-right " \t\n\r") "")) | ||
| 557 | (should (equal (string-trim-right " \t\n\ra") " \t\n\ra")) | ||
| 558 | (should (equal (string-trim-right "a \t\n\r") "a")) | ||
| 559 | (should (equal (string-trim-right "" "") "")) | ||
| 560 | (should (equal (string-trim-right "a" "") "a")) | ||
| 561 | (should (equal (string-trim-right "aa" "a*") "")) | ||
| 562 | (should (equal (string-trim-right "ab" "a*") "ab")) | ||
| 563 | (should (equal (string-trim-right "aa" "a*?") ""))) | ||
| 564 | |||
| 565 | (ert-deftest subr-x-test-string-remove-prefix () | 540 | (ert-deftest subr-x-test-string-remove-prefix () |
| 566 | "Test `string-remove-prefix' behavior." | 541 | "Test `string-remove-prefix' behavior." |
| 567 | (should (equal (string-remove-prefix "" "") "")) | 542 | (should (equal (string-remove-prefix "" "") "")) |
diff --git a/test/lisp/emacs-lisp/syntax-tests.el b/test/lisp/emacs-lisp/syntax-tests.el index 2b2e3c24d5e..df53920fab0 100644 --- a/test/lisp/emacs-lisp/syntax-tests.el +++ b/test/lisp/emacs-lisp/syntax-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; syntax-tests.el --- tests for syntax.el -*- lexical-binding: t; -*- | 1 | ;;; syntax-tests.el --- tests for syntax.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/tabulated-list-tests.el b/test/lisp/emacs-lisp/tabulated-list-tests.el index 0de6dc34324..9dd132e4b05 100644 --- a/test/lisp/emacs-lisp/tabulated-list-tests.el +++ b/test/lisp/emacs-lisp/tabulated-list-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; tabulated-list-tests.el --- Tests for emacs-lisp/tabulated-list.el -*- lexical-binding: t; -*- | 1 | ;;; tabulated-list-tests.el --- Tests for emacs-lisp/tabulated-list.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> | 5 | ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/testcover-resources/testcases.el b/test/lisp/emacs-lisp/testcover-resources/testcases.el index 4f20b2910db..1828ed45e4d 100644 --- a/test/lisp/emacs-lisp/testcover-resources/testcases.el +++ b/test/lisp/emacs-lisp/testcover-resources/testcases.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;;; testcases.el -- Test cases for testcover-tests.el | 1 | ;;;; testcases.el -- Test cases for testcover-tests.el |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Gemini Lasswell | 5 | ;; Author: Gemini Lasswell |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/testcover-tests.el b/test/lisp/emacs-lisp/testcover-tests.el index 10ea6eddcdb..ee35e0eeb9e 100644 --- a/test/lisp/emacs-lisp/testcover-tests.el +++ b/test/lisp/emacs-lisp/testcover-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; testcover-tests.el --- Testcover test suite -*- lexical-binding:t -*- | 1 | ;;; testcover-tests.el --- Testcover test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Gemini Lasswell | 5 | ;; Author: Gemini Lasswell |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/text-property-search-tests.el b/test/lisp/emacs-lisp/text-property-search-tests.el index 51ee0287b8e..57d7f272b80 100644 --- a/test/lisp/emacs-lisp/text-property-search-tests.el +++ b/test/lisp/emacs-lisp/text-property-search-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; text-property-search-tests.el --- Testing text-property-search -*- lexical-binding:t -*- | 1 | ;;; text-property-search-tests.el --- Testing text-property-search -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> | 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/emacs-lisp/thunk-tests.el b/test/lisp/emacs-lisp/thunk-tests.el index 23d80ce3ac3..c853bda266e 100644 --- a/test/lisp/emacs-lisp/thunk-tests.el +++ b/test/lisp/emacs-lisp/thunk-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; thunk-tests.el --- Tests for thunk.el -*- lexical-binding: t -*- | 1 | ;;; thunk-tests.el --- Tests for thunk.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Nicolas Petton <nicolas@petton.fr> | 5 | ;; Author: Nicolas Petton <nicolas@petton.fr> |
| 6 | ;; Maintainer: emacs-devel@gnu.org | 6 | ;; Maintainer: emacs-devel@gnu.org |
diff --git a/test/lisp/emacs-lisp/timer-tests.el b/test/lisp/emacs-lisp/timer-tests.el index ac8ae7c4a21..50e17e425f4 100644 --- a/test/lisp/emacs-lisp/timer-tests.el +++ b/test/lisp/emacs-lisp/timer-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; timer-tests.el --- tests for timers -*- lexical-binding:t -*- | 1 | ;;; timer-tests.el --- tests for timers -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/track-changes-tests.el b/test/lisp/emacs-lisp/track-changes-tests.el index 4f08c539360..33e911287bd 100644 --- a/test/lisp/emacs-lisp/track-changes-tests.el +++ b/test/lisp/emacs-lisp/track-changes-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; track-changes-tests.el --- tests for emacs-lisp/track-changes.el -*- lexical-binding:t -*- | 1 | ;;; track-changes-tests.el --- tests for emacs-lisp/track-changes.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/emacs-lisp/unsafep-tests.el b/test/lisp/emacs-lisp/unsafep-tests.el index 6973c785147..216e0a501c0 100644 --- a/test/lisp/emacs-lisp/unsafep-tests.el +++ b/test/lisp/emacs-lisp/unsafep-tests.el | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | ;; Author: Jonathan Yavner <jyavner@member.fsf.org> | 3 | ;; Author: Jonathan Yavner <jyavner@member.fsf.org> |
| 4 | 4 | ||
| 5 | ;; Copyright (C) 2002-2025 Free Software Foundation, Inc. | 5 | ;; Copyright (C) 2002-2026 Free Software Foundation, Inc. |
| 6 | 6 | ||
| 7 | ;; This file is part of GNU Emacs. | 7 | ;; This file is part of GNU Emacs. |
| 8 | 8 | ||
diff --git a/test/lisp/emacs-lisp/vtable-tests.el b/test/lisp/emacs-lisp/vtable-tests.el index f865206dc19..0e9be8371a7 100644 --- a/test/lisp/emacs-lisp/vtable-tests.el +++ b/test/lisp/emacs-lisp/vtable-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; vtable-tests.el --- Tests for vtable.el -*- lexical-binding: t; -*- | 1 | ;;; vtable-tests.el --- Tests for vtable.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -135,7 +135,8 @@ | |||
| 135 | (let ((text (propertize "XXXXX" | 135 | (let ((text (propertize "XXXXX" |
| 136 | 'face 'variable-pitch))) | 136 | 'face 'variable-pitch))) |
| 137 | (face-remap-add-relative 'default :height 1.5) | 137 | (face-remap-add-relative 'default :height 1.5) |
| 138 | (cond ((< emacs-major-version 31) ; TODO: Remove the pre-31 test, eventually. | 138 | ;; TODO: Remove the pre-31 test, eventually. |
| 139 | (cond ((eval-when-compile (< emacs-major-version 31)) | ||
| 139 | (let* ((x-width (string-pixel-width (substring text 0 1))) | 140 | (let* ((x-width (string-pixel-width (substring text 0 1))) |
| 140 | (char-limit 2) | 141 | (char-limit 2) |
| 141 | (pixel-limit (* char-limit x-width))) | 142 | (pixel-limit (* char-limit x-width))) |
diff --git a/test/lisp/emacs-lisp/warnings-tests.el b/test/lisp/emacs-lisp/warnings-tests.el index e98b7c86ee9..cfb2aa3d5c7 100644 --- a/test/lisp/emacs-lisp/warnings-tests.el +++ b/test/lisp/emacs-lisp/warnings-tests.el | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 3 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 4 | 4 | ||
| 5 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 5 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 6 | 6 | ||
| 7 | ;; This file is part of GNU Emacs. | 7 | ;; This file is part of GNU Emacs. |
| 8 | 8 | ||
diff --git a/test/lisp/emulation/viper-tests.el b/test/lisp/emulation/viper-tests.el index 8c93a529fed..98d3fdd8eb5 100644 --- a/test/lisp/emulation/viper-tests.el +++ b/test/lisp/emulation/viper-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; viper-tests.el --- tests for viper. -*- lexical-binding:t -*- | 1 | ;;; viper-tests.el --- tests for viper. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/env-tests.el b/test/lisp/env-tests.el index dea9135ac37..3fe7b6e3f36 100644 --- a/test/lisp/env-tests.el +++ b/test/lisp/env-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; env-tests.el --- Tests for env.el -*- lexical-binding: t -*- | 1 | ;;; env-tests.el --- Tests for env.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/epg-config-tests.el b/test/lisp/epg-config-tests.el index d817e8c3aee..fb09e656026 100644 --- a/test/lisp/epg-config-tests.el +++ b/test/lisp/epg-config-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; epg-config-tests.el --- Test suite for epg.el -*- lexical-binding: t -*- | 1 | ;;; epg-config-tests.el --- Test suite for epg.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/epg-tests.el b/test/lisp/epg-tests.el index b02f5480a6f..d6e89f34f18 100644 --- a/test/lisp/epg-tests.el +++ b/test/lisp/epg-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; epg-tests.el --- Test suite for epg.el -*- lexical-binding: t -*- | 1 | ;;; epg-tests.el --- Test suite for epg.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-button-tests.el b/test/lisp/erc/erc-button-tests.el index 6c3431eeba2..d5e03f6c6a5 100644 --- a/test/lisp/erc/erc-button-tests.el +++ b/test/lisp/erc/erc-button-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-button-tests.el --- Tests for erc-button -*- lexical-binding:t -*- | 1 | ;;; erc-button-tests.el --- Tests for erc-button -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | ;; | 6 | ;; |
diff --git a/test/lisp/erc/erc-dcc-tests.el b/test/lisp/erc/erc-dcc-tests.el index 37ca8f6f71d..fe0ef8c5a80 100644 --- a/test/lisp/erc/erc-dcc-tests.el +++ b/test/lisp/erc/erc-dcc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-dcc-tests.el --- Tests for erc-dcc -*- lexical-binding:t -*- | 1 | ;;; erc-dcc-tests.el --- Tests for erc-dcc -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | ;; | 6 | ;; |
diff --git a/test/lisp/erc/erc-fill-tests.el b/test/lisp/erc/erc-fill-tests.el index 13a3e107d38..b06d600db66 100644 --- a/test/lisp/erc/erc-fill-tests.el +++ b/test/lisp/erc/erc-fill-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-fill-tests.el --- Tests for erc-fill -*- lexical-binding:t -*- | 1 | ;;; erc-fill-tests.el --- Tests for erc-fill -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | ;; | 6 | ;; |
diff --git a/test/lisp/erc/erc-goodies-tests.el b/test/lisp/erc/erc-goodies-tests.el index 5a0be51ae48..243cb3622be 100644 --- a/test/lisp/erc/erc-goodies-tests.el +++ b/test/lisp/erc/erc-goodies-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-goodies-tests.el --- Tests for erc-goodies -*- lexical-binding:t -*- | 1 | ;;; erc-goodies-tests.el --- Tests for erc-goodies -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | ;; | 6 | ;; |
diff --git a/test/lisp/erc/erc-join-tests.el b/test/lisp/erc/erc-join-tests.el index fe4cc907497..e598b991b82 100644 --- a/test/lisp/erc/erc-join-tests.el +++ b/test/lisp/erc/erc-join-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-join-tests.el --- Tests for erc-join. -*- lexical-binding:t -*- | 1 | ;;; erc-join-tests.el --- Tests for erc-join. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | ;; | 6 | ;; |
diff --git a/test/lisp/erc/erc-match-tests.el b/test/lisp/erc/erc-match-tests.el index e25adc5e03c..178addeb604 100644 --- a/test/lisp/erc/erc-match-tests.el +++ b/test/lisp/erc/erc-match-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-match-tests.el --- Tests for erc-match. -*- lexical-binding:t -*- | 1 | ;;; erc-match-tests.el --- Tests for erc-match. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-networks-tests.el b/test/lisp/erc/erc-networks-tests.el index e1d8ed8f8ce..11d1390fa67 100644 --- a/test/lisp/erc/erc-networks-tests.el +++ b/test/lisp/erc/erc-networks-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-networks-tests.el --- Tests for erc-networks. -*- lexical-binding:t -*- | 1 | ;;; erc-networks-tests.el --- Tests for erc-networks. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | ;; | 6 | ;; |
diff --git a/test/lisp/erc/erc-nicks-tests.el b/test/lisp/erc/erc-nicks-tests.el index 223229d1832..bfac6ca7103 100644 --- a/test/lisp/erc/erc-nicks-tests.el +++ b/test/lisp/erc/erc-nicks-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-nicks-tests.el --- Tests for erc-nicks -*- lexical-binding:t -*- | 1 | ;;; erc-nicks-tests.el --- Tests for erc-nicks -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-notify-tests.el b/test/lisp/erc/erc-notify-tests.el index 7ae7682136e..0325895c5fa 100644 --- a/test/lisp/erc/erc-notify-tests.el +++ b/test/lisp/erc/erc-notify-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-notify-tests.el --- Tests for erc-notify -*- lexical-binding:t -*- | 1 | ;;; erc-notify-tests.el --- Tests for erc-notify -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | ;; | 6 | ;; |
diff --git a/test/lisp/erc/erc-sasl-tests.el b/test/lisp/erc/erc-sasl-tests.el index ba8a5b68830..289722f8f48 100644 --- a/test/lisp/erc/erc-sasl-tests.el +++ b/test/lisp/erc/erc-sasl-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-sasl-tests.el --- Tests for erc-sasl. -*- lexical-binding:t -*- | 1 | ;;; erc-sasl-tests.el --- Tests for erc-sasl. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | ;; | 4 | ;; |
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | ;; | 6 | ;; |
diff --git a/test/lisp/erc/erc-scenarios-auth-source.el b/test/lisp/erc/erc-scenarios-auth-source.el index 08522078afd..be651ee9c45 100644 --- a/test/lisp/erc/erc-scenarios-auth-source.el +++ b/test/lisp/erc/erc-scenarios-auth-source.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-auth-source.el --- auth-source scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-auth-source.el --- auth-source scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-association-nick.el b/test/lisp/erc/erc-scenarios-base-association-nick.el index 417d9c7e4e7..51b9894c1e9 100644 --- a/test/lisp/erc/erc-scenarios-base-association-nick.el +++ b/test/lisp/erc/erc-scenarios-base-association-nick.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-association-nick.el --- base assoc scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-association-nick.el --- base assoc scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-association-query.el b/test/lisp/erc/erc-scenarios-base-association-query.el index 0cd04b2878d..2ae83a18457 100644 --- a/test/lisp/erc/erc-scenarios-base-association-query.el +++ b/test/lisp/erc/erc-scenarios-base-association-query.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-association-query.el --- assoc query scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-association-query.el --- assoc query scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-association-samenet.el b/test/lisp/erc/erc-scenarios-base-association-samenet.el index 039c07b7ae5..822039d4a85 100644 --- a/test/lisp/erc/erc-scenarios-base-association-samenet.el +++ b/test/lisp/erc/erc-scenarios-base-association-samenet.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-association-samenet.el --- assoc samenet scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-association-samenet.el --- assoc samenet scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-association.el b/test/lisp/erc/erc-scenarios-base-association.el index be24dd72c65..bce51119323 100644 --- a/test/lisp/erc/erc-scenarios-base-association.el +++ b/test/lisp/erc/erc-scenarios-base-association.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-association.el --- base assoc scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-association.el --- base assoc scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-attach.el b/test/lisp/erc/erc-scenarios-base-attach.el index 8600a601a0b..24957d7fd43 100644 --- a/test/lisp/erc/erc-scenarios-base-attach.el +++ b/test/lisp/erc/erc-scenarios-base-attach.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-attach.el --- Reattach scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-attach.el --- Reattach scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-auto-recon.el b/test/lisp/erc/erc-scenarios-base-auto-recon.el index 744e2041bce..4694f426dfd 100644 --- a/test/lisp/erc/erc-scenarios-base-auto-recon.el +++ b/test/lisp/erc/erc-scenarios-base-auto-recon.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-auto-recon.el --- auto-recon scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-auto-recon.el --- auto-recon scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-buffer-display.el b/test/lisp/erc/erc-scenarios-base-buffer-display.el index d816fee578b..09c56e03fa2 100644 --- a/test/lisp/erc/erc-scenarios-base-buffer-display.el +++ b/test/lisp/erc/erc-scenarios-base-buffer-display.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-buffer-display.el --- Buffer display scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-buffer-display.el --- Buffer display scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-chan-modes.el b/test/lisp/erc/erc-scenarios-base-chan-modes.el index ec4004adea5..21b6ca53853 100644 --- a/test/lisp/erc/erc-scenarios-base-chan-modes.el +++ b/test/lisp/erc/erc-scenarios-base-chan-modes.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-chan-modes.el --- Channel mode scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-chan-modes.el --- Channel mode scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-compat-rename-bouncer.el b/test/lisp/erc/erc-scenarios-base-compat-rename-bouncer.el index 080cfe8ea92..4eb50b449f0 100644 --- a/test/lisp/erc/erc-scenarios-base-compat-rename-bouncer.el +++ b/test/lisp/erc/erc-scenarios-base-compat-rename-bouncer.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-compat-rename-bouncer.el --- Compat-rename scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-compat-rename-bouncer.el --- Compat-rename scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-kill-on-part.el b/test/lisp/erc/erc-scenarios-base-kill-on-part.el index 019b47dceda..6472fee8c6c 100644 --- a/test/lisp/erc/erc-scenarios-base-kill-on-part.el +++ b/test/lisp/erc/erc-scenarios-base-kill-on-part.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-kill-on-part.el --- killing buffers on part -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-kill-on-part.el --- killing buffers on part -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-local-module-modes.el b/test/lisp/erc/erc-scenarios-base-local-module-modes.el index 6b71c74cd90..48498373faa 100644 --- a/test/lisp/erc/erc-scenarios-base-local-module-modes.el +++ b/test/lisp/erc/erc-scenarios-base-local-module-modes.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-local-module-modes.el --- More local-mod ERC tests -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-local-module-modes.el --- More local-mod ERC tests -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-local-modules.el b/test/lisp/erc/erc-scenarios-base-local-modules.el index 1d670b8f508..da247828614 100644 --- a/test/lisp/erc/erc-scenarios-base-local-modules.el +++ b/test/lisp/erc/erc-scenarios-base-local-modules.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-local-modules.el --- Local-module tests for ERC -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-local-modules.el --- Local-module tests for ERC -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-misc-regressions.el b/test/lisp/erc/erc-scenarios-base-misc-regressions.el index 1acd84b04b3..a4ea1a3b0fd 100644 --- a/test/lisp/erc/erc-scenarios-base-misc-regressions.el +++ b/test/lisp/erc/erc-scenarios-base-misc-regressions.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-misc-regressions.el --- misc regressions scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-misc-regressions.el --- misc regressions scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-netid-bouncer-id.el b/test/lisp/erc/erc-scenarios-base-netid-bouncer-id.el index 11c296d522f..2fe0ec9dbdd 100644 --- a/test/lisp/erc/erc-scenarios-base-netid-bouncer-id.el +++ b/test/lisp/erc/erc-scenarios-base-netid-bouncer-id.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-netid-bouncer-id.el --- net-id bouncer ID scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-netid-bouncer-id.el --- net-id bouncer ID scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-netid-bouncer-recon-base.el b/test/lisp/erc/erc-scenarios-base-netid-bouncer-recon-base.el index f92f79b75d8..dade4891081 100644 --- a/test/lisp/erc/erc-scenarios-base-netid-bouncer-recon-base.el +++ b/test/lisp/erc/erc-scenarios-base-netid-bouncer-recon-base.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-netid-bouncer-recon-base.el --- net-id base scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-netid-bouncer-recon-base.el --- net-id base scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-netid-bouncer-recon-both.el b/test/lisp/erc/erc-scenarios-base-netid-bouncer-recon-both.el index 102d4172c1f..fe24e3563c7 100644 --- a/test/lisp/erc/erc-scenarios-base-netid-bouncer-recon-both.el +++ b/test/lisp/erc/erc-scenarios-base-netid-bouncer-recon-both.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-netid-bouncer-recon-both.el --- net-id both scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-netid-bouncer-recon-both.el --- net-id both scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | ;; | 4 | ;; |
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | ;; | 6 | ;; |
diff --git a/test/lisp/erc/erc-scenarios-base-netid-bouncer-recon-id.el b/test/lisp/erc/erc-scenarios-base-netid-bouncer-recon-id.el index 4333291715d..48822f0a8f5 100644 --- a/test/lisp/erc/erc-scenarios-base-netid-bouncer-recon-id.el +++ b/test/lisp/erc/erc-scenarios-base-netid-bouncer-recon-id.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-netid-bouncer-recon-id.el --- recon ID scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-netid-bouncer-recon-id.el --- recon ID scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-netid-bouncer.el b/test/lisp/erc/erc-scenarios-base-netid-bouncer.el index 2c519d239c7..b9703aa5e09 100644 --- a/test/lisp/erc/erc-scenarios-base-netid-bouncer.el +++ b/test/lisp/erc/erc-scenarios-base-netid-bouncer.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-netid-bouncer.el --- net-id bouncer scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-netid-bouncer.el --- net-id bouncer scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-netid-samenet.el b/test/lisp/erc/erc-scenarios-base-netid-samenet.el index 155af37c550..22aa5f8457b 100644 --- a/test/lisp/erc/erc-scenarios-base-netid-samenet.el +++ b/test/lisp/erc/erc-scenarios-base-netid-samenet.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-netid-samenet.el --- One-network net-ID scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-netid-samenet.el --- One-network net-ID scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-query-participants.el b/test/lisp/erc/erc-scenarios-base-query-participants.el index cf25424444f..4f95ca871a3 100644 --- a/test/lisp/erc/erc-scenarios-base-query-participants.el +++ b/test/lisp/erc/erc-scenarios-base-query-participants.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-query-participants.el --- Query user tables -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-query-participants.el --- Query user tables -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-reconnect.el b/test/lisp/erc/erc-scenarios-base-reconnect.el index cdab7b999b3..1444555e59d 100644 --- a/test/lisp/erc/erc-scenarios-base-reconnect.el +++ b/test/lisp/erc/erc-scenarios-base-reconnect.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-reconnect.el --- Base-reconnect scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-reconnect.el --- Base-reconnect scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-renick.el b/test/lisp/erc/erc-scenarios-base-renick.el index 30f49e75f2a..ad2a83261d2 100644 --- a/test/lisp/erc/erc-scenarios-base-renick.el +++ b/test/lisp/erc/erc-scenarios-base-renick.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-renick.el --- Re-nicking scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-renick.el --- Re-nicking scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-reuse-buffers.el b/test/lisp/erc/erc-scenarios-base-reuse-buffers.el index d9d8bdaa4de..63c11bd1710 100644 --- a/test/lisp/erc/erc-scenarios-base-reuse-buffers.el +++ b/test/lisp/erc/erc-scenarios-base-reuse-buffers.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-reuse-buffers.el --- base-reuse-buffers scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-reuse-buffers.el --- base-reuse-buffers scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-send-message.el b/test/lisp/erc/erc-scenarios-base-send-message.el index 0bbe00c9d7a..7364b573dfa 100644 --- a/test/lisp/erc/erc-scenarios-base-send-message.el +++ b/test/lisp/erc/erc-scenarios-base-send-message.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-send-message.el --- `send-message' scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-send-message.el --- `send-message' scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-split-line.el b/test/lisp/erc/erc-scenarios-base-split-line.el index bc2d54bad1e..4f1ff06ec42 100644 --- a/test/lisp/erc/erc-scenarios-base-split-line.el +++ b/test/lisp/erc/erc-scenarios-base-split-line.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-split-line.el --- ERC line splitting -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-split-line.el --- ERC line splitting -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-statusmsg.el b/test/lisp/erc/erc-scenarios-base-statusmsg.el index ab33f9e92c3..4cd55f12a21 100644 --- a/test/lisp/erc/erc-scenarios-base-statusmsg.el +++ b/test/lisp/erc/erc-scenarios-base-statusmsg.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-statusmsg.el --- statusmsg tests -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-statusmsg.el --- statusmsg tests -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-unstable.el b/test/lisp/erc/erc-scenarios-base-unstable.el index 9b81b94fc14..5f6ec471932 100644 --- a/test/lisp/erc/erc-scenarios-base-unstable.el +++ b/test/lisp/erc/erc-scenarios-base-unstable.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-unstable.el --- base unstable scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-unstable.el --- base unstable scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-upstream-recon-soju.el b/test/lisp/erc/erc-scenarios-base-upstream-recon-soju.el index 0d0cec3c731..8946465508d 100644 --- a/test/lisp/erc/erc-scenarios-base-upstream-recon-soju.el +++ b/test/lisp/erc/erc-scenarios-base-upstream-recon-soju.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-upstream-recon-soju.el --- Bouncer recon scenario -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-upstream-recon-soju.el --- Bouncer recon scenario -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-base-upstream-recon-znc.el b/test/lisp/erc/erc-scenarios-base-upstream-recon-znc.el index 9226588d1cc..0aa08d03375 100644 --- a/test/lisp/erc/erc-scenarios-base-upstream-recon-znc.el +++ b/test/lisp/erc/erc-scenarios-base-upstream-recon-znc.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-base-upstream-recon-znc.el --- Bouncer recon scenario -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-base-upstream-recon-znc.el --- Bouncer recon scenario -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-display-message.el b/test/lisp/erc/erc-scenarios-display-message.el index b2ce9556968..735368ce400 100644 --- a/test/lisp/erc/erc-scenarios-display-message.el +++ b/test/lisp/erc/erc-scenarios-display-message.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-display-message.el --- erc-display-message -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-display-message.el --- erc-display-message -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-fill-wrap.el b/test/lisp/erc/erc-scenarios-fill-wrap.el index 0dfeb9bf365..89f6eaf7988 100644 --- a/test/lisp/erc/erc-scenarios-fill-wrap.el +++ b/test/lisp/erc/erc-scenarios-fill-wrap.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-fill-wrap.el --- Fill-wrap module -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-fill-wrap.el --- Fill-wrap module -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-ignore.el b/test/lisp/erc/erc-scenarios-ignore.el index 20e95883864..f22505bd15d 100644 --- a/test/lisp/erc/erc-scenarios-ignore.el +++ b/test/lisp/erc/erc-scenarios-ignore.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-ignore.el --- /IGNORE scenarios ERC -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-ignore.el --- /IGNORE scenarios ERC -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-internal.el b/test/lisp/erc/erc-scenarios-internal.el index 20c5ac45167..fd73836660a 100644 --- a/test/lisp/erc/erc-scenarios-internal.el +++ b/test/lisp/erc/erc-scenarios-internal.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-internal.el --- Proxy file for erc-d tests -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-internal.el --- Proxy file for erc-d tests -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-join-auth-source.el b/test/lisp/erc/erc-scenarios-join-auth-source.el index eb851a363f7..3fa1a57318a 100644 --- a/test/lisp/erc/erc-scenarios-join-auth-source.el +++ b/test/lisp/erc/erc-scenarios-join-auth-source.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-join-auth-source.el --- join-auth-source scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-join-auth-source.el --- join-auth-source scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-join-display-context.el b/test/lisp/erc/erc-scenarios-join-display-context.el index d35c32c8ada..07d7ff1519e 100644 --- a/test/lisp/erc/erc-scenarios-join-display-context.el +++ b/test/lisp/erc/erc-scenarios-join-display-context.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-join-display-context.el --- buffer-display autojoin ctx -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-join-display-context.el --- buffer-display autojoin ctx -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-join-netid-newcmd-id.el b/test/lisp/erc/erc-scenarios-join-netid-newcmd-id.el index 445b63f987d..7ee37c33c8a 100644 --- a/test/lisp/erc/erc-scenarios-join-netid-newcmd-id.el +++ b/test/lisp/erc/erc-scenarios-join-netid-newcmd-id.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-join-netid-newcmd-id.el --- join netid newcmd scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-join-netid-newcmd-id.el --- join netid newcmd scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-join-netid-newcmd.el b/test/lisp/erc/erc-scenarios-join-netid-newcmd.el index 9153c21a5c2..ff18410962b 100644 --- a/test/lisp/erc/erc-scenarios-join-netid-newcmd.el +++ b/test/lisp/erc/erc-scenarios-join-netid-newcmd.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-join-netid-newcmd.el --- join netid newcmd scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-join-netid-newcmd.el --- join netid newcmd scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-join-netid-recon-id.el b/test/lisp/erc/erc-scenarios-join-netid-recon-id.el index 2cc831a2da1..c7d5b3f1515 100644 --- a/test/lisp/erc/erc-scenarios-join-netid-recon-id.el +++ b/test/lisp/erc/erc-scenarios-join-netid-recon-id.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-join-netid-recon-id.el --- join-netid-recon scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-join-netid-recon-id.el --- join-netid-recon scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-join-netid-recon.el b/test/lisp/erc/erc-scenarios-join-netid-recon.el index b696a186da1..d9ce24abc6d 100644 --- a/test/lisp/erc/erc-scenarios-join-netid-recon.el +++ b/test/lisp/erc/erc-scenarios-join-netid-recon.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-join-netid-recon.el --- join-netid-recon scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-join-netid-recon.el --- join-netid-recon scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-join-timing.el b/test/lisp/erc/erc-scenarios-join-timing.el index 785e7530e9e..68c38630872 100644 --- a/test/lisp/erc/erc-scenarios-join-timing.el +++ b/test/lisp/erc/erc-scenarios-join-timing.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-join-timing.el --- Services integration -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-join-timing.el --- Services integration -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-keep-place-indicator-trunc.el b/test/lisp/erc/erc-scenarios-keep-place-indicator-trunc.el index 40024935013..68d8780ef0a 100644 --- a/test/lisp/erc/erc-scenarios-keep-place-indicator-trunc.el +++ b/test/lisp/erc/erc-scenarios-keep-place-indicator-trunc.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-keep-place-indicator-trunc.el --- `truncate' integration -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-keep-place-indicator-trunc.el --- `truncate' integration -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-keep-place-indicator.el b/test/lisp/erc/erc-scenarios-keep-place-indicator.el index 7ff668f0eda..332247667eb 100644 --- a/test/lisp/erc/erc-scenarios-keep-place-indicator.el +++ b/test/lisp/erc/erc-scenarios-keep-place-indicator.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-keep-place-indicator.el --- erc-keep-place-indicator-mode -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-keep-place-indicator.el --- erc-keep-place-indicator-mode -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-log.el b/test/lisp/erc/erc-scenarios-log.el index 3c95018dd26..063cdfdcfd4 100644 --- a/test/lisp/erc/erc-scenarios-log.el +++ b/test/lisp/erc/erc-scenarios-log.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-log.el --- erc-log scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-log.el --- erc-log scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-match.el b/test/lisp/erc/erc-scenarios-match.el index ec713fd0019..bc5ebe27ce9 100644 --- a/test/lisp/erc/erc-scenarios-match.el +++ b/test/lisp/erc/erc-scenarios-match.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-match.el --- Misc `erc-match' scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-match.el --- Misc `erc-match' scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-misc-commands.el b/test/lisp/erc/erc-scenarios-misc-commands.el index 4bfacc4ed2f..933a2e2f968 100644 --- a/test/lisp/erc/erc-scenarios-misc-commands.el +++ b/test/lisp/erc/erc-scenarios-misc-commands.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-misc-commands.el --- Misc commands for ERC -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-misc-commands.el --- Misc commands for ERC -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-misc.el b/test/lisp/erc/erc-scenarios-misc.el index 241664f1158..e973c912cf9 100644 --- a/test/lisp/erc/erc-scenarios-misc.el +++ b/test/lisp/erc/erc-scenarios-misc.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-misc.el --- Misc scenarios for ERC -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-misc.el --- Misc scenarios for ERC -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-nicks-track.el b/test/lisp/erc/erc-scenarios-nicks-track.el index 67e811ea812..7f7792ccb68 100644 --- a/test/lisp/erc/erc-scenarios-nicks-track.el +++ b/test/lisp/erc/erc-scenarios-nicks-track.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-nicks-track.el --- erc-nicks track integration -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-nicks-track.el --- erc-nicks track integration -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-prompt-format.el b/test/lisp/erc/erc-scenarios-prompt-format.el index 63ce167555b..116cd6b8cc9 100644 --- a/test/lisp/erc/erc-scenarios-prompt-format.el +++ b/test/lisp/erc/erc-scenarios-prompt-format.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-prompt-format.el --- erc-prompt-format-mode -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-prompt-format.el --- erc-prompt-format-mode -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-sasl.el b/test/lisp/erc/erc-scenarios-sasl.el index 2432db718e2..c7ea3e46997 100644 --- a/test/lisp/erc/erc-scenarios-sasl.el +++ b/test/lisp/erc/erc-scenarios-sasl.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-sasl.el --- SASL tests for ERC -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-sasl.el --- SASL tests for ERC -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-scrolltobottom-relaxed.el b/test/lisp/erc/erc-scenarios-scrolltobottom-relaxed.el index f4557e1c0ca..7dd659a14d2 100644 --- a/test/lisp/erc/erc-scenarios-scrolltobottom-relaxed.el +++ b/test/lisp/erc/erc-scenarios-scrolltobottom-relaxed.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-scrolltobottom-relaxed.el --- erc-scrolltobottom-all relaxed -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-scrolltobottom-relaxed.el --- erc-scrolltobottom-all relaxed -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-scrolltobottom.el b/test/lisp/erc/erc-scenarios-scrolltobottom.el index 816c427beaf..099ff30001c 100644 --- a/test/lisp/erc/erc-scenarios-scrolltobottom.el +++ b/test/lisp/erc/erc-scenarios-scrolltobottom.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-scrolltobottom.el --- erc-scrolltobottom-mode -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-scrolltobottom.el --- erc-scrolltobottom-mode -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-services-misc.el b/test/lisp/erc/erc-scenarios-services-misc.el index 6cb132b192e..bc6522ae110 100644 --- a/test/lisp/erc/erc-scenarios-services-misc.el +++ b/test/lisp/erc/erc-scenarios-services-misc.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-services-misc.el --- Services-misc scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-services-misc.el --- Services-misc scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-spelling.el b/test/lisp/erc/erc-scenarios-spelling.el index a6660267fe8..0495a2a1390 100644 --- a/test/lisp/erc/erc-scenarios-spelling.el +++ b/test/lisp/erc/erc-scenarios-spelling.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-spelling.el --- Basic spelling scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-spelling.el --- Basic spelling scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-stamp.el b/test/lisp/erc/erc-scenarios-stamp.el index da592b403bb..25dded4b728 100644 --- a/test/lisp/erc/erc-scenarios-stamp.el +++ b/test/lisp/erc/erc-scenarios-stamp.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-stamp.el --- Misc `erc-stamp' scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-stamp.el --- Misc `erc-stamp' scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-scenarios-status-sidebar.el b/test/lisp/erc/erc-scenarios-status-sidebar.el index 2acbcfc5a8f..ede387ac451 100644 --- a/test/lisp/erc/erc-scenarios-status-sidebar.el +++ b/test/lisp/erc/erc-scenarios-status-sidebar.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-status-sidebar.el --- erc-sidebar/speedbar tests -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-status-sidebar.el --- erc-sidebar/speedbar tests -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/erc-services-tests.el b/test/lisp/erc/erc-services-tests.el index 43c7b531f92..291ae54ccc6 100644 --- a/test/lisp/erc/erc-services-tests.el +++ b/test/lisp/erc/erc-services-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-services-tests.el --- Tests for erc-services. -*- lexical-binding:t -*- | 1 | ;;; erc-services-tests.el --- Tests for erc-services. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | ;; | 6 | ;; |
diff --git a/test/lisp/erc/erc-stamp-tests.el b/test/lisp/erc/erc-stamp-tests.el index aa5f8d949b7..64a53be510e 100644 --- a/test/lisp/erc/erc-stamp-tests.el +++ b/test/lisp/erc/erc-stamp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-stamp-tests.el --- Tests for erc-stamp. -*- lexical-binding:t -*- | 1 | ;;; erc-stamp-tests.el --- Tests for erc-stamp. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | ;; | 6 | ;; |
diff --git a/test/lisp/erc/erc-tests.el b/test/lisp/erc/erc-tests.el index 7ad2d268fa3..6d0172e98fc 100644 --- a/test/lisp/erc/erc-tests.el +++ b/test/lisp/erc/erc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-tests.el --- Tests for erc. -*- lexical-binding:t -*- | 1 | ;;; erc-tests.el --- Tests for erc. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> | 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> |
| 6 | 6 | ||
| @@ -165,19 +165,6 @@ | |||
| 165 | 165 | ||
| 166 | (advice-remove 'buffer-local-value 'erc-with-server-buffer))) | 166 | (advice-remove 'buffer-local-value 'erc-with-server-buffer))) |
| 167 | 167 | ||
| 168 | (ert-deftest erc--doarray () | ||
| 169 | (let ((array "abcdefg") | ||
| 170 | out) | ||
| 171 | ;; No return form. | ||
| 172 | (should-not (erc--doarray (c array) (push c out))) | ||
| 173 | (should (equal out '(?g ?f ?e ?d ?c ?b ?a))) | ||
| 174 | |||
| 175 | ;; Return form evaluated upon completion. | ||
| 176 | (setq out nil) | ||
| 177 | (should (= 42 (erc--doarray (c array (+ 39 (length out))) | ||
| 178 | (when (cl-evenp c) (push c out))))) | ||
| 179 | (should (equal out '(?f ?d ?b))))) | ||
| 180 | |||
| 181 | (ert-deftest erc-hide-prompt () | 168 | (ert-deftest erc-hide-prompt () |
| 182 | (let ((erc-hide-prompt erc-hide-prompt) | 169 | (let ((erc-hide-prompt erc-hide-prompt) |
| 183 | (inhibit-message noninteractive) | 170 | (inhibit-message noninteractive) |
| @@ -1000,87 +987,88 @@ | |||
| 1000 | (setq erc-channel-users (make-hash-table :test #'equal) | 987 | (setq erc-channel-users (make-hash-table :test #'equal) |
| 1001 | erc--target (erc--target-from-string "#test")) | 988 | erc--target (erc--target-from-string "#test")) |
| 1002 | 989 | ||
| 1003 | (let ((orig-handle-fn (symbol-function 'erc--handle-channel-mode)) | 990 | (cl-letf ((calls ()) |
| 1004 | calls) | 991 | ((symbol-function 'erc-update-mode-line) #'ignore)) |
| 1005 | (cl-letf (((symbol-function 'erc--handle-channel-mode) | 992 | (advice-add 'erc--handle-channel-mode |
| 1006 | (lambda (&rest r) (push r calls) (apply orig-handle-fn r))) | 993 | :before (lambda (&rest r) (push r calls)) |
| 1007 | ((symbol-function 'erc-update-mode-line) #'ignore)) | 994 | '((name . erc-tests-spy))) |
| 1008 | 995 | ||
| 1009 | (ert-info ("Unknown user not created") | 996 | (ert-info ("Unknown user not created") |
| 1010 | (erc--update-channel-modes "+o" "bob") | 997 | (erc--update-channel-modes "+o" "bob") |
| 1011 | (should-not (erc-get-channel-user "bob"))) | 998 | (should-not (erc-get-channel-user "bob"))) |
| 1012 | 999 | ||
| 1013 | (ert-info ("Status updated when user known") | 1000 | (ert-info ("Status updated when user known") |
| 1014 | (puthash "bob" (cons (erc-add-server-user | 1001 | (puthash "bob" (cons (erc-add-server-user |
| 1015 | "bob" (make-erc-server-user | 1002 | "bob" (make-erc-server-user |
| 1016 | :nickname "bob" | 1003 | :nickname "bob" |
| 1017 | :buffers (list (current-buffer)))) | 1004 | :buffers (list (current-buffer)))) |
| 1018 | (make-erc-channel-user)) | 1005 | (make-erc-channel-user)) |
| 1019 | erc-channel-users) | 1006 | erc-channel-users) |
| 1020 | ;; Also asserts fallback behavior for traditional prefixes. | 1007 | ;; Also asserts fallback behavior for traditional prefixes. |
| 1021 | (should-not (erc-channel-user-op-p "bob")) | 1008 | (should-not (erc-channel-user-op-p "bob")) |
| 1022 | (erc--update-channel-modes "+o" "bob") | 1009 | (erc--update-channel-modes "+o" "bob") |
| 1023 | (should (erc-channel-user-op-p "bob")) | 1010 | (should (erc-channel-user-op-p "bob")) |
| 1024 | (erc--update-channel-modes "-o" "bob") ; status revoked | 1011 | (erc--update-channel-modes "-o" "bob") ; status revoked |
| 1025 | (should-not (erc-channel-user-op-p "bob"))) | 1012 | (should-not (erc-channel-user-op-p "bob"))) |
| 1026 | 1013 | ||
| 1027 | (ert-info ("Unknown nullary added and removed") | 1014 | (ert-info ("Unknown nullary added and removed") |
| 1028 | (should-not erc--channel-modes) | 1015 | (should-not erc--channel-modes) |
| 1029 | (should-not erc-channel-modes) | 1016 | (should-not erc-channel-modes) |
| 1030 | (erc--update-channel-modes "+u") | 1017 | (erc--update-channel-modes "+u") |
| 1031 | (should (equal erc-channel-modes '("u"))) | 1018 | (should (equal erc-channel-modes '("u"))) |
| 1032 | (should (eq t (gethash ?u erc--channel-modes))) | 1019 | (should (eq t (gethash ?u erc--channel-modes))) |
| 1033 | (should (equal (pop calls) '(?d ?u t nil))) | 1020 | (should (equal (pop calls) '(?d ?u t nil))) |
| 1034 | (erc--update-channel-modes "-u") | 1021 | (erc--update-channel-modes "-u") |
| 1035 | (should (equal (pop calls) '(?d ?u nil nil))) | 1022 | (should (equal (pop calls) '(?d ?u nil nil))) |
| 1036 | (should-not (gethash ?u erc--channel-modes)) | 1023 | (should-not (gethash ?u erc--channel-modes)) |
| 1037 | (should-not erc-channel-modes) | 1024 | (should-not erc-channel-modes) |
| 1038 | (should-not calls)) | 1025 | (should-not calls)) |
| 1026 | |||
| 1027 | (ert-info ("Fallback for Type B includes mode letter k") | ||
| 1028 | (erc--update-channel-modes "+k" "h2") | ||
| 1029 | (should (equal (pop calls) '(?b ?k t "h2"))) | ||
| 1030 | (should-not erc-channel-modes) | ||
| 1031 | (should (equal "h2" (gethash ?k erc--channel-modes))) | ||
| 1032 | (erc--update-channel-modes "-k" "*") | ||
| 1033 | (should (equal (pop calls) '(?b ?k nil "*"))) | ||
| 1034 | (should-not calls) | ||
| 1035 | (should-not (gethash ?k erc--channel-modes)) | ||
| 1036 | (should-not erc-channel-modes)) | ||
| 1037 | |||
| 1038 | (ert-info ("Fallback for Type C includes mode letter l") | ||
| 1039 | (erc--update-channel-modes "+l" "3") | ||
| 1040 | (should (equal (pop calls) '(?c ?l t "3"))) | ||
| 1041 | (should-not erc-channel-modes) | ||
| 1042 | (should (equal "3" (gethash ?l erc--channel-modes))) | ||
| 1043 | (erc--update-channel-modes "-l" nil) | ||
| 1044 | (should (equal (pop calls) '(?c ?l nil nil))) | ||
| 1045 | (should-not (gethash ?l erc--channel-modes)) | ||
| 1046 | (should-not erc-channel-modes)) | ||
| 1047 | |||
| 1048 | (ert-info ("Advertised supersedes heuristics") | ||
| 1049 | (setq erc-server-parameters | ||
| 1050 | '(("PREFIX" . "(ov)@+") | ||
| 1051 | ;; Add phony 5th type for this CHANMODES value for | ||
| 1052 | ;; robustness in case some server gets creative. | ||
| 1053 | ("CHANMODES" . "eIbq,k,flj,CFLMPQRSTcgimnprstuz,FAKE"))) | ||
| 1054 | (erc--update-channel-modes "+qu" "fool!*@*") | ||
| 1055 | (should (equal (pop calls) '(?d ?u t nil))) | ||
| 1056 | (should (equal (pop calls) '(?a ?q t "fool!*@*"))) | ||
| 1057 | (should (equal 1 (gethash ?q erc--channel-modes))) | ||
| 1058 | (should (eq t (gethash ?u erc--channel-modes))) | ||
| 1059 | (should (equal erc-channel-modes '("u"))) | ||
| 1060 | (should-not (erc-channel-user-owner-p "bob")) | ||
| 1061 | |||
| 1062 | ;; Remove fool!*@* from list mode "q". | ||
| 1063 | (erc--update-channel-modes "-uq" "fool!*@*") | ||
| 1064 | (should (equal (pop calls) '(?a ?q nil "fool!*@*"))) | ||
| 1065 | (should (equal (pop calls) '(?d ?u nil nil))) | ||
| 1066 | (should-not (gethash ?u erc--channel-modes)) | ||
| 1067 | (should-not erc-channel-modes) | ||
| 1068 | (should (equal 0 (gethash ?q erc--channel-modes)))) | ||
| 1039 | 1069 | ||
| 1040 | (ert-info ("Fallback for Type B includes mode letter k") | 1070 | (should-not calls) |
| 1041 | (erc--update-channel-modes "+k" "h2") | 1071 | (advice-remove 'erc--handle-channel-mode 'erc-tests-spy))) |
| 1042 | (should (equal (pop calls) '(?b ?k t "h2"))) | ||
| 1043 | (should-not erc-channel-modes) | ||
| 1044 | (should (equal "h2" (gethash ?k erc--channel-modes))) | ||
| 1045 | (erc--update-channel-modes "-k" "*") | ||
| 1046 | (should (equal (pop calls) '(?b ?k nil "*"))) | ||
| 1047 | (should-not calls) | ||
| 1048 | (should-not (gethash ?k erc--channel-modes)) | ||
| 1049 | (should-not erc-channel-modes)) | ||
| 1050 | |||
| 1051 | (ert-info ("Fallback for Type C includes mode letter l") | ||
| 1052 | (erc--update-channel-modes "+l" "3") | ||
| 1053 | (should (equal (pop calls) '(?c ?l t "3"))) | ||
| 1054 | (should-not erc-channel-modes) | ||
| 1055 | (should (equal "3" (gethash ?l erc--channel-modes))) | ||
| 1056 | (erc--update-channel-modes "-l" nil) | ||
| 1057 | (should (equal (pop calls) '(?c ?l nil nil))) | ||
| 1058 | (should-not (gethash ?l erc--channel-modes)) | ||
| 1059 | (should-not erc-channel-modes)) | ||
| 1060 | |||
| 1061 | (ert-info ("Advertised supersedes heuristics") | ||
| 1062 | (setq erc-server-parameters | ||
| 1063 | '(("PREFIX" . "(ov)@+") | ||
| 1064 | ;; Add phony 5th type for this CHANMODES value for | ||
| 1065 | ;; robustness in case some server gets creative. | ||
| 1066 | ("CHANMODES" . "eIbq,k,flj,CFLMPQRSTcgimnprstuz,FAKE"))) | ||
| 1067 | (erc--update-channel-modes "+qu" "fool!*@*") | ||
| 1068 | (should (equal (pop calls) '(?d ?u t nil))) | ||
| 1069 | (should (equal (pop calls) '(?a ?q t "fool!*@*"))) | ||
| 1070 | (should (equal 1 (gethash ?q erc--channel-modes))) | ||
| 1071 | (should (eq t (gethash ?u erc--channel-modes))) | ||
| 1072 | (should (equal erc-channel-modes '("u"))) | ||
| 1073 | (should-not (erc-channel-user-owner-p "bob")) | ||
| 1074 | |||
| 1075 | ;; Remove fool!*@* from list mode "q". | ||
| 1076 | (erc--update-channel-modes "-uq" "fool!*@*") | ||
| 1077 | (should (equal (pop calls) '(?a ?q nil "fool!*@*"))) | ||
| 1078 | (should (equal (pop calls) '(?d ?u nil nil))) | ||
| 1079 | (should-not (gethash ?u erc--channel-modes)) | ||
| 1080 | (should-not erc-channel-modes) | ||
| 1081 | (should (equal 0 (gethash ?q erc--channel-modes)))) | ||
| 1082 | |||
| 1083 | (should-not calls)))) | ||
| 1084 | 1072 | ||
| 1085 | (ert-deftest erc--channel-modes () | 1073 | (ert-deftest erc--channel-modes () |
| 1086 | ;; Only mark :unstable when running locally. | 1074 | ;; Only mark :unstable when running locally. |
diff --git a/test/lisp/erc/erc-track-tests.el b/test/lisp/erc/erc-track-tests.el index 7f21a6abb08..da4a4d0fad7 100644 --- a/test/lisp/erc/erc-track-tests.el +++ b/test/lisp/erc/erc-track-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-track-tests.el --- Tests for erc-track. -*- lexical-binding:t -*- | 1 | ;;; erc-track-tests.el --- Tests for erc-track. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Mario Lang <mlang@delysid.org> | 5 | ;; Author: Mario Lang <mlang@delysid.org> |
| 6 | ;; Author: Vivek Dasmohapatra <vivek@etla.org> | 6 | ;; Author: Vivek Dasmohapatra <vivek@etla.org> |
diff --git a/test/lisp/erc/resources/base/modes/speaker-status.eld b/test/lisp/erc/resources/base/modes/speaker-status.eld index 4a7d508e35c..fe3654f9117 100644 --- a/test/lisp/erc/resources/base/modes/speaker-status.eld +++ b/test/lisp/erc/resources/base/modes/speaker-status.eld | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | (0.00 ":irc.example.net 372 tester : ") | 22 | (0.00 ":irc.example.net 372 tester : ") |
| 23 | (0.00 ":irc.example.net 372 tester : Have fun with the image!") | 23 | (0.00 ":irc.example.net 372 tester : Have fun with the image!") |
| 24 | (0.00 ":irc.example.net 376 tester :End of message of the day.") | 24 | (0.00 ":irc.example.net 376 tester :End of message of the day.") |
| 25 | (0.00 ":irc.example.net 501 tester x :is not a recognised user mode.") | 25 | (0.00 ":irc.example.net 501 tester x :is not a recognized user mode.") |
| 26 | (0.00 ":NickServ!NickServ@services.int NOTICE tester :Welcome to foonet, tester! Here on foonet, we provide services to enable the registration of nicknames and channels! For details, type \2/msg NickServ help\2 and \2/msg ChanServ help\2.")) | 26 | (0.00 ":NickServ!NickServ@services.int NOTICE tester :Welcome to foonet, tester! Here on foonet, we provide services to enable the registration of nicknames and channels! For details, type \2/msg NickServ help\2 and \2/msg ChanServ help\2.")) |
| 27 | 27 | ||
| 28 | ((mode 10 "MODE tester +i") | 28 | ((mode 10 "MODE tester +i") |
diff --git a/test/lisp/erc/resources/erc-d/erc-d-i.el b/test/lisp/erc/resources/erc-d/erc-d-i.el index 73dd4016fcf..9271b30cb51 100644 --- a/test/lisp/erc/resources/erc-d/erc-d-i.el +++ b/test/lisp/erc/resources/erc-d/erc-d-i.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-d-i.el --- IRC helpers for ERC test server -*- lexical-binding: t -*- | 1 | ;;; erc-d-i.el --- IRC helpers for ERC test server -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/resources/erc-d/erc-d-t.el b/test/lisp/erc/resources/erc-d/erc-d-t.el index 7e5a81ffbac..dbfe9181887 100644 --- a/test/lisp/erc/resources/erc-d/erc-d-t.el +++ b/test/lisp/erc/resources/erc-d/erc-d-t.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-d-t.el --- ERT helpers for ERC test server -*- lexical-binding: t -*- | 1 | ;;; erc-d-t.el --- ERT helpers for ERC test server -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/resources/erc-d/erc-d-tests.el b/test/lisp/erc/resources/erc-d/erc-d-tests.el index 4964af23b52..b161ea17305 100644 --- a/test/lisp/erc/resources/erc-d/erc-d-tests.el +++ b/test/lisp/erc/resources/erc-d/erc-d-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-d-tests.el --- tests for erc-d -*- lexical-binding: t -*- | 1 | ;;; erc-d-tests.el --- tests for erc-d -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -1221,7 +1221,7 @@ DIALOGS are symbols representing the base names of dialog files in | |||
| 1221 | (proc (apply #'start-process args))) | 1221 | (proc (apply #'start-process args))) |
| 1222 | (set-process-query-on-exit-flag proc nil) | 1222 | (set-process-query-on-exit-flag proc nil) |
| 1223 | (with-current-buffer buffer | 1223 | (with-current-buffer buffer |
| 1224 | (erc-d-t-search-for 5 "Starting") | 1224 | (erc-d-t-search-for 10 "Starting") |
| 1225 | (search-forward " (") | 1225 | (search-forward " (") |
| 1226 | (backward-char)) | 1226 | (backward-char)) |
| 1227 | (let ((pair (read buffer))) | 1227 | (let ((pair (read buffer))) |
diff --git a/test/lisp/erc/resources/erc-d/erc-d-u.el b/test/lisp/erc/resources/erc-d/erc-d-u.el index dd7d1b4d3cc..bd46c41f4dd 100644 --- a/test/lisp/erc/resources/erc-d/erc-d-u.el +++ b/test/lisp/erc/resources/erc-d/erc-d-u.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-d-u.el --- Helpers for ERC test server -*- lexical-binding: t -*- | 1 | ;;; erc-d-u.el --- Helpers for ERC test server -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/resources/erc-d/erc-d.el b/test/lisp/erc/resources/erc-d/erc-d.el index 6cbd7525827..040980c906f 100644 --- a/test/lisp/erc/resources/erc-d/erc-d.el +++ b/test/lisp/erc/resources/erc-d/erc-d.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-d.el --- A dumb test server for ERC -*- lexical-binding: t -*- | 1 | ;;; erc-d.el --- A dumb test server for ERC -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/resources/erc-d/resources/proxy-subprocess.el b/test/lisp/erc/resources/erc-d/resources/proxy-subprocess.el index 7f89708e37f..10300d6fd2a 100644 --- a/test/lisp/erc/resources/erc-d/resources/proxy-subprocess.el +++ b/test/lisp/erc/resources/erc-d/resources/proxy-subprocess.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; proxy-subprocess.el --- Example setup file for erc-d -*- lexical-binding: t; -*- | 1 | ;;; proxy-subprocess.el --- Example setup file for erc-d -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/resources/erc-scenarios-common.el b/test/lisp/erc/resources/erc-scenarios-common.el index ce7595363c9..f0b2afdc8b0 100644 --- a/test/lisp/erc/resources/erc-scenarios-common.el +++ b/test/lisp/erc/resources/erc-scenarios-common.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-scenarios-common.el --- Common helpers for ERC scenarios -*- lexical-binding: t -*- | 1 | ;;; erc-scenarios-common.el --- Common helpers for ERC scenarios -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/resources/erc-tests-common.el b/test/lisp/erc/resources/erc-tests-common.el index 6eddd576bf5..f27cf2f3271 100644 --- a/test/lisp/erc/resources/erc-tests-common.el +++ b/test/lisp/erc/resources/erc-tests-common.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; erc-tests-common.el --- Common helpers for ERC tests -*- lexical-binding: t -*- | 1 | ;;; erc-tests-common.el --- Common helpers for ERC tests -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/erc/resources/services/regain/taken-ghost.eld b/test/lisp/erc/resources/services/regain/taken-ghost.eld index d5afd124a43..0a02f4dedb1 100644 --- a/test/lisp/erc/resources/services/regain/taken-ghost.eld +++ b/test/lisp/erc/resources/services/regain/taken-ghost.eld | |||
| @@ -34,7 +34,7 @@ | |||
| 34 | 34 | ||
| 35 | ((mode 10 "MODE dummy` +i")) | 35 | ((mode 10 "MODE dummy` +i")) |
| 36 | ((privmsg 10 "PRIVMSG NickServ :GHOST dummy") | 36 | ((privmsg 10 "PRIVMSG NickServ :GHOST dummy") |
| 37 | (0.00 ":irc.example.net 501 dummy` x :is not a recognised user mode.") | 37 | (0.00 ":irc.example.net 501 dummy` x :is not a recognized user mode.") |
| 38 | (0.00 ":irc.example.net NOTICE dummy` :*** You are connected to irc.example.net using TLS (SSL) cipher 'TLS1.3-ECDHE-RSA-AES-256-GCM-AEAD'") | 38 | (0.00 ":irc.example.net NOTICE dummy` :*** You are connected to irc.example.net using TLS (SSL) cipher 'TLS1.3-ECDHE-RSA-AES-256-GCM-AEAD'") |
| 39 | (0.03 ":dummy`!dummy@10.0.2.100 MODE dummy` :+i") | 39 | (0.03 ":dummy`!dummy@10.0.2.100 MODE dummy` :+i") |
| 40 | (0.02 ":NickServ!NickServ@services.int NOTICE dummy` :\2dummy\2 has been ghosted.")) | 40 | (0.02 ":NickServ!NickServ@services.int NOTICE dummy` :\2dummy\2 has been ghosted.")) |
diff --git a/test/lisp/erc/resources/services/regain/taken-regain.eld b/test/lisp/erc/resources/services/regain/taken-regain.eld index 22635d4cc89..dacd6d866b0 100644 --- a/test/lisp/erc/resources/services/regain/taken-regain.eld +++ b/test/lisp/erc/resources/services/regain/taken-regain.eld | |||
| @@ -31,7 +31,7 @@ | |||
| 31 | (0.00 ":irc.example.net 375 dummy` :irc.example.net message of the day") | 31 | (0.00 ":irc.example.net 375 dummy` :irc.example.net message of the day") |
| 32 | (0.00 ":irc.example.net 372 dummy` : Have fun with the image!") | 32 | (0.00 ":irc.example.net 372 dummy` : Have fun with the image!") |
| 33 | (0.00 ":irc.example.net 376 dummy` :End of message of the day.") | 33 | (0.00 ":irc.example.net 376 dummy` :End of message of the day.") |
| 34 | (0.00 ":irc.example.net 501 dummy` x :is not a recognised user mode.") | 34 | (0.00 ":irc.example.net 501 dummy` x :is not a recognized user mode.") |
| 35 | (0.00 ":irc.example.net NOTICE dummy` :*** You are connected to irc.example.net using TLS (SSL) cipher 'TLS1.3-ECDHE-RSA-AES-256-GCM-AEAD'")) | 35 | (0.00 ":irc.example.net NOTICE dummy` :*** You are connected to irc.example.net using TLS (SSL) cipher 'TLS1.3-ECDHE-RSA-AES-256-GCM-AEAD'")) |
| 36 | 36 | ||
| 37 | ((mode 10 "MODE dummy` +i")) | 37 | ((mode 10 "MODE dummy` +i")) |
diff --git a/test/lisp/eshell/em-alias-tests.el b/test/lisp/eshell/em-alias-tests.el index 51af80af148..02c3c1f2518 100644 --- a/test/lisp/eshell/em-alias-tests.el +++ b/test/lisp/eshell/em-alias-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-alias-tests.el --- em-alias test suite -*- lexical-binding:t -*- | 1 | ;;; em-alias-tests.el --- em-alias test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/em-basic-tests.el b/test/lisp/eshell/em-basic-tests.el index cd141dc440e..bba0cd951c0 100644 --- a/test/lisp/eshell/em-basic-tests.el +++ b/test/lisp/eshell/em-basic-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-basic-tests.el --- em-basic test suite -*- lexical-binding:t -*- | 1 | ;;; em-basic-tests.el --- em-basic test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/em-cmpl-tests.el b/test/lisp/eshell/em-cmpl-tests.el index df459533fb9..ff1e7ec0f9d 100644 --- a/test/lisp/eshell/em-cmpl-tests.el +++ b/test/lisp/eshell/em-cmpl-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-cmpl-tests.el --- em-cmpl test suite -*- lexical-binding:t -*- | 1 | ;;; em-cmpl-tests.el --- em-cmpl test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/em-dirs-tests.el b/test/lisp/eshell/em-dirs-tests.el index a3e2ad7287c..e18721eb780 100644 --- a/test/lisp/eshell/em-dirs-tests.el +++ b/test/lisp/eshell/em-dirs-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-dirs-tests.el --- em-dirs test suite -*- lexical-binding:t -*- | 1 | ;;; em-dirs-tests.el --- em-dirs test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/em-extpipe-tests.el b/test/lisp/eshell/em-extpipe-tests.el index b2c55256341..81eac13f2fa 100644 --- a/test/lisp/eshell/em-extpipe-tests.el +++ b/test/lisp/eshell/em-extpipe-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-extpipe-tests.el --- em-extpipe test suite -*- lexical-binding:t -*- | 1 | ;;; em-extpipe-tests.el --- em-extpipe test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Sean Whitton <spwhitton@spwhitton.name> | 5 | ;; Author: Sean Whitton <spwhitton@spwhitton.name> |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/em-glob-tests.el b/test/lisp/eshell/em-glob-tests.el index fd5ef537a0b..68dcc9ddb13 100644 --- a/test/lisp/eshell/em-glob-tests.el +++ b/test/lisp/eshell/em-glob-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-glob-tests.el --- em-glob test suite -*- lexical-binding:t -*- | 1 | ;;; em-glob-tests.el --- em-glob test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/em-hist-tests.el b/test/lisp/eshell/em-hist-tests.el index 6288ae071dc..98c3739b4bf 100644 --- a/test/lisp/eshell/em-hist-tests.el +++ b/test/lisp/eshell/em-hist-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-hist-tests.el --- em-hist test suite -*- lexical-binding:t -*- | 1 | ;;; em-hist-tests.el --- em-hist test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/em-ls-tests.el b/test/lisp/eshell/em-ls-tests.el index bb1a1fe567e..8cbbbbf150d 100644 --- a/test/lisp/eshell/em-ls-tests.el +++ b/test/lisp/eshell/em-ls-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-ls-tests.el --- em-ls test suite -*- lexical-binding:t -*- | 1 | ;;; em-ls-tests.el --- em-ls test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> | 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/em-pred-tests.el b/test/lisp/eshell/em-pred-tests.el index 05ee5d4c4c3..06777a4999a 100644 --- a/test/lisp/eshell/em-pred-tests.el +++ b/test/lisp/eshell/em-pred-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-pred-tests.el --- em-pred test suite -*- lexical-binding:t -*- | 1 | ;;; em-pred-tests.el --- em-pred test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/em-prompt-tests.el b/test/lisp/eshell/em-prompt-tests.el index ed2cd02a516..ba3e421f61c 100644 --- a/test/lisp/eshell/em-prompt-tests.el +++ b/test/lisp/eshell/em-prompt-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-prompt-tests.el --- em-prompt test suite -*- lexical-binding:t -*- | 1 | ;;; em-prompt-tests.el --- em-prompt test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -201,10 +201,10 @@ This tests the case when `eshell-highlight-prompt' is nil." | |||
| 201 | (eshell-insert-command "echo 'high five'") | 201 | (eshell-insert-command "echo 'high five'") |
| 202 | (eshell-insert-command "echo 'up high\n\ndown low'") | 202 | (eshell-insert-command "echo 'up high\n\ndown low'") |
| 203 | (eshell-insert-command "echo 'too slow'") | 203 | (eshell-insert-command "echo 'too slow'") |
| 204 | (insert "echo goodby") ; A partially-entered command. | 204 | (insert "echo good") ; A partially-entered command. |
| 205 | (ert-info ("Go back to the last prompt") | 205 | (ert-info ("Go back to the last prompt") |
| 206 | (eshell-backward-paragraph) | 206 | (eshell-backward-paragraph) |
| 207 | (should (at-prompt-for-command-p "echo goodby"))) | 207 | (should (at-prompt-for-command-p "echo good"))) |
| 208 | (ert-info ("Go back to the paragraph break") | 208 | (ert-info ("Go back to the paragraph break") |
| 209 | (eshell-backward-paragraph 2) | 209 | (eshell-backward-paragraph 2) |
| 210 | (should (looking-at "\ndown low\n"))) | 210 | (should (looking-at "\ndown low\n"))) |
diff --git a/test/lisp/eshell/em-script-tests.el b/test/lisp/eshell/em-script-tests.el index 30b917baa35..a660107c893 100644 --- a/test/lisp/eshell/em-script-tests.el +++ b/test/lisp/eshell/em-script-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-script-tests.el --- em-script test suite -*- lexical-binding:t -*- | 1 | ;;; em-script-tests.el --- em-script test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/em-tramp-tests.el b/test/lisp/eshell/em-tramp-tests.el index 7de7c07d2dc..fee2f04f2ce 100644 --- a/test/lisp/eshell/em-tramp-tests.el +++ b/test/lisp/eshell/em-tramp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-tramp-tests.el --- em-tramp test suite -*- lexical-binding:t -*- | 1 | ;;; em-tramp-tests.el --- em-tramp test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/em-unix-tests.el b/test/lisp/eshell/em-unix-tests.el index b8969c5568a..6f27e7ebc6a 100644 --- a/test/lisp/eshell/em-unix-tests.el +++ b/test/lisp/eshell/em-unix-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; em-unix-tests.el --- em-unix test suite -*- lexical-binding:t -*- | 1 | ;;; em-unix-tests.el --- em-unix test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/esh-arg-tests.el b/test/lisp/eshell/esh-arg-tests.el index 4c34711ec2e..393714db161 100644 --- a/test/lisp/eshell/esh-arg-tests.el +++ b/test/lisp/eshell/esh-arg-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; esh-arg-tests.el --- esh-arg test suite -*- lexical-binding:t -*- | 1 | ;;; esh-arg-tests.el --- esh-arg test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/esh-cmd-tests.el b/test/lisp/eshell/esh-cmd-tests.el index 25e6c0fda7c..1d03becb9d9 100644 --- a/test/lisp/eshell/esh-cmd-tests.el +++ b/test/lisp/eshell/esh-cmd-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; esh-cmd-tests.el --- esh-cmd test suite -*- lexical-binding:t -*- | 1 | ;;; esh-cmd-tests.el --- esh-cmd test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/esh-ext-tests.el b/test/lisp/eshell/esh-ext-tests.el index c6f5c48ae3e..4b8555f88a4 100644 --- a/test/lisp/eshell/esh-ext-tests.el +++ b/test/lisp/eshell/esh-ext-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; esh-ext-tests.el --- esh-ext test suite -*- lexical-binding:t -*- | 1 | ;;; esh-ext-tests.el --- esh-ext test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/esh-io-tests.el b/test/lisp/eshell/esh-io-tests.el index 87fc32390d2..ba4b5710b51 100644 --- a/test/lisp/eshell/esh-io-tests.el +++ b/test/lisp/eshell/esh-io-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; esh-io-tests.el --- esh-io test suite -*- lexical-binding:t -*- | 1 | ;;; esh-io-tests.el --- esh-io test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/esh-mode-tests.el b/test/lisp/eshell/esh-mode-tests.el index b8023029369..7e79b25faac 100644 --- a/test/lisp/eshell/esh-mode-tests.el +++ b/test/lisp/eshell/esh-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; esh-mode-tests.el --- esh-mode test suite -*- lexical-binding:t -*- | 1 | ;;; esh-mode-tests.el --- esh-mode test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/esh-opt-tests.el b/test/lisp/eshell/esh-opt-tests.el index 6098ad7725f..89337e60be1 100644 --- a/test/lisp/eshell/esh-opt-tests.el +++ b/test/lisp/eshell/esh-opt-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; esh-opt-tests.el --- esh-opt test suite -*- lexical-binding:t -*- | 1 | ;;; esh-opt-tests.el --- esh-opt test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/esh-proc-tests.el b/test/lisp/eshell/esh-proc-tests.el index 2ef8b9d7536..6dc25192d6d 100644 --- a/test/lisp/eshell/esh-proc-tests.el +++ b/test/lisp/eshell/esh-proc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; esh-proc-tests.el --- esh-proc test suite -*- lexical-binding:t -*- | 1 | ;;; esh-proc-tests.el --- esh-proc test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/esh-util-tests.el b/test/lisp/eshell/esh-util-tests.el index 39fc6288110..5bdeb32d9a6 100644 --- a/test/lisp/eshell/esh-util-tests.el +++ b/test/lisp/eshell/esh-util-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; esh-util-tests.el --- esh-util test suite -*- lexical-binding:t -*- | 1 | ;;; esh-util-tests.el --- esh-util test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/esh-var-tests.el b/test/lisp/eshell/esh-var-tests.el index 20575d93407..f7158a19160 100644 --- a/test/lisp/eshell/esh-var-tests.el +++ b/test/lisp/eshell/esh-var-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; esh-var-tests.el --- esh-var test suite -*- lexical-binding:t -*- | 1 | ;;; esh-var-tests.el --- esh-var test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/eshell-tests-unload.el b/test/lisp/eshell/eshell-tests-unload.el index 958eb0ee4ba..6f56c5d1080 100644 --- a/test/lisp/eshell/eshell-tests-unload.el +++ b/test/lisp/eshell/eshell-tests-unload.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; eshell-tests-unload.el --- test unloading Eshell -*- lexical-binding:t -*- | 1 | ;;; eshell-tests-unload.el --- test unloading Eshell -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/eshell-tests.el b/test/lisp/eshell/eshell-tests.el index 99e4528ab00..65fc6dc14f2 100644 --- a/test/lisp/eshell/eshell-tests.el +++ b/test/lisp/eshell/eshell-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; eshell-tests.el --- Eshell test suite -*- lexical-binding:t -*- | 1 | ;;; eshell-tests.el --- Eshell test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1999-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: John Wiegley <johnw@gnu.org> | 5 | ;; Author: John Wiegley <johnw@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/eshell/resources/eshell-tests-helpers.el b/test/lisp/eshell/resources/eshell-tests-helpers.el index 870e199f686..4e149e910f6 100644 --- a/test/lisp/eshell/resources/eshell-tests-helpers.el +++ b/test/lisp/eshell/resources/eshell-tests-helpers.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; eshell-tests-helpers.el --- Eshell test suite helpers -*- lexical-binding:t -*- | 1 | ;;; eshell-tests-helpers.el --- Eshell test suite helpers -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1999-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: John Wiegley <johnw@gnu.org> | 5 | ;; Author: John Wiegley <johnw@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/faces-resources/faces-test-dark-theme.el b/test/lisp/faces-resources/faces-test-dark-theme.el index 007ffb2563a..d8915207f50 100644 --- a/test/lisp/faces-resources/faces-test-dark-theme.el +++ b/test/lisp/faces-resources/faces-test-dark-theme.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; faces-test-dark-theme.el --- A dark theme from tests ;;; -*- lexical-binding: t; -*- | 1 | ;;; faces-test-dark-theme.el --- A dark theme from tests ;;; -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/faces-resources/faces-test-light-theme.el b/test/lisp/faces-resources/faces-test-light-theme.el index 6f8f174bfc2..2274ed36572 100644 --- a/test/lisp/faces-resources/faces-test-light-theme.el +++ b/test/lisp/faces-resources/faces-test-light-theme.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; faces-test-light-theme.el --- A dark theme from tests ;;; -*- lexical-binding: t; -*- | 1 | ;;; faces-test-light-theme.el --- A dark theme from tests ;;; -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/faces-tests.el b/test/lisp/faces-tests.el index 703d1da5ce9..5c47e975359 100644 --- a/test/lisp/faces-tests.el +++ b/test/lisp/faces-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; faces-tests.el --- Tests for faces.el -*- lexical-binding: t; -*- | 1 | ;;; faces-tests.el --- Tests for faces.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> | 5 | ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/ffap-tests.el b/test/lisp/ffap-tests.el index f891149e6d6..825ed8ba139 100644 --- a/test/lisp/ffap-tests.el +++ b/test/lisp/ffap-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ffap-tests.el --- Test suite for ffap.el -*- lexical-binding: t -*- | 1 | ;;; ffap-tests.el --- Test suite for ffap.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> | 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/filenotify-tests.el b/test/lisp/filenotify-tests.el index 0c48b112819..fc826aba8d4 100644 --- a/test/lisp/filenotify-tests.el +++ b/test/lisp/filenotify-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; filenotify-tests.el --- Tests of file notifications -*- lexical-binding: t; -*- | 1 | ;;; filenotify-tests.el --- Tests of file notifications -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> | 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> |
| 6 | 6 | ||
| @@ -1256,6 +1256,10 @@ delivered." | |||
| 1256 | :tags '(:expensive-test) | 1256 | :tags '(:expensive-test) |
| 1257 | (skip-unless (file-notify--test-local-enabled)) | 1257 | (skip-unless (file-notify--test-local-enabled)) |
| 1258 | 1258 | ||
| 1259 | (let ((file-notify-debug ;; Temporarily. | ||
| 1260 | (or file-notify-debug | ||
| 1261 | (getenv "EMACS_EMBA_CI")))) | ||
| 1262 | |||
| 1259 | (with-file-notify-test | 1263 | (with-file-notify-test |
| 1260 | (write-region "any text" nil file-notify--test-tmpfile nil 'no-message) | 1264 | (write-region "any text" nil file-notify--test-tmpfile nil 'no-message) |
| 1261 | (should | 1265 | (should |
| @@ -1334,7 +1338,7 @@ delivered." | |||
| 1334 | (file-notify--rm-descriptor file-notify--test-desc) | 1338 | (file-notify--rm-descriptor file-notify--test-desc) |
| 1335 | 1339 | ||
| 1336 | ;; The environment shall be cleaned up. | 1340 | ;; The environment shall be cleaned up. |
| 1337 | (file-notify--test-cleanup-p)))) | 1341 | (file-notify--test-cleanup-p))))) |
| 1338 | 1342 | ||
| 1339 | (file-notify--deftest-remote file-notify-test08-backup | 1343 | (file-notify--deftest-remote file-notify-test08-backup |
| 1340 | "Check that backup keeps file notification for remote files.") | 1344 | "Check that backup keeps file notification for remote files.") |
diff --git a/test/lisp/files-tests.el b/test/lisp/files-tests.el index e9998ba9231..14cfff99c59 100644 --- a/test/lisp/files-tests.el +++ b/test/lisp/files-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; files-tests.el --- tests for files.el. -*- lexical-binding: t; -*- | 1 | ;;; files-tests.el --- tests for files.el. -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2012-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2012-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/files-x-tests.el b/test/lisp/files-x-tests.el index 2ab7aa60ff9..88e02ba143c 100644 --- a/test/lisp/files-x-tests.el +++ b/test/lisp/files-x-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; files-x-tests.el --- tests for files-x.el. -*- lexical-binding: t -*- | 1 | ;;; files-x-tests.el --- tests for files-x.el. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> | 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> |
| 6 | 6 | ||
diff --git a/test/lisp/find-cmd-tests.el b/test/lisp/find-cmd-tests.el index 66f4c48abae..4a30e347621 100644 --- a/test/lisp/find-cmd-tests.el +++ b/test/lisp/find-cmd-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; find-cmd-tests.el --- tests for find-cmd.el. -*- lexical-binding: t -*- | 1 | ;;; find-cmd-tests.el --- tests for find-cmd.el. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/follow-tests.el b/test/lisp/follow-tests.el index 29bda77873b..0c274896918 100644 --- a/test/lisp/follow-tests.el +++ b/test/lisp/follow-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; follow-tests.el --- Tests for follow.el -*- lexical-binding: t; -*- | 1 | ;;; follow-tests.el --- Tests for follow.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/font-lock-tests.el b/test/lisp/font-lock-tests.el index 41de13929ea..6995ef3be55 100644 --- a/test/lisp/font-lock-tests.el +++ b/test/lisp/font-lock-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; font-lock-tests.el --- Test suite for font-lock. -*- lexical-binding: t -*- | 1 | ;;; font-lock-tests.el --- Test suite for font-lock. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/format-spec-tests.el b/test/lisp/format-spec-tests.el index 726721bd57f..cbe9e91f27d 100644 --- a/test/lisp/format-spec-tests.el +++ b/test/lisp/format-spec-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; format-spec-tests.el --- tests for format-spec.el -*- lexical-binding: t -*- | 1 | ;;; format-spec-tests.el --- tests for format-spec.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/gnus/gnus-group-tests.el b/test/lisp/gnus/gnus-group-tests.el index 6753bf209b8..59a37a37678 100644 --- a/test/lisp/gnus/gnus-group-tests.el +++ b/test/lisp/gnus/gnus-group-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; gnus-group-tests.el --- Tests for gnus-group.el -*- lexical-binding: t; -*- | 1 | ;;; gnus-group-tests.el --- Tests for gnus-group.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/gnus/gnus-icalendar-tests.el b/test/lisp/gnus/gnus-icalendar-tests.el index 2658ca4848a..df9358b96c5 100644 --- a/test/lisp/gnus/gnus-icalendar-tests.el +++ b/test/lisp/gnus/gnus-icalendar-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; gnus-icalendar-tests.el --- tests -*- lexical-binding: t; -*- | 1 | ;;; gnus-icalendar-tests.el --- tests -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Jan Tatarik <jan.tatarik@gmail.com> | 5 | ;; Author: Jan Tatarik <jan.tatarik@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/gnus/gnus-search-tests.el b/test/lisp/gnus/gnus-search-tests.el index f1ca6f6a9a2..09325c52f0d 100644 --- a/test/lisp/gnus/gnus-search-tests.el +++ b/test/lisp/gnus/gnus-search-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; gnus-search-tests.el --- Tests for Gnus' search routines -*- lexical-binding: t; -*- | 1 | ;;; gnus-search-tests.el --- Tests for Gnus' search routines -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017, 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017, 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric Abrahamsen <eric@ericabrahamsen.net> | 5 | ;; Author: Eric Abrahamsen <eric@ericabrahamsen.net> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/gnus/gnus-test-headers.el b/test/lisp/gnus/gnus-test-headers.el index 5a33e28e537..11450bb97fa 100644 --- a/test/lisp/gnus/gnus-test-headers.el +++ b/test/lisp/gnus/gnus-test-headers.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; gnus-test-headers.el --- Tests for Gnus header-related functions -*- lexical-binding: t; -*- | 1 | ;;; gnus-test-headers.el --- Tests for Gnus header-related functions -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric Abrahamsen <eric@ericabrahamsen.net> | 5 | ;; Author: Eric Abrahamsen <eric@ericabrahamsen.net> |
| 6 | 6 | ||
diff --git a/test/lisp/gnus/gnus-tests.el b/test/lisp/gnus/gnus-tests.el index 1a4bfce0a22..e710042a846 100644 --- a/test/lisp/gnus/gnus-tests.el +++ b/test/lisp/gnus/gnus-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; gnus-tests.el --- Wrapper for the Gnus tests -*- lexical-binding:t -*- | 1 | ;;; gnus-tests.el --- Wrapper for the Gnus tests -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2011-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2011-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Teodor Zlatanov <tzz@lifelogs.com> | 5 | ;; Author: Teodor Zlatanov <tzz@lifelogs.com> |
| 6 | 6 | ||
diff --git a/test/lisp/gnus/gnus-util-tests.el b/test/lisp/gnus/gnus-util-tests.el index f1aa09abe1c..3e5a287c795 100644 --- a/test/lisp/gnus/gnus-util-tests.el +++ b/test/lisp/gnus/gnus-util-tests.el | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | ;;; gnus-util-tests.el --- Selectived tests only. -*- lexical-binding:t -*- | 1 | ;;; gnus-util-tests.el --- Selectived tests only. -*- lexical-binding:t -*- |
| 2 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 2 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Jens Lechtenbörger <jens.lechtenboerger@fsfe.org> | 4 | ;; Author: Jens Lechtenbörger <jens.lechtenboerger@fsfe.org> |
| 5 | 5 | ||
diff --git a/test/lisp/gnus/message-tests.el b/test/lisp/gnus/message-tests.el index 7c290486f26..56fcbeee66f 100644 --- a/test/lisp/gnus/message-tests.el +++ b/test/lisp/gnus/message-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; message-tests.el --- Tests for message-mode -*- lexical-binding: t; -*- | 1 | ;;; message-tests.el --- Tests for message-mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: João Távora <joaotavora@gmail.com> | 5 | ;; Author: João Távora <joaotavora@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/gnus/mm-decode-tests.el b/test/lisp/gnus/mm-decode-tests.el index 7adb1d6ca20..e66f115a2d4 100644 --- a/test/lisp/gnus/mm-decode-tests.el +++ b/test/lisp/gnus/mm-decode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mm-decode-tests.el --- -*- lexical-binding:t -*- | 1 | ;;; mm-decode-tests.el --- -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/gnus/mml-sec-tests.el b/test/lisp/gnus/mml-sec-tests.el index aca87d100ad..6cd03206204 100644 --- a/test/lisp/gnus/mml-sec-tests.el +++ b/test/lisp/gnus/mml-sec-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mml-sec-tests.el --- Tests mml-sec.el, see README-mml-secure.txt. -*- lexical-binding:t -*- | 1 | ;;; mml-sec-tests.el --- Tests mml-sec.el, see README-mml-secure.txt. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015, 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015, 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Jens Lechtenbörger <jens.lechtenboerger@fsfe.org> | 5 | ;; Author: Jens Lechtenbörger <jens.lechtenboerger@fsfe.org> |
| 6 | 6 | ||
diff --git a/test/lisp/gnus/nnrss-tests.el b/test/lisp/gnus/nnrss-tests.el index 81a24453942..e6f2b244f3e 100644 --- a/test/lisp/gnus/nnrss-tests.el +++ b/test/lisp/gnus/nnrss-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; nnrss-tests.el --- tests for gnus/nnrss.el -*- lexical-binding:t -*- | 1 | ;;; nnrss-tests.el --- tests for gnus/nnrss.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/help-fns-tests.el b/test/lisp/help-fns-tests.el index 4f65db028e4..7806ab9be2b 100644 --- a/test/lisp/help-fns-tests.el +++ b/test/lisp/help-fns-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; help-fns-tests.el --- tests for help-fns.el -*- lexical-binding: t -*- | 1 | ;;; help-fns-tests.el --- tests for help-fns.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Maintainer: emacs-devel@gnu.org | 5 | ;; Maintainer: emacs-devel@gnu.org |
| 6 | 6 | ||
diff --git a/test/lisp/help-mode-tests.el b/test/lisp/help-mode-tests.el index 85977f5bdcc..639b753ae49 100644 --- a/test/lisp/help-mode-tests.el +++ b/test/lisp/help-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; help-mode-tests.el --- Tests for help-mode.el -*- lexical-binding: t; -*- | 1 | ;;; help-mode-tests.el --- Tests for help-mode.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/help-tests.el b/test/lisp/help-tests.el index 8c6713c7a40..b1b52e83e3e 100644 --- a/test/lisp/help-tests.el +++ b/test/lisp/help-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; help-tests.el --- Tests for help.el -*- lexical-binding: t; -*- | 1 | ;;; help-tests.el --- Tests for help.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Juanma Barranquero <lekktu@gmail.com> | 5 | ;; Author: Juanma Barranquero <lekktu@gmail.com> |
| 6 | ;; Eli Zaretskii <eliz@gnu.org> | 6 | ;; Eli Zaretskii <eliz@gnu.org> |
diff --git a/test/lisp/hfy-cmap-tests.el b/test/lisp/hfy-cmap-tests.el index 6aff2b3cec0..37593d460e6 100644 --- a/test/lisp/hfy-cmap-tests.el +++ b/test/lisp/hfy-cmap-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; hfy-cmap-tests.el --- tests for hfy-cmap.el -*- lexical-binding: t -*- | 1 | ;;; hfy-cmap-tests.el --- tests for hfy-cmap.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/hi-lock-tests.el b/test/lisp/hi-lock-tests.el index 1f9bf5bab18..fb3a42da94b 100644 --- a/test/lisp/hi-lock-tests.el +++ b/test/lisp/hi-lock-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; hi-lock-tests.el --- Tests for hi-lock.el -*- lexical-binding: t; -*- | 1 | ;;; hi-lock-tests.el --- Tests for hi-lock.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> | 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/hl-line-tests.el b/test/lisp/hl-line-tests.el index e1079607aa2..b16300c6589 100644 --- a/test/lisp/hl-line-tests.el +++ b/test/lisp/hl-line-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; hl-line-tests.el --- Test suite for hl-line. -*- lexical-binding: t -*- | 1 | ;;; hl-line-tests.el --- Test suite for hl-line. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/htmlfontify-tests.el b/test/lisp/htmlfontify-tests.el index 704fc258930..244d6e76a19 100644 --- a/test/lisp/htmlfontify-tests.el +++ b/test/lisp/htmlfontify-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; htmlfontify-tests.el --- Test suite. -*- lexical-binding: t -*- | 1 | ;;; htmlfontify-tests.el --- Test suite. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/ibuffer-tests.el b/test/lisp/ibuffer-tests.el index 1e0babd43a5..f3d6f7eb9c0 100644 --- a/test/lisp/ibuffer-tests.el +++ b/test/lisp/ibuffer-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ibuffer-tests.el --- Test suite. -*- lexical-binding: t -*- | 1 | ;;; ibuffer-tests.el --- Test suite. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/ido-tests.el b/test/lisp/ido-tests.el index f5c85fc0621..5c9407cc31a 100644 --- a/test/lisp/ido-tests.el +++ b/test/lisp/ido-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ido-tests.el --- unit tests for ido.el -*- lexical-binding: t; -*- | 1 | ;;; ido-tests.el --- unit tests for ido.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Philipp Stephani <phst@google.com> | 5 | ;; Author: Philipp Stephani <phst@google.com> |
| 6 | 6 | ||
diff --git a/test/lisp/image-file-tests.el b/test/lisp/image-file-tests.el index c87059a0d97..707ad374002 100644 --- a/test/lisp/image-file-tests.el +++ b/test/lisp/image-file-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; image-file-tests.el --- Test suite for image-files -*- lexical-binding: t; -*- | 1 | ;;; image-file-tests.el --- Test suite for image-files -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/image-tests.el b/test/lisp/image-tests.el index 455118cb98c..9818169c803 100644 --- a/test/lisp/image-tests.el +++ b/test/lisp/image-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; image-tests.el --- tests for image.el -*- lexical-binding: t -*- | 1 | ;;; image-tests.el --- tests for image.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/image/exif-tests.el b/test/lisp/image/exif-tests.el index 5697aad28b5..50533959333 100644 --- a/test/lisp/image/exif-tests.el +++ b/test/lisp/image/exif-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; exif-tests.el --- tests for exif.el -*- lexical-binding: t -*- | 1 | ;;; exif-tests.el --- tests for exif.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/image/gravatar-tests.el b/test/lisp/image/gravatar-tests.el index 5f3451189e5..aebb8135a63 100644 --- a/test/lisp/image/gravatar-tests.el +++ b/test/lisp/image/gravatar-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; gravatar-tests.el --- tests for gravatar.el -*- lexical-binding: t -*- | 1 | ;;; gravatar-tests.el --- tests for gravatar.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/image/image-dired-tests.el b/test/lisp/image/image-dired-tests.el index 76d8128bfa9..2a7d582d8d0 100644 --- a/test/lisp/image/image-dired-tests.el +++ b/test/lisp/image/image-dired-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; image-dired-tests.el --- Tests for image-dired.el -*- lexical-binding: t -*- | 1 | ;;; image-dired-tests.el --- Tests for image-dired.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/image/image-dired-util-tests.el b/test/lisp/image/image-dired-util-tests.el index d28aa2c25ad..1195e97292f 100644 --- a/test/lisp/image/image-dired-util-tests.el +++ b/test/lisp/image/image-dired-util-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; image-dired-util-tests.el --- Tests for image-dired.el -*- lexical-binding: t -*- | 1 | ;;; image-dired-util-tests.el --- Tests for image-dired.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/image/wallpaper-tests.el b/test/lisp/image/wallpaper-tests.el index 9a301fc3546..ef4618962f0 100644 --- a/test/lisp/image/wallpaper-tests.el +++ b/test/lisp/image/wallpaper-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; wallpaper-tests.el --- tests for wallpaper.el -*- lexical-binding: t -*- | 1 | ;;; wallpaper-tests.el --- tests for wallpaper.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/imenu-tests.el b/test/lisp/imenu-tests.el index 38d1f78d2d7..d496112351f 100644 --- a/test/lisp/imenu-tests.el +++ b/test/lisp/imenu-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; imenu-tests.el --- Test suite for imenu. -*- lexical-binding:t -*- | 1 | ;;; imenu-tests.el --- Test suite for imenu. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Masatake YAMATO <yamato@redhat.com> | 5 | ;; Author: Masatake YAMATO <yamato@redhat.com> |
| 6 | ;; Keywords: tools convenience | 6 | ;; Keywords: tools convenience |
diff --git a/test/lisp/info-tests.el b/test/lisp/info-tests.el index 576bd40ca1b..ad4ede2fbe1 100644 --- a/test/lisp/info-tests.el +++ b/test/lisp/info-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; info-tests.el --- Tests for info.el -*- lexical-binding: t; -*- | 1 | ;;; info-tests.el --- Tests for info.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/info-xref-tests.el b/test/lisp/info-xref-tests.el index f7e42978b80..76f9c52626b 100644 --- a/test/lisp/info-xref-tests.el +++ b/test/lisp/info-xref-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; info-xref-tests.el --- tests for info-xref.el -*- lexical-binding:t -*- | 1 | ;;; info-xref-tests.el --- tests for info-xref.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/international/ccl-tests.el b/test/lisp/international/ccl-tests.el index 747d0364345..98f2d239b80 100644 --- a/test/lisp/international/ccl-tests.el +++ b/test/lisp/international/ccl-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ccl-tests.el --- unit tests for ccl.el -*- lexical-binding:t -*- | 1 | ;;; ccl-tests.el --- unit tests for ccl.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/international/mule-tests.el b/test/lisp/international/mule-tests.el index d45c89b8a94..d7092b11154 100644 --- a/test/lisp/international/mule-tests.el +++ b/test/lisp/international/mule-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mule-tests.el --- unit tests for mule.el -*- lexical-binding: t; -*- | 1 | ;;; mule-tests.el --- unit tests for mule.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/international/mule-util-tests.el b/test/lisp/international/mule-util-tests.el index e906df1ac61..7506812fe37 100644 --- a/test/lisp/international/mule-util-tests.el +++ b/test/lisp/international/mule-util-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mule-util-tests.el --- tests for international/mule-util.el -*- lexical-binding:t -*- | 1 | ;;; mule-util-tests.el --- tests for international/mule-util.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2002-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2002-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/international/textsec-tests.el b/test/lisp/international/textsec-tests.el index 47b43e064c0..266dd5e1da5 100644 --- a/test/lisp/international/textsec-tests.el +++ b/test/lisp/international/textsec-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; textsec-tests.el --- Tests for textsec.el -*- lexical-binding: t; -*- | 1 | ;;; textsec-tests.el --- Tests for textsec.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/international/ucs-normalize-tests.el b/test/lisp/international/ucs-normalize-tests.el index 6e78a567670..d03a9422d4c 100644 --- a/test/lisp/international/ucs-normalize-tests.el +++ b/test/lisp/international/ucs-normalize-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ucs-normalize-tests.el --- tests for international/ucs-normalize.el -*- lexical-binding: t -*- | 1 | ;;; ucs-normalize-tests.el --- tests for international/ucs-normalize.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2002-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2002-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/isearch-tests.el b/test/lisp/isearch-tests.el index 3b2c070d003..6bd8f72b9dd 100644 --- a/test/lisp/isearch-tests.el +++ b/test/lisp/isearch-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; isearch-tests.el --- Tests for isearch.el -*- lexical-binding: t; -*- | 1 | ;;; isearch-tests.el --- Tests for isearch.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> | 5 | ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/jit-lock-tests.el b/test/lisp/jit-lock-tests.el index f094d0c2a90..58ea95d29ef 100644 --- a/test/lisp/jit-lock-tests.el +++ b/test/lisp/jit-lock-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; jit-lock-tests.el --- tests for jit-lock -*- lexical-binding:t -*- | 1 | ;;; jit-lock-tests.el --- tests for jit-lock -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Dmitry Gutov <dgutov@yandex.ru> | 5 | ;; Author: Dmitry Gutov <dgutov@yandex.ru> |
| 6 | 6 | ||
diff --git a/test/lisp/json-tests.el b/test/lisp/json-tests.el index ed2bee0fc05..4fb6a9195ce 100644 --- a/test/lisp/json-tests.el +++ b/test/lisp/json-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; json-tests.el --- Test suite for json.el -*- lexical-binding:t -*- | 1 | ;;; json-tests.el --- Test suite for json.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Dmitry Gutov <dgutov@yandex.ru> | 5 | ;; Author: Dmitry Gutov <dgutov@yandex.ru> |
| 6 | 6 | ||
diff --git a/test/lisp/jsonrpc-tests.el b/test/lisp/jsonrpc-tests.el index 148f5870434..ca26f3c5a30 100644 --- a/test/lisp/jsonrpc-tests.el +++ b/test/lisp/jsonrpc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; jsonrpc-tests.el --- tests for jsonrpc.el -*- lexical-binding: t; -*- | 1 | ;;; jsonrpc-tests.el --- tests for jsonrpc.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: João Távora <joaotavora@gmail.com> | 5 | ;; Author: João Távora <joaotavora@gmail.com> |
| 6 | ;; Keywords: tests | 6 | ;; Keywords: tests |
diff --git a/test/lisp/kmacro-tests.el b/test/lisp/kmacro-tests.el index 86adcbf3a30..b7667fad878 100644 --- a/test/lisp/kmacro-tests.el +++ b/test/lisp/kmacro-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; kmacro-tests.el --- Tests for kmacro.el -*- lexical-binding: t; -*- | 1 | ;;; kmacro-tests.el --- Tests for kmacro.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Gemini Lasswell <gazally@runbox.com> | 5 | ;; Author: Gemini Lasswell <gazally@runbox.com> |
| 6 | 6 | ||
diff --git a/test/lisp/language/viet-util-tests.el b/test/lisp/language/viet-util-tests.el new file mode 100644 index 00000000000..f55634842e3 --- /dev/null +++ b/test/lisp/language/viet-util-tests.el | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | ;;; viet-util-tests.el --- unit tests for viet-util.el -*- lexical-binding: t; -*- | ||
| 2 | |||
| 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | ;; This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | ;; GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | ;; it under the terms of the GNU General Public License as published by | ||
| 9 | ;; the Free Software Foundation, either version 3 of the License, or | ||
| 10 | ;; (at your option) any later version. | ||
| 11 | |||
| 12 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | ;; GNU General Public License for more details. | ||
| 16 | |||
| 17 | ;; You should have received a copy of the GNU General Public License | ||
| 18 | ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. | ||
| 19 | |||
| 20 | ;;; Commentary: | ||
| 21 | |||
| 22 | ;; Unit tests for lisp/language/viet-util.el. | ||
| 23 | |||
| 24 | ;;; Code: | ||
| 25 | |||
| 26 | (ert-deftest viet-util-test-viqr () | ||
| 27 | "Test bug#80039." | ||
| 28 | (let ((viqr-text "O^ng te^n gi`\\? To^i te^n la` Tra^`n Va(n Hie^'u\\.") | ||
| 29 | (viet-text "Ông tên gì? Tôi tên là Trần Văn Hiếu.")) | ||
| 30 | (with-temp-buffer | ||
| 31 | (insert viqr-text) | ||
| 32 | (viet-decode-viqr-region (point-min) (point-max)) | ||
| 33 | (should (equal (buffer-string) viet-text)) | ||
| 34 | (viet-encode-viqr-region (point-min) (point-max)) | ||
| 35 | (should (equal (buffer-string) viqr-text))))) | ||
| 36 | |||
| 37 | ;;; viet-util--tests.el ends here | ||
diff --git a/test/lisp/loadhist-resources/loadhist--alias.el b/test/lisp/loadhist-resources/loadhist--alias.el index 96f1b77c48d..70cd2bf3175 100644 --- a/test/lisp/loadhist-resources/loadhist--alias.el +++ b/test/lisp/loadhist-resources/loadhist--alias.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; loadhist--alias.el --- Dummy package for loadhist-tests -*- lexical-binding: t; -*- | 1 | ;;; loadhist--alias.el --- Dummy package for loadhist-tests -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Jens Schmidt <jschmidt4gnu@vodafonemail.de> | 5 | ;; Author: Jens Schmidt <jschmidt4gnu@vodafonemail.de> |
| 6 | 6 | ||
diff --git a/test/lisp/loadhist-resources/loadhist--bar.el b/test/lisp/loadhist-resources/loadhist--bar.el index 1df2f98dd7b..94ab8a1e09c 100644 --- a/test/lisp/loadhist-resources/loadhist--bar.el +++ b/test/lisp/loadhist-resources/loadhist--bar.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; loadhist--bar.el --- Dummy package for loadhist-tests -*- lexical-binding: t; -*- | 1 | ;;; loadhist--bar.el --- Dummy package for loadhist-tests -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
| 6 | 6 | ||
diff --git a/test/lisp/loadhist-resources/loadhist--foo.el b/test/lisp/loadhist-resources/loadhist--foo.el index 62b97bf8e92..a8e3bf1d90d 100644 --- a/test/lisp/loadhist-resources/loadhist--foo.el +++ b/test/lisp/loadhist-resources/loadhist--foo.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; loadhist--foo.el --- Dummy package for loadhist-tests -*- lexical-binding: t; -*- | 1 | ;;; loadhist--foo.el --- Dummy package for loadhist-tests -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
| 6 | 6 | ||
diff --git a/test/lisp/loadhist-tests.el b/test/lisp/loadhist-tests.el index 3bc8bbb0189..d8716d663fd 100644 --- a/test/lisp/loadhist-tests.el +++ b/test/lisp/loadhist-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; loadhist-tests.el --- Tests for loadhist.el -*- lexical-binding:t -*- | 1 | ;;; loadhist-tests.el --- Tests for loadhist.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/lpr-tests.el b/test/lisp/lpr-tests.el index 9a3efb4eaa4..84f2997a54d 100644 --- a/test/lisp/lpr-tests.el +++ b/test/lisp/lpr-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; lpr-tests.el --- Tests for lpr.el -*- lexical-binding: t -*- | 1 | ;;; lpr-tests.el --- Tests for lpr.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/ls-lisp-tests.el b/test/lisp/ls-lisp-tests.el index a0533a21878..12e2e9090ea 100644 --- a/test/lisp/ls-lisp-tests.el +++ b/test/lisp/ls-lisp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ls-lisp-tests.el --- tests for ls-lisp.el -*- lexical-binding: t-*- | 1 | ;;; ls-lisp-tests.el --- tests for ls-lisp.el -*- lexical-binding: t-*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> | 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/mail/flow-fill-tests.el b/test/lisp/mail/flow-fill-tests.el index a40a6562ee4..f01441ba1cc 100644 --- a/test/lisp/mail/flow-fill-tests.el +++ b/test/lisp/mail/flow-fill-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; flow-fill-tests.el --- Tests for flow-fill.el -*- lexical-binding: t -*- | 1 | ;;; flow-fill-tests.el --- Tests for flow-fill.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/mail/footnote-tests.el b/test/lisp/mail/footnote-tests.el index 6981768c5c0..04483d68959 100644 --- a/test/lisp/mail/footnote-tests.el +++ b/test/lisp/mail/footnote-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; footnote-tests.el --- Tests for footnote-mode -*- lexical-binding: t; -*- | 1 | ;;; footnote-tests.el --- Tests for footnote-mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/mail/ietf-drums-date-tests.el b/test/lisp/mail/ietf-drums-date-tests.el index 572c322d4c8..6903c660646 100644 --- a/test/lisp/mail/ietf-drums-date-tests.el +++ b/test/lisp/mail/ietf-drums-date-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ietf-drums-date-tests.el --- Test suite for ietf-drums-date.el -*- lexical-binding:t -*- | 1 | ;;; ietf-drums-date-tests.el --- Test suite for ietf-drums-date.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Bob Rogers <rogers@rgrjr.com> | 5 | ;; Author: Bob Rogers <rogers@rgrjr.com> |
| 6 | 6 | ||
diff --git a/test/lisp/mail/ietf-drums-tests.el b/test/lisp/mail/ietf-drums-tests.el index d44f9e8ce89..2dad88cf2f8 100644 --- a/test/lisp/mail/ietf-drums-tests.el +++ b/test/lisp/mail/ietf-drums-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ietf-drums-tests.el --- Test suite for ietf-drums.el -*- lexical-binding:t -*- | 1 | ;;; ietf-drums-tests.el --- Test suite for ietf-drums.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Bob Rogers <rogers@rgrjr.com> | 5 | ;; Author: Bob Rogers <rogers@rgrjr.com> |
| 6 | 6 | ||
diff --git a/test/lisp/mail/mail-extr-tests.el b/test/lisp/mail/mail-extr-tests.el index 56457a34c61..fc049c8ef04 100644 --- a/test/lisp/mail/mail-extr-tests.el +++ b/test/lisp/mail/mail-extr-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mail-extr-tests.el --- Tests for mail-extr.el -*- lexical-binding: t -*- | 1 | ;;; mail-extr-tests.el --- Tests for mail-extr.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/mail/mail-parse-tests.el b/test/lisp/mail/mail-parse-tests.el index 092b0b5c9e9..4451f2c9a2d 100644 --- a/test/lisp/mail/mail-parse-tests.el +++ b/test/lisp/mail/mail-parse-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mail-parse-tests.el --- tests for mail-parse.el -*- lexical-binding: t -*- | 1 | ;;; mail-parse-tests.el --- tests for mail-parse.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/mail/mail-utils-tests.el b/test/lisp/mail/mail-utils-tests.el index 717aec830f1..f8bdd34a5d7 100644 --- a/test/lisp/mail/mail-utils-tests.el +++ b/test/lisp/mail/mail-utils-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mail-utils-tests.el --- tests for mail-utils.el -*- lexical-binding: t -*- | 1 | ;;; mail-utils-tests.el --- tests for mail-utils.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/mail/qp-tests.el b/test/lisp/mail/qp-tests.el index 4441205970c..5b5312477f8 100644 --- a/test/lisp/mail/qp-tests.el +++ b/test/lisp/mail/qp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; qp-tests.el --- Tests for qp.el -*- lexical-binding:t; coding:utf-8 -*- | 1 | ;;; qp-tests.el --- Tests for qp.el -*- lexical-binding:t; coding:utf-8 -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/mail/rfc2045-tests.el b/test/lisp/mail/rfc2045-tests.el index 47c53cf50ee..31c84955307 100644 --- a/test/lisp/mail/rfc2045-tests.el +++ b/test/lisp/mail/rfc2045-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; rfc2045-tests.el --- Tests for rfc2045.el -*- lexical-binding:t -*- | 1 | ;;; rfc2045-tests.el --- Tests for rfc2045.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/mail/rfc2047-tests.el b/test/lisp/mail/rfc2047-tests.el index 1efcbc9648b..9a2d0b88902 100644 --- a/test/lisp/mail/rfc2047-tests.el +++ b/test/lisp/mail/rfc2047-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; rfc2047-tests.el --- tests for rfc2047.el -*- lexical-binding: t -*- | 1 | ;;; rfc2047-tests.el --- tests for rfc2047.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/mail/rfc6068-tests.el b/test/lisp/mail/rfc6068-tests.el index eb29e843f91..b7feec01c30 100644 --- a/test/lisp/mail/rfc6068-tests.el +++ b/test/lisp/mail/rfc6068-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; rfc6068-tests.el --- Tests for rfc6068.el -*- lexical-binding:t -*- | 1 | ;;; rfc6068-tests.el --- Tests for rfc6068.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/mail/rfc822-tests.el b/test/lisp/mail/rfc822-tests.el index 3f19055fcd8..4288db52156 100644 --- a/test/lisp/mail/rfc822-tests.el +++ b/test/lisp/mail/rfc822-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; rfc822-tests.el --- Tests for rfc822.el -*- lexical-binding:t -*- | 1 | ;;; rfc822-tests.el --- Tests for rfc822.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/mail/rmail-tests.el b/test/lisp/mail/rmail-tests.el index 4c241bed987..5877c562001 100644 --- a/test/lisp/mail/rmail-tests.el +++ b/test/lisp/mail/rmail-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; rmail-tests.el --- Test suite. -*- lexical-binding: t -*- | 1 | ;;; rmail-tests.el --- Test suite. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/mail/rmailmm-tests.el b/test/lisp/mail/rmailmm-tests.el index 1374a73c7f3..f60b8d6807d 100644 --- a/test/lisp/mail/rmailmm-tests.el +++ b/test/lisp/mail/rmailmm-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; rmailmm-tests.el --- Tests for rmailmm.el -*- lexical-binding:t -*- | 1 | ;;; rmailmm-tests.el --- Tests for rmailmm.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2006-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2006-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/mail/undigest-tests.el b/test/lisp/mail/undigest-tests.el index e1df09a69d3..a51211b2b07 100644 --- a/test/lisp/mail/undigest-tests.el +++ b/test/lisp/mail/undigest-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; undigest-tests.el --- Tests for undigest.el -*- lexical-binding:t -*- | 1 | ;;; undigest-tests.el --- Tests for undigest.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/mail/uudecode-tests.el b/test/lisp/mail/uudecode-tests.el index bf8ded82e63..36efbac709b 100644 --- a/test/lisp/mail/uudecode-tests.el +++ b/test/lisp/mail/uudecode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; uudecode-tests.el --- Tests for uudecode.el -*- lexical-binding: t -*- | 1 | ;;; uudecode-tests.el --- Tests for uudecode.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/man-tests.el b/test/lisp/man-tests.el index f076439e802..2bdc7664e29 100644 --- a/test/lisp/man-tests.el +++ b/test/lisp/man-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; man-tests.el --- Test suite for man. -*- lexical-binding:t -*- | 1 | ;;; man-tests.el --- Test suite for man. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Wolfgang Jenkner <wjenkner@inode.at> | 5 | ;; Author: Wolfgang Jenkner <wjenkner@inode.at> |
| 6 | ;; Keywords: help, internal, unix | 6 | ;; Keywords: help, internal, unix |
diff --git a/test/lisp/md4-tests.el b/test/lisp/md4-tests.el index 42ba7fd0882..73e322bd2bb 100644 --- a/test/lisp/md4-tests.el +++ b/test/lisp/md4-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; md4-tests.el --- tests for md4.el -*- lexical-binding: t -*- | 1 | ;;; md4-tests.el --- tests for md4.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Mark Oteiza <mvoteiza@udel.edu> | 5 | ;; Author: Mark Oteiza <mvoteiza@udel.edu> |
| 6 | ;; Maintainer: emacs-devel@gnu.org | 6 | ;; Maintainer: emacs-devel@gnu.org |
diff --git a/test/lisp/mh-e/mh-limit-tests.el b/test/lisp/mh-e/mh-limit-tests.el index 913e289c708..964c70f8987 100644 --- a/test/lisp/mh-e/mh-limit-tests.el +++ b/test/lisp/mh-e/mh-limit-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mh-limit-tests.el --- tests for mh-limit.el -*- lexical-binding: t -*- | 1 | ;;; mh-limit-tests.el --- tests for mh-limit.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/mh-e/mh-thread-tests.el b/test/lisp/mh-e/mh-thread-tests.el index 446ad93db60..8d7c001f600 100644 --- a/test/lisp/mh-e/mh-thread-tests.el +++ b/test/lisp/mh-e/mh-thread-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mh-thread-tests.el --- tests for mh-thread.el -*- lexical-binding: t -*- | 1 | ;;; mh-thread-tests.el --- tests for mh-thread.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/mh-e/mh-utils-tests.el b/test/lisp/mh-e/mh-utils-tests.el index 169a8653741..66f3675c7bb 100644 --- a/test/lisp/mh-e/mh-utils-tests.el +++ b/test/lisp/mh-e/mh-utils-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mh-utils-tests.el --- tests for mh-utils.el -*- lexical-binding: t -*- | 1 | ;;; mh-utils-tests.el --- tests for mh-utils.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/mh-e/mh-xface-tests.el b/test/lisp/mh-e/mh-xface-tests.el index df92feefad4..2216a8a688e 100644 --- a/test/lisp/mh-e/mh-xface-tests.el +++ b/test/lisp/mh-e/mh-xface-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mh-xface-tests.el --- tests for mh-xface.el -*- lexical-binding: t -*- | 1 | ;;; mh-xface-tests.el --- tests for mh-xface.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/mh-e/test-all-mh-variants.sh b/test/lisp/mh-e/test-all-mh-variants.sh index 6e4b91e4ac4..78e1a4219b3 100755 --- a/test/lisp/mh-e/test-all-mh-variants.sh +++ b/test/lisp/mh-e/test-all-mh-variants.sh | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #! /bin/bash | 1 | #! /bin/bash |
| 2 | # Run the mh-utils-tests against all MH variants found on this system. | 2 | # Run the mh-utils-tests against all MH variants found on this system. |
| 3 | 3 | ||
| 4 | # Copyright (C) 2021-2025 Free Software Foundation, Inc. | 4 | # Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | # This file is part of GNU Emacs. | 6 | # This file is part of GNU Emacs. |
| 7 | 7 | ||
diff --git a/test/lisp/minibuffer-tests.el b/test/lisp/minibuffer-tests.el index 78a5261a143..79ffb1d3fc7 100644 --- a/test/lisp/minibuffer-tests.el +++ b/test/lisp/minibuffer-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; minibuffer-tests.el --- Tests for completion functions -*- lexical-binding: t; -*- | 1 | ;;; minibuffer-tests.el --- Tests for completion functions -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/misc-tests.el b/test/lisp/misc-tests.el index 5b1343148af..81ebe1a5869 100644 --- a/test/lisp/misc-tests.el +++ b/test/lisp/misc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; misc-tests.el --- Tests for misc.el -*- lexical-binding:t -*- | 1 | ;;; misc-tests.el --- Tests for misc.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
| @@ -25,6 +25,7 @@ | |||
| 25 | 25 | ||
| 26 | (require 'ert) | 26 | (require 'ert) |
| 27 | (require 'misc) | 27 | (require 'misc) |
| 28 | (require 'mule-util) | ||
| 28 | 29 | ||
| 29 | (defmacro with-misc-test (original result &rest body) | 30 | (defmacro with-misc-test (original result &rest body) |
| 30 | (declare (indent 2)) | 31 | (declare (indent 2)) |
| @@ -243,5 +244,94 @@ | |||
| 243 | (setq-default display-line-numbers dln)) | 244 | (setq-default display-line-numbers dln)) |
| 244 | (should (= w0 w1)))) | 245 | (should (= w0 w1)))) |
| 245 | 246 | ||
| 247 | ;; Exercise `truncate-string-pixelwise' with strings of the same | ||
| 248 | ;; characters of differing widths, with and without ellipses, in varying | ||
| 249 | ;; faces, and varying face heights and compare results to each | ||
| 250 | ;; character's measured width. | ||
| 251 | (ert-deftest misc-test-truncate-string-pixelwise () | ||
| 252 | ;; Test empty string without an explicit buffer. | ||
| 253 | (should (equal (truncate-string-pixelwise "" 123) "")) | ||
| 254 | ;; Test fast path without an explicit buffer. | ||
| 255 | (should (equal (truncate-string-pixelwise "123" 123) "123")) | ||
| 256 | (with-temp-buffer | ||
| 257 | ;; Test empty string with an explicit buffer. | ||
| 258 | (should (equal (truncate-string-pixelwise "" 123 (current-buffer)) "")) | ||
| 259 | ;; Test fast path with an explicit buffer. | ||
| 260 | (should (equal (truncate-string-pixelwise "123" 123 (current-buffer)) "123"))) | ||
| 261 | |||
| 262 | (dolist (c '(?W ?X ?y ?1)) | ||
| 263 | (dolist (ellipsis `(nil "..." ,(truncate-string-ellipsis))) | ||
| 264 | (dolist (face '(fixed-pitch variable-pitch)) | ||
| 265 | (dolist (height '(1.0 0.5 1.5)) | ||
| 266 | (with-temp-buffer | ||
| 267 | (setq-local face-remapping-alist `((,face . default))) | ||
| 268 | (face-remap-add-relative 'default :height height) | ||
| 269 | (let ((char-pixels (string-pixel-width | ||
| 270 | (make-string 1 c) (current-buffer)))) | ||
| 271 | (dotimes (i 20) | ||
| 272 | (setq i (1+ i)) | ||
| 273 | (should (eq i (length | ||
| 274 | (truncate-string-pixelwise | ||
| 275 | (make-string (* i 2) c) | ||
| 276 | (* i char-pixels) | ||
| 277 | (current-buffer) | ||
| 278 | ellipsis)))))))))))) | ||
| 279 | |||
| 280 | ;; Exercise `truncate-string-pixelwise' with varying unicode strings, in | ||
| 281 | ;; varying faces, and varying face heights and compare results to a | ||
| 282 | ;; naive `string-pixel-width' based string truncate function. | ||
| 283 | (ert-deftest misc-test-truncate-string-pixelwise-unicode () | ||
| 284 | :tags '(:expensive-test) | ||
| 285 | (skip-when noninteractive) | ||
| 286 | (let ((max-pixels 500) | ||
| 287 | (truncate-string-naive (lambda (string pixels buffer) | ||
| 288 | (while (and (length> string 0) | ||
| 289 | (> (string-pixel-width string buffer) pixels)) | ||
| 290 | (setq string (substring string 0 (1- (length string))))) | ||
| 291 | string)) | ||
| 292 | (strings (list | ||
| 293 | "foo bar baz foo bar baz foo bar baz foo bar baz foo bar baz foo bar baz" | ||
| 294 | (concat "話說天下大勢,分久必合,合久必分:周末七國分爭,并入於秦。" | ||
| 295 | "及秦滅之後,楚、漢分爭,又并入於漢。漢朝自高祖斬白蛇而起義," | ||
| 296 | "一統天下。後來光武中興,傳至獻帝,遂分為三國。推其致亂之由," | ||
| 297 | "殆始於桓、靈二帝。桓帝禁錮善類,崇信宦官。及桓帝崩,靈帝即位," | ||
| 298 | "大將軍竇武、太傅陳蕃,共相輔佐。時有宦官曹節等弄權,竇武、陳蕃謀誅之," | ||
| 299 | "作事不密,反為所害。中涓自此愈橫") | ||
| 300 | (concat "короче теперь если по русски написать все четко или все равно" | ||
| 301 | " короче теперь если по русски написать все четко или все равно" | ||
| 302 | " короче теперь если по русски написать все четко или все равно" | ||
| 303 | " короче теперь если по русски написать все четко или все равно") | ||
| 304 | "будет разрыв строки непонятно где🏁🚩🎌🏴🏳️ 🏳️ <200d>🌈🏳️ <200d>⚧️🏴<200d>☠️" | ||
| 305 | (apply #'concat (make-list 200 "\u0065\u0301 ")) ; composed é \u00E9 | ||
| 306 | (let ((woman-loves-man ; 👩❤️👨 | ||
| 307 | (concat "\N{WOMAN}" | ||
| 308 | "\N{ZERO WIDTH JOINER}" | ||
| 309 | "\N{HEAVY BLACK HEART}" | ||
| 310 | "\N{VARIATION SELECTOR-16}" | ||
| 311 | "\N{ZERO WIDTH JOINER}" | ||
| 312 | "\N{MAN}" | ||
| 313 | " "))) | ||
| 314 | (apply #'concat (make-list 200 woman-loves-man))) | ||
| 315 | (propertize (let ((varying-height-string | ||
| 316 | (mapconcat | ||
| 317 | #'identity | ||
| 318 | (list "AWi!" | ||
| 319 | (propertize "foo" 'face '(:height 2.5)) | ||
| 320 | (propertize "bar" 'face '(:height 0.5)) | ||
| 321 | (propertize "baz" 'face '(:height 1.0))) | ||
| 322 | " "))) | ||
| 323 | (apply #'concat (make-list 100 varying-height-string))) | ||
| 324 | 'face 'variable-pitch)))) | ||
| 325 | (dolist (face '(fixed-pitch variable-pitch)) | ||
| 326 | (dolist (height '(1.0 0.5 1.5)) | ||
| 327 | (with-temp-buffer | ||
| 328 | (setq-local face-remapping-alist `((,face . default))) | ||
| 329 | (face-remap-add-relative 'default :height height) | ||
| 330 | (dolist (string strings) | ||
| 331 | (should (eq (length (funcall truncate-string-naive | ||
| 332 | string max-pixels (current-buffer))) | ||
| 333 | (length (truncate-string-pixelwise | ||
| 334 | string max-pixels (current-buffer))))))))))) | ||
| 335 | |||
| 246 | (provide 'misc-tests) | 336 | (provide 'misc-tests) |
| 247 | ;;; misc-tests.el ends here | 337 | ;;; misc-tests.el ends here |
diff --git a/test/lisp/mouse-tests.el b/test/lisp/mouse-tests.el index 30881606754..8fc7317a981 100644 --- a/test/lisp/mouse-tests.el +++ b/test/lisp/mouse-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mouse-tests.el --- unit tests for mouse.el -*- lexical-binding: t; -*- | 1 | ;;; mouse-tests.el --- unit tests for mouse.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Philipp Stephani <phst@google.com> | 5 | ;; Author: Philipp Stephani <phst@google.com> |
| 6 | 6 | ||
diff --git a/test/lisp/mwheel-tests.el b/test/lisp/mwheel-tests.el index bc0372a5c78..f4ac839d11f 100644 --- a/test/lisp/mwheel-tests.el +++ b/test/lisp/mwheel-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mwheel-tests.el --- tests for mwheel.el -*- lexical-binding:t -*- | 1 | ;;; mwheel-tests.el --- tests for mwheel.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/net/browse-url-tests.el b/test/lisp/net/browse-url-tests.el index 45f324b46de..ac0360c63c5 100644 --- a/test/lisp/net/browse-url-tests.el +++ b/test/lisp/net/browse-url-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; browse-url-tests.el --- Tests for browse-url.el -*- lexical-binding: t; -*- | 1 | ;;; browse-url-tests.el --- Tests for browse-url.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/net/dbus-tests.el b/test/lisp/net/dbus-tests.el index e4a9502c5d1..f4dd9e3796b 100644 --- a/test/lisp/net/dbus-tests.el +++ b/test/lisp/net/dbus-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; dbus-tests.el --- Tests of D-Bus integration into Emacs -*- lexical-binding:t -*- | 1 | ;;; dbus-tests.el --- Tests of D-Bus integration into Emacs -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> | 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> |
| 6 | 6 | ||
| @@ -28,6 +28,10 @@ | |||
| 28 | (defvar dbus-debug) | 28 | (defvar dbus-debug) |
| 29 | (defvar dbus-message-type-signal) | 29 | (defvar dbus-message-type-signal) |
| 30 | (declare-function dbus-get-unique-name "dbusbind.c" (bus)) | 30 | (declare-function dbus-get-unique-name "dbusbind.c" (bus)) |
| 31 | (declare-function dbus-close-inhibitor-lock "dbusbind.c" (lock)) | ||
| 32 | (declare-function dbus-registered-inhibitor-locks "dbusbind.c" ()) | ||
| 33 | (declare-function dbus-make-inhibitor-lock "dbusbind.c" | ||
| 34 | (what why &optional block)) | ||
| 31 | 35 | ||
| 32 | (defconst dbus--test-enabled-session-bus | 36 | (defconst dbus--test-enabled-session-bus |
| 33 | (and (featurep 'dbusbind) | 37 | (and (featurep 'dbusbind) |
| @@ -48,6 +52,15 @@ | |||
| 48 | (defconst dbus--test-interface "org.gnu.Emacs.TestDBus.Interface" | 52 | (defconst dbus--test-interface "org.gnu.Emacs.TestDBus.Interface" |
| 49 | "Test interface.") | 53 | "Test interface.") |
| 50 | 54 | ||
| 55 | (defconst dbus--test-systemd-service "org.freedesktop.login1" | ||
| 56 | "Systemd service.") | ||
| 57 | |||
| 58 | (defconst dbus--test-systemd-path "/org/freedesktop/login1" | ||
| 59 | "Systemd object path.") | ||
| 60 | |||
| 61 | (defconst dbus--test-systemd-manager-interface "org.freedesktop.login1.Manager" | ||
| 62 | "Systemd Manager interface.") | ||
| 63 | |||
| 51 | (defun dbus--test-availability (bus) | 64 | (defun dbus--test-availability (bus) |
| 52 | "Test availability of D-Bus BUS." | 65 | "Test availability of D-Bus BUS." |
| 53 | (should (dbus-list-names bus)) | 66 | (should (dbus-list-names bus)) |
| @@ -607,6 +620,7 @@ This includes initialization and closing the bus." | |||
| 607 | (let ((method1 "Method1") | 620 | (let ((method1 "Method1") |
| 608 | (method2 "Method2") | 621 | (method2 "Method2") |
| 609 | (handler #'dbus--test-method-handler) | 622 | (handler #'dbus--test-method-handler) |
| 623 | dbus-debug ; There would be errors otherwise. | ||
| 610 | registered) | 624 | registered) |
| 611 | 625 | ||
| 612 | ;; The service is not registered yet. | 626 | ;; The service is not registered yet. |
| @@ -759,6 +773,7 @@ Returns the respective error." | |||
| 759 | (unwind-protect | 773 | (unwind-protect |
| 760 | (let ((method "Method") | 774 | (let ((method "Method") |
| 761 | (handler #'dbus--test-method-authorizable-handler) | 775 | (handler #'dbus--test-method-authorizable-handler) |
| 776 | dbus-debug ; There would be errors otherwise. | ||
| 762 | registered) | 777 | registered) |
| 763 | 778 | ||
| 764 | ;; Register. | 779 | ;; Register. |
| @@ -850,7 +865,7 @@ Returns the respective error." | |||
| 850 | (dbus-event-path-name dbus--test-event-expected)) | 865 | (dbus-event-path-name dbus--test-event-expected)) |
| 851 | (equal (dbus-event-member-name last-input-event) | 866 | (equal (dbus-event-member-name last-input-event) |
| 852 | (dbus-event-member-name dbus--test-event-expected)))) | 867 | (dbus-event-member-name dbus--test-event-expected)))) |
| 853 | (setq dbus--test-signal-received args))))) | 868 | (push args dbus--test-signal-received))))) |
| 854 | 869 | ||
| 855 | (defun dbus--test-timeout-handler (&rest _ignore) | 870 | (defun dbus--test-timeout-handler (&rest _ignore) |
| 856 | "Timeout handler, reporting a failed test." | 871 | "Timeout handler, reporting a failed test." |
| @@ -885,7 +900,7 @@ Returns the respective error." | |||
| 885 | (with-timeout (1 (dbus--test-timeout-handler)) | 900 | (with-timeout (1 (dbus--test-timeout-handler)) |
| 886 | (while (null dbus--test-signal-received) | 901 | (while (null dbus--test-signal-received) |
| 887 | (read-event nil nil 0.1))) | 902 | (read-event nil nil 0.1))) |
| 888 | (should (equal dbus--test-signal-received '("foo"))) | 903 | (should (equal dbus--test-signal-received '(("foo")))) |
| 889 | 904 | ||
| 890 | ;; Send two arguments, compound types. | 905 | ;; Send two arguments, compound types. |
| 891 | (setq dbus--test-signal-received nil) | 906 | (setq dbus--test-signal-received nil) |
| @@ -896,7 +911,7 @@ Returns the respective error." | |||
| 896 | (with-timeout (1 (dbus--test-timeout-handler)) | 911 | (with-timeout (1 (dbus--test-timeout-handler)) |
| 897 | (while (null dbus--test-signal-received) | 912 | (while (null dbus--test-signal-received) |
| 898 | (read-event nil nil 0.1))) | 913 | (read-event nil nil 0.1))) |
| 899 | (should (equal dbus--test-signal-received '((1 2 3) ("bar")))) | 914 | (should (equal dbus--test-signal-received '(((1 2 3) ("bar"))))) |
| 900 | 915 | ||
| 901 | ;; Unregister signal. | 916 | ;; Unregister signal. |
| 902 | (should (dbus-unregister-object registered)) | 917 | (should (dbus-unregister-object registered)) |
| @@ -905,6 +920,86 @@ Returns the respective error." | |||
| 905 | ;; Cleanup. | 920 | ;; Cleanup. |
| 906 | (dbus-unregister-service :session dbus--test-service))) | 921 | (dbus-unregister-service :session dbus--test-service))) |
| 907 | 922 | ||
| 923 | (defun dbus--test-signal-handler1 (&rest args) | ||
| 924 | "Signal handler for `dbus-test05-register-signal-several-handlers'." | ||
| 925 | ;; (message "dbus--test-signal-handler1 %S" last-input-event) | ||
| 926 | (dbus--test-signal-handler (cons "dbus--test-signal-handler1" args))) | ||
| 927 | |||
| 928 | (defun dbus--test-signal-handler2 (&rest args) | ||
| 929 | "Signal handler for `dbus-test05-register-signal-several-handlers'." | ||
| 930 | ;; (message "dbus--test-signal-handler2 %S" last-input-event) | ||
| 931 | (dbus--test-signal-handler (cons "dbus--test-signal-handler2" args))) | ||
| 932 | |||
| 933 | (ert-deftest dbus-test05-register-signal-several-handlers () | ||
| 934 | "Check signal registration for an own service. | ||
| 935 | It shall call several handlers per received signal." | ||
| 936 | (skip-unless dbus--test-enabled-session-bus) | ||
| 937 | (dbus-ignore-errors (dbus-unregister-service :session dbus--test-service)) | ||
| 938 | |||
| 939 | (unwind-protect | ||
| 940 | (let ((member "Member") | ||
| 941 | (handler1 #'dbus--test-signal-handler1) | ||
| 942 | (handler2 #'dbus--test-signal-handler2) | ||
| 943 | registered1 registered2) | ||
| 944 | |||
| 945 | ;; Register signal handlers. | ||
| 946 | (should | ||
| 947 | (equal | ||
| 948 | (setq | ||
| 949 | registered1 | ||
| 950 | (dbus-register-signal | ||
| 951 | :session dbus--test-service dbus--test-path | ||
| 952 | dbus--test-interface member handler1)) | ||
| 953 | `((:signal :session ,dbus--test-interface ,member) | ||
| 954 | (,dbus--test-service ,dbus--test-path ,handler1)))) | ||
| 955 | (should | ||
| 956 | (equal | ||
| 957 | (setq | ||
| 958 | registered2 | ||
| 959 | (dbus-register-signal | ||
| 960 | :session dbus--test-service dbus--test-path | ||
| 961 | dbus--test-interface member handler2)) | ||
| 962 | `((:signal :session ,dbus--test-interface ,member) | ||
| 963 | (,dbus--test-service ,dbus--test-path ,handler2)))) | ||
| 964 | |||
| 965 | ;; Send one argument, basic type. | ||
| 966 | (setq dbus--test-signal-received nil) | ||
| 967 | (dbus-send-signal | ||
| 968 | :session dbus--test-service dbus--test-path | ||
| 969 | dbus--test-interface member "foo") | ||
| 970 | (with-timeout (1 (dbus--test-timeout-handler)) | ||
| 971 | (while (length< dbus--test-signal-received 2) | ||
| 972 | (read-event nil nil 0.1))) | ||
| 973 | (should | ||
| 974 | (member | ||
| 975 | '(("dbus--test-signal-handler1" "foo")) dbus--test-signal-received)) | ||
| 976 | (should | ||
| 977 | (member | ||
| 978 | '(("dbus--test-signal-handler2" "foo")) dbus--test-signal-received)) | ||
| 979 | |||
| 980 | ;; Unregister one signal. | ||
| 981 | (should (dbus-unregister-object registered1)) | ||
| 982 | (should-not (dbus-unregister-object registered1)) | ||
| 983 | |||
| 984 | ;; Send one argument, basic type. | ||
| 985 | (setq dbus--test-signal-received nil) | ||
| 986 | (dbus-send-signal | ||
| 987 | :session dbus--test-service dbus--test-path | ||
| 988 | dbus--test-interface member "foo") | ||
| 989 | (with-timeout (1 (dbus--test-timeout-handler)) | ||
| 990 | (while (null dbus--test-signal-received) | ||
| 991 | (read-event nil nil 0.1))) | ||
| 992 | (should | ||
| 993 | (equal | ||
| 994 | dbus--test-signal-received '((("dbus--test-signal-handler2" "foo"))))) | ||
| 995 | |||
| 996 | ;; Unregister the other signal. | ||
| 997 | (should (dbus-unregister-object registered2)) | ||
| 998 | (should-not (dbus-unregister-object registered2))) | ||
| 999 | |||
| 1000 | ;; Cleanup. | ||
| 1001 | (dbus-unregister-service :session dbus--test-service))) | ||
| 1002 | |||
| 908 | (ert-deftest dbus-test05-register-signal-with-nils () | 1003 | (ert-deftest dbus-test05-register-signal-with-nils () |
| 909 | "Check signal registration for an own service. | 1004 | "Check signal registration for an own service. |
| 910 | SERVICE, PATH, INTERFACE and SIGNAL are ‘nil’. This is interpreted as a | 1005 | SERVICE, PATH, INTERFACE and SIGNAL are ‘nil’. This is interpreted as a |
| @@ -956,7 +1051,7 @@ wildcard for the respective argument." | |||
| 956 | (with-timeout (1 (dbus--test-timeout-handler)) | 1051 | (with-timeout (1 (dbus--test-timeout-handler)) |
| 957 | (while (null dbus--test-signal-received) | 1052 | (while (null dbus--test-signal-received) |
| 958 | (read-event nil nil 0.1))) | 1053 | (read-event nil nil 0.1))) |
| 959 | (should (equal dbus--test-signal-received '("foo"))) | 1054 | (should (equal dbus--test-signal-received '(("foo")))) |
| 960 | 1055 | ||
| 961 | ;; Unregister signal. | 1056 | ;; Unregister signal. |
| 962 | (should (dbus-unregister-object registered)) | 1057 | (should (dbus-unregister-object registered)) |
| @@ -1317,7 +1412,7 @@ wildcard for the respective argument." | |||
| 1317 | ;; "invalidated_properties" (an array of strings). | 1412 | ;; "invalidated_properties" (an array of strings). |
| 1318 | (should | 1413 | (should |
| 1319 | (equal dbus--test-signal-received | 1414 | (equal dbus--test-signal-received |
| 1320 | `(,dbus--test-interface ((,property ("foo"))) ()))) | 1415 | `((,dbus--test-interface ((,property ("foo"))) ())))) |
| 1321 | 1416 | ||
| 1322 | (should | 1417 | (should |
| 1323 | (equal | 1418 | (equal |
| @@ -1341,7 +1436,7 @@ wildcard for the respective argument." | |||
| 1341 | (should | 1436 | (should |
| 1342 | (equal | 1437 | (equal |
| 1343 | dbus--test-signal-received | 1438 | dbus--test-signal-received |
| 1344 | `(,dbus--test-interface ((,property ((1 2 3)))) ()))) | 1439 | `((,dbus--test-interface ((,property ((1 2 3)))) ())))) |
| 1345 | 1440 | ||
| 1346 | (should | 1441 | (should |
| 1347 | (equal | 1442 | (equal |
| @@ -2213,6 +2308,157 @@ The argument EXPECTED-ARGS is a list of expected arguments for the method." | |||
| 2213 | ;; Cleanup. | 2308 | ;; Cleanup. |
| 2214 | (dbus-unregister-service :session dbus--test-service))) | 2309 | (dbus-unregister-service :session dbus--test-service))) |
| 2215 | 2310 | ||
| 2311 | (ert-deftest dbus-test10-keep-fd () | ||
| 2312 | "Check D-Bus `:keep-fd' argument." | ||
| 2313 | :tags '(:expensive-test) | ||
| 2314 | (skip-unless dbus--test-enabled-system-bus) | ||
| 2315 | (skip-unless (dbus-ping :system dbus--test-systemd-service 1000)) | ||
| 2316 | |||
| 2317 | (let ((what "sleep") | ||
| 2318 | (who "Emacs test user") | ||
| 2319 | (why "Test delay") | ||
| 2320 | (mode "delay") | ||
| 2321 | (fd-directory (format "/proc/%d/fd" (emacs-pid))) | ||
| 2322 | lock1 lock2) | ||
| 2323 | ;; Create inhibitor lock. | ||
| 2324 | (setq lock1 | ||
| 2325 | (dbus-call-method | ||
| 2326 | :system dbus--test-systemd-service dbus--test-systemd-path | ||
| 2327 | dbus--test-systemd-manager-interface "Inhibit" | ||
| 2328 | what who why mode)) | ||
| 2329 | (should (natnump lock1)) | ||
| 2330 | ;; The lock is reported by systemd. | ||
| 2331 | (should | ||
| 2332 | (member | ||
| 2333 | (list what who why mode (user-uid) (emacs-pid)) | ||
| 2334 | (dbus-call-method | ||
| 2335 | :system dbus--test-systemd-service dbus--test-systemd-path | ||
| 2336 | dbus--test-systemd-manager-interface "ListInhibitors"))) | ||
| 2337 | ;; The lock is not registered internally. | ||
| 2338 | (should-not (assoc lock1 (dbus--registered-fds))) | ||
| 2339 | ;; There exist a file descriptor. | ||
| 2340 | (when (file-directory-p fd-directory) | ||
| 2341 | (should | ||
| 2342 | (file-symlink-p | ||
| 2343 | (expand-file-name (number-to-string lock1) fd-directory)))) | ||
| 2344 | |||
| 2345 | ;; Create another inhibitor lock. Keep the file descriptor. | ||
| 2346 | (setq lock2 | ||
| 2347 | (dbus-call-method | ||
| 2348 | :system dbus--test-systemd-service dbus--test-systemd-path | ||
| 2349 | dbus--test-systemd-manager-interface "Inhibit" :keep-fd | ||
| 2350 | what who why mode)) | ||
| 2351 | (should (natnump lock2)) | ||
| 2352 | (should-not (= lock1 lock2)) | ||
| 2353 | ;; The lock is reported by systemd. | ||
| 2354 | (should | ||
| 2355 | (member | ||
| 2356 | (list what who why mode (user-uid) (emacs-pid)) | ||
| 2357 | (dbus-call-method | ||
| 2358 | :system dbus--test-systemd-service dbus--test-systemd-path | ||
| 2359 | dbus--test-systemd-manager-interface "ListInhibitors"))) | ||
| 2360 | ;; The lock is registered internally. | ||
| 2361 | (should | ||
| 2362 | (member | ||
| 2363 | (cons lock2 dbus--test-systemd-path) | ||
| 2364 | (dbus--registered-fds))) | ||
| 2365 | ;; There exist a file descriptor. | ||
| 2366 | (when (file-directory-p fd-directory) | ||
| 2367 | (should | ||
| 2368 | (file-symlink-p | ||
| 2369 | (expand-file-name (number-to-string lock2) fd-directory)))) | ||
| 2370 | |||
| 2371 | ;; Create another inhibitor lock via | ||
| 2372 | ;; `dbus-call-method-asynchronously'. Keep the file descriptor. | ||
| 2373 | (setq lock1 nil) | ||
| 2374 | (dbus-call-method-asynchronously | ||
| 2375 | :system dbus--test-systemd-service dbus--test-systemd-path | ||
| 2376 | dbus--test-systemd-manager-interface "Inhibit" | ||
| 2377 | (lambda (lock) (setq lock1 lock)) :keep-fd | ||
| 2378 | what who why mode) | ||
| 2379 | (with-timeout (1 (dbus--test-timeout-handler)) | ||
| 2380 | (while (null lock1) (read-event nil nil 0.1))) | ||
| 2381 | (should (natnump lock1)) | ||
| 2382 | (should-not (= lock1 lock2)) | ||
| 2383 | ;; The lock is registered internally. | ||
| 2384 | (should | ||
| 2385 | (member | ||
| 2386 | (cons lock1 dbus--test-systemd-path) | ||
| 2387 | (dbus--registered-fds))) | ||
| 2388 | ;; There exist a file descriptor. | ||
| 2389 | (when (file-directory-p fd-directory) | ||
| 2390 | (should | ||
| 2391 | (file-symlink-p | ||
| 2392 | (expand-file-name (number-to-string lock1) fd-directory)))) | ||
| 2393 | |||
| 2394 | ;; It is not possible to modify registered inhibitor locks on Lisp level. | ||
| 2395 | (setcar (assoc lock1 (dbus--registered-fds)) 'malicious) | ||
| 2396 | (should (assoc lock1 (dbus--registered-fds))) | ||
| 2397 | (should-not (assoc 'malicious (dbus--registered-fds))) | ||
| 2398 | |||
| 2399 | ;; Close the inhibitor locks. | ||
| 2400 | (should (dbus--fd-close lock1)) | ||
| 2401 | (should (dbus--fd-close lock2)) | ||
| 2402 | ;; The internal registration has gone. | ||
| 2403 | (should-not | ||
| 2404 | (member | ||
| 2405 | (cons lock1 dbus--test-systemd-path) | ||
| 2406 | (dbus--registered-fds))) | ||
| 2407 | (should-not | ||
| 2408 | (member | ||
| 2409 | (cons lock2 dbus--test-systemd-path) | ||
| 2410 | (dbus--registered-fds))) | ||
| 2411 | ;; The file descriptors have been deleted. | ||
| 2412 | (when (file-directory-p fd-directory) | ||
| 2413 | (should-not | ||
| 2414 | (file-exists-p (expand-file-name (number-to-string lock1) fd-directory))) | ||
| 2415 | (should-not | ||
| 2416 | (file-exists-p (expand-file-name (number-to-string lock2) fd-directory)))) | ||
| 2417 | |||
| 2418 | ;; Closing them again is a noop. | ||
| 2419 | (should-not (dbus--fd-close lock1)) | ||
| 2420 | (should-not (dbus--fd-close lock2)))) | ||
| 2421 | |||
| 2422 | (ert-deftest dbus-test10-open-close-fd () | ||
| 2423 | "Check D-Bus open/close a file descriptor." | ||
| 2424 | :tags '(:expensive-test) | ||
| 2425 | (skip-unless dbus--test-enabled-system-bus) | ||
| 2426 | (skip-unless (dbus-ping :system dbus--test-systemd-service 1000)) | ||
| 2427 | |||
| 2428 | (ert-with-temp-file tmpfile | ||
| 2429 | (let ((fd-directory (format "/proc/%d/fd" (emacs-pid))) | ||
| 2430 | fd) | ||
| 2431 | ;; Create file descriptor. | ||
| 2432 | (setq fd (dbus--fd-open tmpfile)) | ||
| 2433 | (should (natnump fd)) | ||
| 2434 | ;; The file descriptor is registered internally. | ||
| 2435 | (should (member (cons fd tmpfile) (dbus--registered-fds))) | ||
| 2436 | ;; There exist a file descriptor file. | ||
| 2437 | (when (file-directory-p fd-directory) | ||
| 2438 | (should | ||
| 2439 | (file-symlink-p (expand-file-name (number-to-string fd) fd-directory))) | ||
| 2440 | (should | ||
| 2441 | (string-equal | ||
| 2442 | (file-truename (expand-file-name (number-to-string fd) fd-directory)) | ||
| 2443 | tmpfile))) | ||
| 2444 | |||
| 2445 | ;; It is not possible to modify registered file descriptors on Lisp level. | ||
| 2446 | (setcar (assoc fd (dbus--registered-fds)) 'malicious) | ||
| 2447 | (should (assoc fd (dbus--registered-fds))) | ||
| 2448 | (should-not (assoc 'malicious (dbus--registered-fds))) | ||
| 2449 | |||
| 2450 | ;; Close the file descriptor. | ||
| 2451 | (should (dbus--fd-close fd)) | ||
| 2452 | ;; The internal registration has gone. | ||
| 2453 | (should-not (member (cons fd tmpfile) (dbus--registered-fds))) | ||
| 2454 | ;; The file descriptor file has been deleted. | ||
| 2455 | (when (file-directory-p fd-directory) | ||
| 2456 | (should-not | ||
| 2457 | (file-exists-p (expand-file-name (number-to-string fd) fd-directory)))) | ||
| 2458 | |||
| 2459 | ;; Closing it again is a noop. | ||
| 2460 | (should-not (dbus--fd-close fd))))) | ||
| 2461 | |||
| 2216 | (defun dbus-test-all (&optional interactive) | 2462 | (defun dbus-test-all (&optional interactive) |
| 2217 | "Run all tests for \\[dbus]." | 2463 | "Run all tests for \\[dbus]." |
| 2218 | (interactive "p") | 2464 | (interactive "p") |
diff --git a/test/lisp/net/dig-tests.el b/test/lisp/net/dig-tests.el index dc9f5acc0a4..006c1ae6c3f 100644 --- a/test/lisp/net/dig-tests.el +++ b/test/lisp/net/dig-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; dig-tests.el --- Tests for dig.el -*- lexical-binding:t -*- | 1 | ;;; dig-tests.el --- Tests for dig.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/net/eudc-tests.el b/test/lisp/net/eudc-tests.el index 41fd67166e1..5439e4c3b89 100644 --- a/test/lisp/net/eudc-tests.el +++ b/test/lisp/net/eudc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; eudc-tests.el --- tests for eudc.el -*- lexical-binding: t -*- | 1 | ;;; eudc-tests.el --- tests for eudc.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/net/eww-tests.el b/test/lisp/net/eww-tests.el index 61a371bc339..3cac82db25a 100644 --- a/test/lisp/net/eww-tests.el +++ b/test/lisp/net/eww-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; eww-tests.el --- tests for eww.el -*- lexical-binding: t; -*- | 1 | ;;; eww-tests.el --- tests for eww.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/net/gnutls-tests.el b/test/lisp/net/gnutls-tests.el index 12be4c41c36..aac23726bf7 100644 --- a/test/lisp/net/gnutls-tests.el +++ b/test/lisp/net/gnutls-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; gnutls-tests.el --- Test suite for gnutls.el -*- lexical-binding:t -*- | 1 | ;;; gnutls-tests.el --- Test suite for gnutls.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Ted Zlatanov <tzz@lifelogs.com> | 5 | ;; Author: Ted Zlatanov <tzz@lifelogs.com> |
| 6 | 6 | ||
diff --git a/test/lisp/net/hmac-md5-tests.el b/test/lisp/net/hmac-md5-tests.el index 2f9de6158a3..418503b2296 100644 --- a/test/lisp/net/hmac-md5-tests.el +++ b/test/lisp/net/hmac-md5-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; hmac-md5-tests.el --- Tests for hmac-md5.el -*- lexical-binding:t -*- | 1 | ;;; hmac-md5-tests.el --- Tests for hmac-md5.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/net/mailcap-tests.el b/test/lisp/net/mailcap-tests.el index 5d1b6cbeac4..7dea0f06c16 100644 --- a/test/lisp/net/mailcap-tests.el +++ b/test/lisp/net/mailcap-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mailcap-tests.el --- tests for mailcap.el -*- lexical-binding: t -*- | 1 | ;;; mailcap-tests.el --- tests for mailcap.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Mark Oteiza <mvoteiza@udel.edu> | 5 | ;; Author: Mark Oteiza <mvoteiza@udel.edu> |
| 6 | 6 | ||
diff --git a/test/lisp/net/network-stream-tests.el b/test/lisp/net/network-stream-tests.el index 8a4e53287bf..4fae210ae2f 100644 --- a/test/lisp/net/network-stream-tests.el +++ b/test/lisp/net/network-stream-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; network-stream-tests.el --- tests for network processes -*- lexical-binding: t; -*- | 1 | ;;; network-stream-tests.el --- tests for network processes -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> | 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> |
| 6 | 6 | ||
diff --git a/test/lisp/net/newsticker-tests.el b/test/lisp/net/newsticker-tests.el index 5b9807615a7..0baba02dc51 100644 --- a/test/lisp/net/newsticker-tests.el +++ b/test/lisp/net/newsticker-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; newsticker-tests.el --- Test suite for newsticker. -*- lexical-binding:t -*- | 1 | ;;; newsticker-tests.el --- Test suite for newsticker. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2003-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2003-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Ulf Jasper <ulf.jasper@web.de> | 5 | ;; Author: Ulf Jasper <ulf.jasper@web.de> |
| 6 | ;; Keywords: News, RSS, Atom | 6 | ;; Keywords: News, RSS, Atom |
diff --git a/test/lisp/net/nsm-tests.el b/test/lisp/net/nsm-tests.el index e945d66c040..ae3593c553a 100644 --- a/test/lisp/net/nsm-tests.el +++ b/test/lisp/net/nsm-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; nsm-tests.el --- tests for network security manager -*- lexical-binding: t; -*- | 1 | ;;; nsm-tests.el --- tests for network security manager -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Robert Pluim <rpluim@gmail.com> | 5 | ;; Author: Robert Pluim <rpluim@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/net/ntlm-tests.el b/test/lisp/net/ntlm-tests.el index 61e6e497886..a15f482395c 100644 --- a/test/lisp/net/ntlm-tests.el +++ b/test/lisp/net/ntlm-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ntlm-tests.el --- tests for ntlm.el -*- lexical-binding: t -*- | 1 | ;;; ntlm-tests.el --- tests for ntlm.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/net/puny-tests.el b/test/lisp/net/puny-tests.el index edde60ab5bc..ea026cf0fb0 100644 --- a/test/lisp/net/puny-tests.el +++ b/test/lisp/net/puny-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; puny-tests.el --- tests for net/puny.el -*- coding: utf-8; lexical-binding:t -*- | 1 | ;;; puny-tests.el --- tests for net/puny.el -*- coding: utf-8; lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/net/rcirc-tests.el b/test/lisp/net/rcirc-tests.el index dd040386528..c91c4d77d83 100644 --- a/test/lisp/net/rcirc-tests.el +++ b/test/lisp/net/rcirc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; rcirc-tests.el --- Tests for rcirc -*- lexical-binding:t -*- | 1 | ;;; rcirc-tests.el --- Tests for rcirc -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | ;; | 6 | ;; |
diff --git a/test/lisp/net/rfc2104-tests.el b/test/lisp/net/rfc2104-tests.el index 501648370bb..2cc36a69d92 100644 --- a/test/lisp/net/rfc2104-tests.el +++ b/test/lisp/net/rfc2104-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; rfc2104-tests.el --- Tests of RFC2104 hashes -*- lexical-binding:t -*- | 1 | ;;; rfc2104-tests.el --- Tests of RFC2104 hashes -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> | 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> |
| 6 | 6 | ||
diff --git a/test/lisp/net/sasl-cram-tests.el b/test/lisp/net/sasl-cram-tests.el index d021bf240f4..5f769ed5bb6 100644 --- a/test/lisp/net/sasl-cram-tests.el +++ b/test/lisp/net/sasl-cram-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; sasl-cram-tests.el --- tests for sasl-cram.el -*- lexical-binding: t; -*- | 1 | ;;; sasl-cram-tests.el --- tests for sasl-cram.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/net/sasl-scram-rfc-tests.el b/test/lisp/net/sasl-scram-rfc-tests.el index ff127960cd4..22fa6836a2e 100644 --- a/test/lisp/net/sasl-scram-rfc-tests.el +++ b/test/lisp/net/sasl-scram-rfc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; sasl-scram-rfc-tests.el --- tests for SCRAM -*- lexical-binding: t; -*- | 1 | ;;; sasl-scram-rfc-tests.el --- tests for SCRAM -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Magnus Henoch <magnus.henoch@gmail.com> | 5 | ;; Author: Magnus Henoch <magnus.henoch@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/net/sasl-tests.el b/test/lisp/net/sasl-tests.el index 5cb99f53039..d844fafa9c2 100644 --- a/test/lisp/net/sasl-tests.el +++ b/test/lisp/net/sasl-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; sasl-tests.el --- tests for sasl.el -*- lexical-binding: t; -*- | 1 | ;;; sasl-tests.el --- tests for sasl.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/net/secrets-tests.el b/test/lisp/net/secrets-tests.el index 8b1ddd21e76..33a7b553af7 100644 --- a/test/lisp/net/secrets-tests.el +++ b/test/lisp/net/secrets-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; secrets-tests.el --- Tests of Secret Service API -*- lexical-binding: t -*- | 1 | ;;; secrets-tests.el --- Tests of Secret Service API -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> | 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> |
| 6 | 6 | ||
diff --git a/test/lisp/net/shr-tests.el b/test/lisp/net/shr-tests.el index a931d07a163..10682cf84ab 100644 --- a/test/lisp/net/shr-tests.el +++ b/test/lisp/net/shr-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; shr-tests.el --- tests for shr.el -*- lexical-binding: t; -*- | 1 | ;;; shr-tests.el --- tests for shr.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> | 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> |
| 6 | 6 | ||
diff --git a/test/lisp/net/socks-tests.el b/test/lisp/net/socks-tests.el index 7531ff70846..25adafab998 100644 --- a/test/lisp/net/socks-tests.el +++ b/test/lisp/net/socks-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; socks-tests.el --- tests for SOCKS -*- coding: utf-8; lexical-binding: t; -*- | 1 | ;;; socks-tests.el --- tests for SOCKS -*- coding: utf-8; lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/net/tramp-archive-tests.el b/test/lisp/net/tramp-archive-tests.el index 5e9ea756b93..f3bfaac005c 100644 --- a/test/lisp/net/tramp-archive-tests.el +++ b/test/lisp/net/tramp-archive-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; tramp-archive-tests.el --- Tests of file archive access -*- lexical-binding:t -*- | 1 | ;;; tramp-archive-tests.el --- Tests of file archive access -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> | 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> |
| 6 | 6 | ||
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el index 708615fc9f6..bbfe15d2f59 100644 --- a/test/lisp/net/tramp-tests.el +++ b/test/lisp/net/tramp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; tramp-tests.el --- Tests of remote file access -*- lexical-binding:t -*- | 1 | ;;; tramp-tests.el --- Tests of remote file access -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> | 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> |
| 6 | 6 | ||
| @@ -2145,6 +2145,7 @@ being the result.") | |||
| 2145 | 2145 | ||
| 2146 | (ert-deftest tramp-test03-file-name-defaults () | 2146 | (ert-deftest tramp-test03-file-name-defaults () |
| 2147 | "Check default values for some methods." | 2147 | "Check default values for some methods." |
| 2148 | :tags '(:expensive-test) | ||
| 2148 | (skip-unless (eq tramp-syntax 'default)) | 2149 | (skip-unless (eq tramp-syntax 'default)) |
| 2149 | 2150 | ||
| 2150 | ;; Default values in tramp-adb.el. | 2151 | ;; Default values in tramp-adb.el. |
| @@ -2158,9 +2159,8 @@ being the result.") | |||
| 2158 | (string-equal (file-remote-p (format "/-:%s@:" u) 'method) "ftp")))) | 2159 | (string-equal (file-remote-p (format "/-:%s@:" u) 'method) "ftp")))) |
| 2159 | ;; Default values in tramp-sh.el and tramp-sudoedit.el. | 2160 | ;; Default values in tramp-sh.el and tramp-sudoedit.el. |
| 2160 | (when (assoc "su" tramp-methods) | 2161 | (when (assoc "su" tramp-methods) |
| 2161 | (dolist | 2162 | ;; "::1" is used as "[::1]" in remote file names. |
| 2162 | (h `("127.0.0.1" "[::1]" "localhost" "localhost4" "localhost6" | 2163 | (dolist (h (cons "[::1]" (delete "::1" tramp-local-host-names))) |
| 2163 | "ip6-localhost" "ip6-loopback" ,(system-name))) | ||
| 2164 | (should | 2164 | (should |
| 2165 | (string-equal (file-remote-p (format "/-:root@%s:" h) 'method) "su")))) | 2165 | (string-equal (file-remote-p (format "/-:root@%s:" h) 'method) "su")))) |
| 2166 | (dolist (m '("su" "sudo" "ksu" "doas" "sudoedit")) | 2166 | (dolist (m '("su" "sudo" "ksu" "doas" "sudoedit")) |
| @@ -2802,6 +2802,7 @@ This checks also `file-name-as-directory', `file-name-directory', | |||
| 2802 | ;; The following test is inspired by Bug#35497. | 2802 | ;; The following test is inspired by Bug#35497. |
| 2803 | (ert-deftest tramp-test10-write-region-file-precious-flag () | 2803 | (ert-deftest tramp-test10-write-region-file-precious-flag () |
| 2804 | "Check that `file-precious-flag' is respected with Tramp in use." | 2804 | "Check that `file-precious-flag' is respected with Tramp in use." |
| 2805 | :tags '(:expensive-test) | ||
| 2805 | (skip-unless (tramp--test-enabled)) | 2806 | (skip-unless (tramp--test-enabled)) |
| 2806 | (skip-unless (tramp--test-sh-p)) | 2807 | (skip-unless (tramp--test-sh-p)) |
| 2807 | 2808 | ||
| @@ -2835,6 +2836,7 @@ This checks also `file-name-as-directory', `file-name-directory', | |||
| 2835 | ;; The following test is inspired by Bug#55166. | 2836 | ;; The following test is inspired by Bug#55166. |
| 2836 | (ert-deftest tramp-test10-write-region-other-file-name-handler () | 2837 | (ert-deftest tramp-test10-write-region-other-file-name-handler () |
| 2837 | "Check that another file name handler in VISIT is acknowledged." | 2838 | "Check that another file name handler in VISIT is acknowledged." |
| 2839 | :tags '(:expensive-test) | ||
| 2838 | (skip-unless (tramp--test-enabled)) | 2840 | (skip-unless (tramp--test-enabled)) |
| 2839 | (skip-unless (not (tramp--test-ange-ftp-p))) | 2841 | (skip-unless (not (tramp--test-ange-ftp-p))) |
| 2840 | (skip-unless (executable-find "gzip")) | 2842 | (skip-unless (executable-find "gzip")) |
| @@ -3445,6 +3447,7 @@ This tests also `file-directory-p' and `file-accessible-directory-p'." | |||
| 3445 | ;; advice for older Emacs versions, so we check that this has been fixed. | 3447 | ;; advice for older Emacs versions, so we check that this has been fixed. |
| 3446 | (ert-deftest tramp-test16-file-expand-wildcards () | 3448 | (ert-deftest tramp-test16-file-expand-wildcards () |
| 3447 | "Check `file-expand-wildcards'." | 3449 | "Check `file-expand-wildcards'." |
| 3450 | :tags '(:expensive-test) | ||
| 3448 | (skip-unless (tramp--test-enabled)) | 3451 | (skip-unless (tramp--test-enabled)) |
| 3449 | 3452 | ||
| 3450 | (dolist (quoted (if (tramp--test-expensive-test-p) '(nil t) '(nil))) | 3453 | (dolist (quoted (if (tramp--test-expensive-test-p) '(nil t) '(nil))) |
| @@ -3592,6 +3595,7 @@ This tests also `file-directory-p' and `file-accessible-directory-p'." | |||
| 3592 | 3595 | ||
| 3593 | (ert-deftest tramp-test17-dired-with-wildcards () | 3596 | (ert-deftest tramp-test17-dired-with-wildcards () |
| 3594 | "Check `dired' with wildcards." | 3597 | "Check `dired' with wildcards." |
| 3598 | :tags '(:expensive-test) | ||
| 3595 | ;; `separate' syntax and IPv6 host name syntax do not work. | 3599 | ;; `separate' syntax and IPv6 host name syntax do not work. |
| 3596 | (skip-unless | 3600 | (skip-unless |
| 3597 | (not (string-match-p (rx "[") ert-remote-temporary-file-directory))) | 3601 | (not (string-match-p (rx "[") ert-remote-temporary-file-directory))) |
| @@ -3709,6 +3713,7 @@ This tests also `file-directory-p' and `file-accessible-directory-p'." | |||
| 3709 | ;; The following test is inspired by Bug#45691. | 3713 | ;; The following test is inspired by Bug#45691. |
| 3710 | (ert-deftest tramp-test17-insert-directory-one-file () | 3714 | (ert-deftest tramp-test17-insert-directory-one-file () |
| 3711 | "Check `insert-directory' inside directory listing." | 3715 | "Check `insert-directory' inside directory listing." |
| 3716 | :tags '(:expensive-test) | ||
| 3712 | (skip-unless (tramp--test-enabled)) | 3717 | (skip-unless (tramp--test-enabled)) |
| 3713 | ;; Relative file names in dired are not supported in tramp-crypt.el. | 3718 | ;; Relative file names in dired are not supported in tramp-crypt.el. |
| 3714 | (skip-unless (not (tramp--test-crypt-p))) | 3719 | (skip-unless (not (tramp--test-crypt-p))) |
| @@ -3883,7 +3888,7 @@ This tests also `access-file', `file-readable-p', | |||
| 3883 | (delete-file tmp-name2) | 3888 | (delete-file tmp-name2) |
| 3884 | 3889 | ||
| 3885 | ;; A non-existent or cyclic link target makes the file | 3890 | ;; A non-existent or cyclic link target makes the file |
| 3886 | ;; unaccessible. | 3891 | ;; inaccessible. |
| 3887 | (dolist (target | 3892 | (dolist (target |
| 3888 | `("does-not-exist" ,(file-name-nondirectory tmp-name2))) | 3893 | `("does-not-exist" ,(file-name-nondirectory tmp-name2))) |
| 3889 | (make-symbolic-link target tmp-name2) | 3894 | (make-symbolic-link target tmp-name2) |
| @@ -5055,7 +5060,7 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'." | |||
| 5055 | (dolist | 5060 | (dolist |
| 5056 | (elt | 5061 | (elt |
| 5057 | (append | 5062 | (append |
| 5058 | (mapcar #'intern (all-completions "tramp-" obarray #'functionp)) | 5063 | (apropos-internal (rx bos "tramp-") #'functionp) |
| 5059 | '(completion-file-name-table read-file-name))) | 5064 | '(completion-file-name-table read-file-name))) |
| 5060 | (unless (get elt 'tramp-suppress-trace) | 5065 | (unless (get elt 'tramp-suppress-trace) |
| 5061 | (trace-function-background elt)))) | 5066 | (trace-function-background elt)))) |
| @@ -5562,9 +5567,12 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'." | |||
| 5562 | (delete-file tmp-name))) | 5567 | (delete-file tmp-name))) |
| 5563 | 5568 | ||
| 5564 | ;; Process filter. | 5569 | ;; Process filter. |
| 5570 | ;; The "smb" method does not support the "cat" stdin | ||
| 5571 | ;; redirection. The "adb" method does not support late process | ||
| 5572 | ;; filter setting for the "echo" command. | ||
| 5565 | (unwind-protect | 5573 | (unwind-protect |
| 5566 | (with-temp-buffer | 5574 | (with-temp-buffer |
| 5567 | (setq command '("echo" "foo") | 5575 | (setq command (if (tramp--test-smb-p) '("echo" "foo") '("cat")) |
| 5568 | proc | 5576 | proc |
| 5569 | (apply #'start-file-process "test3" (current-buffer) command)) | 5577 | (apply #'start-file-process "test3" (current-buffer) command)) |
| 5570 | (should (processp proc)) | 5578 | (should (processp proc)) |
| @@ -5576,7 +5584,11 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'." | |||
| 5576 | (with-current-buffer | 5584 | (with-current-buffer |
| 5577 | (process-buffer p) | 5585 | (process-buffer p) |
| 5578 | (insert | 5586 | (insert |
| 5579 | (replace-regexp-in-string (rx bol "foo" eol) "foobar" s))))) | 5587 | (replace-regexp-in-string |
| 5588 | (rx bol "foo" (? "\r") eol) "foobar" s))))) | ||
| 5589 | (unless (tramp--test-smb-p) | ||
| 5590 | (process-send-string proc "foo\n") | ||
| 5591 | (process-send-eof proc)) | ||
| 5580 | ;; Read output. | 5592 | ;; Read output. |
| 5581 | (with-timeout (10 (tramp--test-timeout-handler)) | 5593 | (with-timeout (10 (tramp--test-timeout-handler)) |
| 5582 | (while (not (string-match-p "foobar" (buffer-string))) | 5594 | (while (not (string-match-p "foobar" (buffer-string))) |
| @@ -5780,7 +5792,7 @@ If UNSTABLE is non-nil, the test is tagged as `:unstable'." | |||
| 5780 | (process-buffer p) | 5792 | (process-buffer p) |
| 5781 | (insert | 5793 | (insert |
| 5782 | (replace-regexp-in-string | 5794 | (replace-regexp-in-string |
| 5783 | (rx bol "foo" eol) "foobar" s)))) | 5795 | (rx bol "foo" (? "\r") eol) "foobar" s)))) |
| 5784 | :file-handler t)) | 5796 | :file-handler t)) |
| 5785 | (should (processp proc)) | 5797 | (should (processp proc)) |
| 5786 | ;(should (equal (process-status proc) 'run)) | 5798 | ;(should (equal (process-status proc) 'run)) |
| @@ -6492,6 +6504,7 @@ INPUT, if non-nil, is a string sent to the process." | |||
| 6492 | ;; This test is inspired by Bug#27009. | 6504 | ;; This test is inspired by Bug#27009. |
| 6493 | (ert-deftest tramp-test33-environment-variables-and-port-numbers () | 6505 | (ert-deftest tramp-test33-environment-variables-and-port-numbers () |
| 6494 | "Check that two connections with separate ports are different." | 6506 | "Check that two connections with separate ports are different." |
| 6507 | :tags '(:expensive-test) | ||
| 6495 | (skip-unless (tramp--test-enabled)) | 6508 | (skip-unless (tramp--test-enabled)) |
| 6496 | ;; We test it only for the mock-up connection; otherwise there might | 6509 | ;; We test it only for the mock-up connection; otherwise there might |
| 6497 | ;; be problems with the used ports. | 6510 | ;; be problems with the used ports. |
| @@ -6701,6 +6714,7 @@ INPUT, if non-nil, is a string sent to the process." | |||
| 6701 | ;; This test is inspired by Bug#33781. | 6714 | ;; This test is inspired by Bug#33781. |
| 6702 | (ert-deftest tramp-test35-remote-path () | 6715 | (ert-deftest tramp-test35-remote-path () |
| 6703 | "Check loooong `tramp-remote-path'." | 6716 | "Check loooong `tramp-remote-path'." |
| 6717 | :tags '(:expensive-test) | ||
| 6704 | (skip-unless (tramp--test-enabled)) | 6718 | (skip-unless (tramp--test-enabled)) |
| 6705 | (skip-unless (tramp--test-sh-p)) | 6719 | (skip-unless (tramp--test-sh-p)) |
| 6706 | (skip-unless (not (tramp--test-crypt-p))) | 6720 | (skip-unless (not (tramp--test-crypt-p))) |
| @@ -7128,6 +7142,7 @@ INPUT, if non-nil, is a string sent to the process." | |||
| 7128 | 7142 | ||
| 7129 | (ert-deftest tramp-test39-make-lock-file-name () | 7143 | (ert-deftest tramp-test39-make-lock-file-name () |
| 7130 | "Check `make-lock-file-name', `lock-file', `unlock-file' and `file-locked-p'." | 7144 | "Check `make-lock-file-name', `lock-file', `unlock-file' and `file-locked-p'." |
| 7145 | :tags '(:expensive-test) | ||
| 7131 | (skip-unless (tramp--test-enabled)) | 7146 | (skip-unless (tramp--test-enabled)) |
| 7132 | (skip-unless (not (tramp--test-ange-ftp-p))) | 7147 | (skip-unless (not (tramp--test-ange-ftp-p))) |
| 7133 | 7148 | ||
| @@ -7289,6 +7304,7 @@ INPUT, if non-nil, is a string sent to the process." | |||
| 7289 | 7304 | ||
| 7290 | (ert-deftest tramp-test39-detect-external-change () | 7305 | (ert-deftest tramp-test39-detect-external-change () |
| 7291 | "Check that an external file modification is reported." | 7306 | "Check that an external file modification is reported." |
| 7307 | :tags '(:expensive-test) | ||
| 7292 | (skip-unless (tramp--test-enabled)) | 7308 | (skip-unless (tramp--test-enabled)) |
| 7293 | (skip-unless (not (tramp--test-ange-ftp-p))) | 7309 | (skip-unless (not (tramp--test-ange-ftp-p))) |
| 7294 | 7310 | ||
| @@ -7929,6 +7945,7 @@ This requires restrictions of file name syntax." | |||
| 7929 | 7945 | ||
| 7930 | (ert-deftest tramp-test42-utf8 () | 7946 | (ert-deftest tramp-test42-utf8 () |
| 7931 | "Check UTF8 encoding in file names and file contents." | 7947 | "Check UTF8 encoding in file names and file contents." |
| 7948 | :tags '(:expensive-test) | ||
| 7932 | (skip-unless (tramp--test-enabled)) | 7949 | (skip-unless (tramp--test-enabled)) |
| 7933 | (skip-unless (not (tramp--test-container-p))) | 7950 | (skip-unless (not (tramp--test-container-p))) |
| 7934 | (skip-unless (not (tramp--test-rsync-p))) | 7951 | (skip-unless (not (tramp--test-rsync-p))) |
| @@ -7999,6 +8016,7 @@ This requires restrictions of file name syntax." | |||
| 7999 | 8016 | ||
| 8000 | (ert-deftest tramp-test43-file-system-info () | 8017 | (ert-deftest tramp-test43-file-system-info () |
| 8001 | "Check that `file-system-info' returns proper values." | 8018 | "Check that `file-system-info' returns proper values." |
| 8019 | :tags '(:expensive-test) | ||
| 8002 | (skip-unless (tramp--test-enabled)) | 8020 | (skip-unless (tramp--test-enabled)) |
| 8003 | 8021 | ||
| 8004 | (when-let* ((fsi (file-system-info ert-remote-temporary-file-directory))) | 8022 | (when-let* ((fsi (file-system-info ert-remote-temporary-file-directory))) |
| @@ -8012,6 +8030,7 @@ This requires restrictions of file name syntax." | |||
| 8012 | "Check results of user/group functions. | 8030 | "Check results of user/group functions. |
| 8013 | `file-user-uid', `file-group-gid', and `tramp-get-remote-*' | 8031 | `file-user-uid', `file-group-gid', and `tramp-get-remote-*' |
| 8014 | should all return proper values." | 8032 | should all return proper values." |
| 8033 | :tags '(:expensive-test) | ||
| 8015 | (skip-unless (tramp--test-enabled)) | 8034 | (skip-unless (tramp--test-enabled)) |
| 8016 | 8035 | ||
| 8017 | (let ((default-directory ert-remote-temporary-file-directory)) | 8036 | (let ((default-directory ert-remote-temporary-file-directory)) |
| @@ -8240,6 +8259,42 @@ process sentinels. They shall not disturb each other." | |||
| 8240 | ;; (tramp--test-deftest-direct-async-process tramp-test45-asynchronous-requests | 8259 | ;; (tramp--test-deftest-direct-async-process tramp-test45-asynchronous-requests |
| 8241 | ;; 'unstable) | 8260 | ;; 'unstable) |
| 8242 | 8261 | ||
| 8262 | ;; This test is inspired by Bug#49954 and Bug#60534. | ||
| 8263 | (ert-deftest tramp-test45-force-remote-file-error () | ||
| 8264 | "Force `remote-file-error'." | ||
| 8265 | :tags '(:expensive-test :tramp-asynchronous-processes :unstable) | ||
| 8266 | ;; It shall run only if selected explicitly. | ||
| 8267 | (skip-unless | ||
| 8268 | (eq (ert--stats-selector ert--current-run-stats) | ||
| 8269 | (ert-test-name (ert--stats-current-test ert--current-run-stats)))) | ||
| 8270 | (skip-unless (tramp--test-enabled)) | ||
| 8271 | (skip-unless (tramp--test-sh-p)) | ||
| 8272 | |||
| 8273 | (let ((default-directory ert-remote-temporary-file-directory) | ||
| 8274 | ;; Do not cache Tramp properties. | ||
| 8275 | (remote-file-name-inhibit-cache t) | ||
| 8276 | (p (start-file-process-shell-command | ||
| 8277 | "test" (generate-new-buffer "test" 'inhibit-buffer-hooks) | ||
| 8278 | "while true; do echo test; sleep 0.2; done"))) | ||
| 8279 | |||
| 8280 | (set-process-filter | ||
| 8281 | p (lambda (&rest _) | ||
| 8282 | (message "filter %s" default-directory) | ||
| 8283 | (directory-files default-directory) | ||
| 8284 | (dired-uncache default-directory))) | ||
| 8285 | |||
| 8286 | (run-at-time | ||
| 8287 | 0 0.2 (lambda () | ||
| 8288 | (message "timer %s" default-directory) | ||
| 8289 | (directory-files default-directory) | ||
| 8290 | (dired-uncache default-directory))) | ||
| 8291 | |||
| 8292 | (while t | ||
| 8293 | (accept-process-output) | ||
| 8294 | (message "main %s" default-directory) | ||
| 8295 | (directory-files default-directory) | ||
| 8296 | (dired-uncache default-directory)))) | ||
| 8297 | |||
| 8243 | (ert-deftest tramp-test46-dired-compress-file () | 8298 | (ert-deftest tramp-test46-dired-compress-file () |
| 8244 | "Check that Tramp (un)compresses normal files." | 8299 | "Check that Tramp (un)compresses normal files." |
| 8245 | (skip-unless (tramp--test-enabled)) | 8300 | (skip-unless (tramp--test-enabled)) |
| @@ -8616,6 +8671,7 @@ process sentinels. They shall not disturb each other." | |||
| 8616 | ;; This test is inspired by Bug#78572. | 8671 | ;; This test is inspired by Bug#78572. |
| 8617 | (ert-deftest tramp-test48-session-timeout () | 8672 | (ert-deftest tramp-test48-session-timeout () |
| 8618 | "Check that Tramp handles a session timeout properly." | 8673 | "Check that Tramp handles a session timeout properly." |
| 8674 | :tags '(:expensive-test) | ||
| 8619 | (skip-unless (tramp--test-enabled)) | 8675 | (skip-unless (tramp--test-enabled)) |
| 8620 | (skip-unless (tramp--test-sh-p)) | 8676 | (skip-unless (tramp--test-sh-p)) |
| 8621 | 8677 | ||
| @@ -8696,6 +8752,7 @@ process sentinels. They shall not disturb each other." | |||
| 8696 | 8752 | ||
| 8697 | (ert-deftest tramp-test49-external-backend-function () | 8753 | (ert-deftest tramp-test49-external-backend-function () |
| 8698 | "Check that Tramp handles external functions for a given backend." | 8754 | "Check that Tramp handles external functions for a given backend." |
| 8755 | :tags '(:expensive-test) | ||
| 8699 | (skip-unless (tramp--test-enabled)) | 8756 | (skip-unless (tramp--test-enabled)) |
| 8700 | (skip-unless (not (tramp--test-ange-ftp-p))) | 8757 | (skip-unless (not (tramp--test-ange-ftp-p))) |
| 8701 | 8758 | ||
| @@ -8840,6 +8897,7 @@ process sentinels. They shall not disturb each other." | |||
| 8840 | 8897 | ||
| 8841 | (ert-deftest tramp-test50-recursive-load () | 8898 | (ert-deftest tramp-test50-recursive-load () |
| 8842 | "Check that Tramp does not fail due to recursive load." | 8899 | "Check that Tramp does not fail due to recursive load." |
| 8900 | :tags '(:expensive-test) | ||
| 8843 | (skip-unless (tramp--test-enabled)) | 8901 | (skip-unless (tramp--test-enabled)) |
| 8844 | 8902 | ||
| 8845 | (let ((default-directory (expand-file-name temporary-file-directory))) | 8903 | (let ((default-directory (expand-file-name temporary-file-directory))) |
diff --git a/test/lisp/net/webjump-tests.el b/test/lisp/net/webjump-tests.el index 314c748bbab..8a2527cf52f 100644 --- a/test/lisp/net/webjump-tests.el +++ b/test/lisp/net/webjump-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; webjump-tests.el --- Tests for webjump.el -*- lexical-binding: t; -*- | 1 | ;;; webjump-tests.el --- Tests for webjump.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/newcomment-tests.el b/test/lisp/newcomment-tests.el index 6d8974bce83..bef36515f44 100644 --- a/test/lisp/newcomment-tests.el +++ b/test/lisp/newcomment-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; newcomment-tests.el --- Tests for newcomment.el -*- lexical-binding:t -*- | 1 | ;;; newcomment-tests.el --- Tests for newcomment.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/nxml/nxml-mode-tests.el b/test/lisp/nxml/nxml-mode-tests.el index 6e215f9bc17..4fe5281e955 100644 --- a/test/lisp/nxml/nxml-mode-tests.el +++ b/test/lisp/nxml/nxml-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; nxml-mode-tests.el --- Test NXML Mode -*- lexical-binding: t; -*- | 1 | ;;; nxml-mode-tests.el --- Test NXML Mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/nxml/xsd-regexp-tests.el b/test/lisp/nxml/xsd-regexp-tests.el index dc65f9e4caf..6e5ff1c41dd 100644 --- a/test/lisp/nxml/xsd-regexp-tests.el +++ b/test/lisp/nxml/xsd-regexp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; xsd-regexp-tests.el --- Test NXML Mode -*- lexical-binding: t; -*- | 1 | ;;; xsd-regexp-tests.el --- Test NXML Mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/obarray-tests.el b/test/lisp/obarray-tests.el index 002511c5d67..742c5c1e072 100644 --- a/test/lisp/obarray-tests.el +++ b/test/lisp/obarray-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; obarray-tests.el --- Tests for obarray -*- lexical-binding: t; -*- | 1 | ;;; obarray-tests.el --- Tests for obarray -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Przemysław Wojnowski <esperanto@cumego.com> | 5 | ;; Author: Przemysław Wojnowski <esperanto@cumego.com> |
| 6 | 6 | ||
diff --git a/test/lisp/obsolete/cl-tests.el b/test/lisp/obsolete/cl-tests.el index e80b4e57b27..3f9328c93d9 100644 --- a/test/lisp/obsolete/cl-tests.el +++ b/test/lisp/obsolete/cl-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cl-tests.el --- tests for emacs-lisp/cl.el -*- lexical-binding:t -*- | 1 | ;;; cl-tests.el --- tests for emacs-lisp/cl.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/obsolete/inversion-tests.el b/test/lisp/obsolete/inversion-tests.el index a1989a9b129..447ae9c1191 100644 --- a/test/lisp/obsolete/inversion-tests.el +++ b/test/lisp/obsolete/inversion-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; inversion-tests.el --- Tests for inversion.el -*- lexical-binding:t -*- | 1 | ;;; inversion-tests.el --- Tests for inversion.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/obsolete/makesum-tests.el b/test/lisp/obsolete/makesum-tests.el index da800d1c706..39ebc174b74 100644 --- a/test/lisp/obsolete/makesum-tests.el +++ b/test/lisp/obsolete/makesum-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; makesum-tests.el --- Tests for makesum.el -*- lexical-binding: t; -*- | 1 | ;;; makesum-tests.el --- Tests for makesum.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/obsolete/rfc2368-tests.el b/test/lisp/obsolete/rfc2368-tests.el index 737353e0a09..5297cb7d7b9 100644 --- a/test/lisp/obsolete/rfc2368-tests.el +++ b/test/lisp/obsolete/rfc2368-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; rfc2368-tests.el --- Tests for rfc2368.el -*- lexical-binding:t -*- | 1 | ;;; rfc2368-tests.el --- Tests for rfc2368.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/obsolete/thumbs-tests.el b/test/lisp/obsolete/thumbs-tests.el index ce7fd4f5405..850b549f13e 100644 --- a/test/lisp/obsolete/thumbs-tests.el +++ b/test/lisp/obsolete/thumbs-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; thumbs-tests.el --- tests for thumbs.el -*- lexical-binding: t -*- | 1 | ;;; thumbs-tests.el --- tests for thumbs.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/org/org-tests.el b/test/lisp/org/org-tests.el index a9167f0585a..bb8048ebb54 100644 --- a/test/lisp/org/org-tests.el +++ b/test/lisp/org/org-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; org-tests.el --- tests for org/org.el -*- lexical-binding:t -*- | 1 | ;;; org-tests.el --- tests for org/org.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Maintainer: emacs-devel@gnu.org | 5 | ;; Maintainer: emacs-devel@gnu.org |
| 6 | 6 | ||
diff --git a/test/lisp/paren-tests.el b/test/lisp/paren-tests.el index 2440c458794..a606018cd83 100644 --- a/test/lisp/paren-tests.el +++ b/test/lisp/paren-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; paren-tests.el --- Tests for paren.el -*- lexical-binding: t; -*- | 1 | ;;; paren-tests.el --- Tests for paren.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/password-cache-tests.el b/test/lisp/password-cache-tests.el index b01e5dcf071..7567b6b0b5a 100644 --- a/test/lisp/password-cache-tests.el +++ b/test/lisp/password-cache-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; password-cache-tests.el --- Tests for password-cache.el -*- lexical-binding: t -*- | 1 | ;;; password-cache-tests.el --- Tests for password-cache.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/pcmpl-linux-tests.el b/test/lisp/pcmpl-linux-tests.el index cafb4991803..a2d6cd8d1c8 100644 --- a/test/lisp/pcmpl-linux-tests.el +++ b/test/lisp/pcmpl-linux-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; pcmpl-linux-tests.el --- Tests for pcmpl-linux.el -*- lexical-binding: t -*- | 1 | ;;; pcmpl-linux-tests.el --- Tests for pcmpl-linux.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/pcomplete-tests.el b/test/lisp/pcomplete-tests.el index a788242fc2e..ab08c295fbc 100644 --- a/test/lisp/pcomplete-tests.el +++ b/test/lisp/pcomplete-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; pcomplete-tests.el --- Tests for pcomplete.el -*- lexical-binding: t -*- | 1 | ;;; pcomplete-tests.el --- Tests for pcomplete.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/play/animate-tests.el b/test/lisp/play/animate-tests.el index bd7ff2bbda6..0d7890c0433 100644 --- a/test/lisp/play/animate-tests.el +++ b/test/lisp/play/animate-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; animate-tests.el --- Tests for animate.el -*- lexical-binding:t -*- | 1 | ;;; animate-tests.el --- Tests for animate.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/play/cookie1-tests.el b/test/lisp/play/cookie1-tests.el index e4642340412..8da98b0f13d 100644 --- a/test/lisp/play/cookie1-tests.el +++ b/test/lisp/play/cookie1-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cookie1-tests.el --- Tests for cookie1.el -*- lexical-binding: t -*- | 1 | ;;; cookie1-tests.el --- Tests for cookie1.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/play/dissociate-tests.el b/test/lisp/play/dissociate-tests.el index 15451fc2c58..6d8585406f1 100644 --- a/test/lisp/play/dissociate-tests.el +++ b/test/lisp/play/dissociate-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; dissociate-tests.el --- Tests for dissociate.el -*- lexical-binding:t -*- | 1 | ;;; dissociate-tests.el --- Tests for dissociate.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/play/fortune-tests.el b/test/lisp/play/fortune-tests.el index 66644b1baec..a3940c7be5e 100644 --- a/test/lisp/play/fortune-tests.el +++ b/test/lisp/play/fortune-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; fortune-tests.el --- Tests for fortune.el -*- lexical-binding: t -*- | 1 | ;;; fortune-tests.el --- Tests for fortune.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/play/life-tests.el b/test/lisp/play/life-tests.el index 49d6996b405..e30b1bf7008 100644 --- a/test/lisp/play/life-tests.el +++ b/test/lisp/play/life-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; life-tests.el --- Tests for life.el -*- lexical-binding:t -*- | 1 | ;;; life-tests.el --- Tests for life.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/play/morse-tests.el b/test/lisp/play/morse-tests.el index d020b32a0df..dad4cbc632e 100644 --- a/test/lisp/play/morse-tests.el +++ b/test/lisp/play/morse-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; morse-tests.el --- Tests for morse.el -*- lexical-binding: t -*- | 1 | ;;; morse-tests.el --- Tests for morse.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/play/studly-tests.el b/test/lisp/play/studly-tests.el index 6f42619a1a9..3c5d60c51a3 100644 --- a/test/lisp/play/studly-tests.el +++ b/test/lisp/play/studly-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; studly-tests.el --- Tests for studly.el -*- lexical-binding: t -*- | 1 | ;;; studly-tests.el --- Tests for studly.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/proced-tests.el b/test/lisp/proced-tests.el index 6dc05acbf75..fce3c2bc048 100644 --- a/test/lisp/proced-tests.el +++ b/test/lisp/proced-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; proced-tests.el --- Test suite for proced.el -*- lexical-binding: t -*- | 1 | ;;; proced-tests.el --- Test suite for proced.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/asm-mode-tests.el b/test/lisp/progmodes/asm-mode-tests.el index c617a0fc485..89ecdb9138d 100644 --- a/test/lisp/progmodes/asm-mode-tests.el +++ b/test/lisp/progmodes/asm-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; asm-mode-tests.el --- Tests for asm-mode.el -*- lexical-binding: t; -*- | 1 | ;;; asm-mode-tests.el --- Tests for asm-mode.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/progmodes/autoconf-tests.el b/test/lisp/progmodes/autoconf-tests.el index df20986fc52..cf63dfa1b2b 100644 --- a/test/lisp/progmodes/autoconf-tests.el +++ b/test/lisp/progmodes/autoconf-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; autoconf-tests.el --- Tests for autoconf.el -*- lexical-binding: t; -*- | 1 | ;;; autoconf-tests.el --- Tests for autoconf.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/progmodes/bat-mode-tests.el b/test/lisp/progmodes/bat-mode-tests.el index fe7760c7356..851377faf95 100644 --- a/test/lisp/progmodes/bat-mode-tests.el +++ b/test/lisp/progmodes/bat-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; bat-mode-tests.el --- Tests for bat-mode.el -*- lexical-binding: t; -*- | 1 | ;;; bat-mode-tests.el --- Tests for bat-mode.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Vladimir Panteleev <vladimir@thecybershadow.net> | 5 | ;; Author: Vladimir Panteleev <vladimir@thecybershadow.net> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/progmodes/bug-reference-tests.el b/test/lisp/progmodes/bug-reference-tests.el index c8e1e4a78f0..f2871ca40ca 100644 --- a/test/lisp/progmodes/bug-reference-tests.el +++ b/test/lisp/progmodes/bug-reference-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; bug-reference-tests.el --- Tests for bug-reference.el -*- lexical-binding: t; -*- | 1 | ;;; bug-reference-tests.el --- Tests for bug-reference.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/c-ts-mode-tests.el b/test/lisp/progmodes/c-ts-mode-tests.el index 173b768c586..3568918fcf4 100644 --- a/test/lisp/progmodes/c-ts-mode-tests.el +++ b/test/lisp/progmodes/c-ts-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; c-ts-mode-tests.el --- Tests for Tree-sitter-based C mode -*- lexical-binding: t; -*- | 1 | ;;; c-ts-mode-tests.el --- Tests for Tree-sitter-based C mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/cc-mode-tests.el b/test/lisp/progmodes/cc-mode-tests.el index 5b30681ff09..b8e7138455d 100644 --- a/test/lisp/progmodes/cc-mode-tests.el +++ b/test/lisp/progmodes/cc-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cc-mode-tests.el --- Test suite for cc-mode. -*- lexical-binding: t; -*- | 1 | ;;; cc-mode-tests.el --- Test suite for cc-mode. -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Michal Nazarewicz <mina86@mina86.com> | 5 | ;; Author: Michal Nazarewicz <mina86@mina86.com> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/lisp/progmodes/compile-tests.el b/test/lisp/progmodes/compile-tests.el index 4a25d5a5655..eeb8fcf6eee 100644 --- a/test/lisp/progmodes/compile-tests.el +++ b/test/lisp/progmodes/compile-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; compile-tests.el --- Test suite for compile.el. -*- lexical-binding: t; -*- | 1 | ;;; compile-tests.el --- Test suite for compile.el. -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2011-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2011-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Chong Yidong <cyd@stupidchicken.com> | 5 | ;; Author: Chong Yidong <cyd@stupidchicken.com> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/lisp/progmodes/cperl-mode-tests.el b/test/lisp/progmodes/cperl-mode-tests.el index 424e89604b3..117eb9fdf9a 100644 --- a/test/lisp/progmodes/cperl-mode-tests.el +++ b/test/lisp/progmodes/cperl-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cperl-mode-tests.el --- Test for cperl-mode -*- lexical-binding: t -*- | 1 | ;;; cperl-mode-tests.el --- Test for cperl-mode -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Harald Jörg <haj@posteo.de> | 5 | ;; Author: Harald Jörg <haj@posteo.de> |
| 6 | ;; Maintainer: Harald Jörg | 6 | ;; Maintainer: Harald Jörg |
| @@ -217,7 +217,7 @@ attributes, prototypes and signatures." | |||
| 217 | (goto-char end-of-sub)))))) | 217 | (goto-char end-of-sub)))))) |
| 218 | 218 | ||
| 219 | (ert-deftest cperl-test-fontify-builtin-constants () | 219 | (ert-deftest cperl-test-fontify-builtin-constants () |
| 220 | "Test fontificiation of the floating point constants \"nan\" and \"inf\"." | 220 | "Test fontification of the floating point constants \"nan\" and \"inf\"." |
| 221 | (skip-unless (eq cperl-test-mode #'cperl-mode)) | 221 | (skip-unless (eq cperl-test-mode #'cperl-mode)) |
| 222 | (let ((constants '("my $min=-builtin::inf;" | 222 | (let ((constants '("my $min=-builtin::inf;" |
| 223 | "my $unknown = builtin::nan;" | 223 | "my $unknown = builtin::nan;" |
diff --git a/test/lisp/progmodes/csharp-mode-tests.el b/test/lisp/progmodes/csharp-mode-tests.el index 2169e7549ca..4035715744c 100644 --- a/test/lisp/progmodes/csharp-mode-tests.el +++ b/test/lisp/progmodes/csharp-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; csharp-mode-tests.el --- Tests for CC Mode C# mode -*- lexical-binding: t; -*- | 1 | ;;; csharp-mode-tests.el --- Tests for CC Mode C# mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/eglot-tests.el b/test/lisp/progmodes/eglot-tests.el index 8f8f46db2bb..7267754dc7d 100644 --- a/test/lisp/progmodes/eglot-tests.el +++ b/test/lisp/progmodes/eglot-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; eglot-tests.el --- Tests for eglot.el -*- lexical-binding: t; -*- | 1 | ;;; eglot-tests.el --- Tests for eglot.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: João Távora <joaotavora@gmail.com> | 5 | ;; Author: João Távora <joaotavora@gmail.com> |
| 6 | ;; Keywords: tests | 6 | ;; Keywords: tests |
| @@ -238,39 +238,47 @@ directory hierarchy." | |||
| 238 | ,@body) | 238 | ,@body) |
| 239 | (remove-hook 'jsonrpc-event-hook #',log-event-hook-sym)))))) | 239 | (remove-hook 'jsonrpc-event-hook #',log-event-hook-sym)))))) |
| 240 | 240 | ||
| 241 | (cl-defmacro eglot--wait-for ((events-sym &optional (timeout 1) message) args &body body) | 241 | (cl-defmacro eglot--wait-for ((events-sym &optional (timeout 1) message) |
| 242 | args &body body) | ||
| 242 | (declare (indent 2) (debug (sexp sexp sexp &rest form))) | 243 | (declare (indent 2) (debug (sexp sexp sexp &rest form))) |
| 243 | `(eglot--with-timeout '(,timeout ,(or message | 244 | `(eglot--with-timeout '(,timeout |
| 244 | (format "waiting for:\n%s" (pp-to-string body)))) | 245 | ,(or message |
| 246 | (format "waiting for:\n%s" (pp-to-string body)))) | ||
| 245 | (eglot--test-message "waiting for `%s'" (with-output-to-string | 247 | (eglot--test-message "waiting for `%s'" (with-output-to-string |
| 246 | (mapc #'princ ',body))) | 248 | (mapc #'princ ',body))) |
| 247 | (let ((events | 249 | (let ((probe |
| 248 | (cl-loop thereis (cl-loop for json in ,events-sym | 250 | (cl-loop |
| 249 | for method = (plist-get json :method) | 251 | thereis |
| 250 | when (keywordp method) | 252 | (cl-loop for (json . tail) on ,events-sym |
| 251 | do (plist-put json :method | 253 | for method = (plist-get json :method) |
| 252 | (substring | 254 | when (keywordp method) |
| 253 | (symbol-name method) | 255 | do (plist-put |
| 254 | 1)) | 256 | json :method (substring (symbol-name method) 1)) |
| 255 | when (funcall | 257 | when (funcall (jsonrpc-lambda ,args ,@body) json) |
| 256 | (jsonrpc-lambda ,args ,@body) json) | 258 | return json |
| 257 | return (cons json before) | 259 | do |
| 258 | collect json into before) | 260 | (unless |
| 259 | for i from 0 | 261 | ;; $/progress is *truly* uninteresting and spammy |
| 260 | when (zerop (mod i 5)) | 262 | (string-match "\\$/progress" (format "%s" method)) |
| 261 | ;; do (eglot--test-message "still struggling to find in %s" | 263 | (eglot--test-message |
| 262 | ;; ,events-sym) | 264 | "skip uninteresting event %s[%s]" |
| 263 | do | 265 | (plist-get json :method) |
| 264 | ;; `read-event' is essential to have the file | 266 | (plist-get json :id))) |
| 265 | ;; watchers come through. | 267 | finally (setq ,events-sym tail)) |
| 266 | (cond ((fboundp 'flush-standard-output) | 268 | for i from 0 |
| 267 | (read-event nil nil 0.1) (princ ".") | 269 | when (zerop (mod i 5)) |
| 268 | (flush-standard-output)) | 270 | ;; do (eglot--test-message "still struggling to find in %s" |
| 269 | (t | 271 | ;; ,events-sym) |
| 270 | (read-event "." nil 0.1))) | 272 | do |
| 271 | (accept-process-output nil 0.1)))) | 273 | ;; `read-event' is essential to have the file |
| 272 | (setq ,events-sym (cdr events)) | 274 | ;; watchers come through. |
| 273 | (cl-destructuring-bind (&key method id &allow-other-keys) (car events) | 275 | (cond ((fboundp 'flush-standard-output) |
| 276 | (read-event nil nil 0.1) (princ ".") | ||
| 277 | (flush-standard-output)) | ||
| 278 | (t | ||
| 279 | (read-event "." nil 0.1))) | ||
| 280 | (accept-process-output nil 0.1)))) | ||
| 281 | (cl-destructuring-bind (&key method id &allow-other-keys) probe | ||
| 274 | (eglot--test-message "detected: %s" | 282 | (eglot--test-message "detected: %s" |
| 275 | (or method (and id (format "id=%s" id)))))))) | 283 | (or method (and id (format "id=%s" id)))))))) |
| 276 | 284 | ||
| @@ -286,10 +294,13 @@ directory hierarchy." | |||
| 286 | (define-derived-mode typescript-mode prog-mode "TypeScript") | 294 | (define-derived-mode typescript-mode prog-mode "TypeScript") |
| 287 | (add-to-list 'auto-mode-alist '("\\.ts\\'" . typescript-mode))) | 295 | (add-to-list 'auto-mode-alist '("\\.ts\\'" . typescript-mode))) |
| 288 | 296 | ||
| 289 | (defun eglot--tests-connect (&optional timeout) | 297 | (cl-defun eglot--tests-connect (&key timeout server) |
| 290 | (let* ((timeout (or timeout 10)) | 298 | (let* ((timeout (or timeout 10)) |
| 291 | (eglot-sync-connect t) | 299 | (eglot-sync-connect t) |
| 292 | (eglot-connect-timeout timeout)) | 300 | (eglot-connect-timeout timeout) |
| 301 | (eglot-server-programs | ||
| 302 | (if server `((,major-mode . ,(split-string server))) | ||
| 303 | eglot-server-programs))) | ||
| 293 | (apply #'eglot--connect (eglot--guess-contact)))) | 304 | (apply #'eglot--connect (eglot--guess-contact)))) |
| 294 | 305 | ||
| 295 | (defun eglot--simulate-key-event (char) | 306 | (defun eglot--simulate-key-event (char) |
| @@ -317,7 +328,7 @@ directory hierarchy." | |||
| 317 | (with-current-buffer | 328 | (with-current-buffer |
| 318 | (eglot--find-file-noselect "project/src/main/java/foo/Main.java") | 329 | (eglot--find-file-noselect "project/src/main/java/foo/Main.java") |
| 319 | (eglot--sniffing (:server-notifications s-notifs) | 330 | (eglot--sniffing (:server-notifications s-notifs) |
| 320 | (should (eglot--tests-connect 20)) | 331 | (should (eglot--tests-connect :timeout 20)) |
| 321 | (eglot--wait-for (s-notifs 10) | 332 | (eglot--wait-for (s-notifs 10) |
| 322 | (&key _id method &allow-other-keys) | 333 | (&key _id method &allow-other-keys) |
| 323 | (string= method "language/status")))))) | 334 | (string= method "language/status")))))) |
| @@ -431,15 +442,69 @@ directory hierarchy." | |||
| 431 | (with-current-buffer | 442 | (with-current-buffer |
| 432 | (eglot--find-file-noselect "diag-project/main.c") | 443 | (eglot--find-file-noselect "diag-project/main.c") |
| 433 | (eglot--sniffing (:server-notifications s-notifs) | 444 | (eglot--sniffing (:server-notifications s-notifs) |
| 434 | (eglot--tests-connect) | 445 | (eglot--tests-connect :server "clangd") |
| 446 | (flymake-start) | ||
| 435 | (eglot--wait-for (s-notifs 10) | 447 | (eglot--wait-for (s-notifs 10) |
| 436 | (&key _id method &allow-other-keys) | 448 | (&key method &allow-other-keys) |
| 437 | (string= method "textDocument/publishDiagnostics")) | 449 | (string= method "textDocument/publishDiagnostics")) |
| 450 | (goto-char (point-min)) | ||
| 451 | (flymake-goto-next-error 1 '() t) | ||
| 452 | (should (eq 'flymake-error (face-at-point))))))) | ||
| 453 | |||
| 454 | (ert-deftest eglot-test-basic-pull-diagnostics () | ||
| 455 | "Test basic diagnostics." | ||
| 456 | (skip-unless (executable-find "ty")) | ||
| 457 | (eglot--with-fixture | ||
| 458 | `(("diag-project" . | ||
| 459 | (("main.py" . "def main:\npuss")))) | ||
| 460 | (with-current-buffer | ||
| 461 | (eglot--find-file-noselect "diag-project/main.py") | ||
| 462 | (eglot--sniffing (:server-replies s-replies) | ||
| 463 | (eglot--tests-connect :server "ty server") | ||
| 438 | (flymake-start) | 464 | (flymake-start) |
| 465 | (eglot--wait-for (s-replies 5) | ||
| 466 | (&key _id method &allow-other-keys) | ||
| 467 | (string= method "textDocument/diagnostic")) | ||
| 439 | (goto-char (point-min)) | 468 | (goto-char (point-min)) |
| 440 | (flymake-goto-next-error 1 '() t) | 469 | (flymake-goto-next-error 1 '() t) |
| 441 | (should (eq 'flymake-error (face-at-point))))))) | 470 | (should (eq 'flymake-error (face-at-point))))))) |
| 442 | 471 | ||
| 472 | (ert-deftest eglot-test-basic-stream-diagnostics () | ||
| 473 | "Test basic diagnostics." | ||
| 474 | (skip-unless (executable-find "rass")) | ||
| 475 | (skip-unless (executable-find "ruff")) | ||
| 476 | (skip-unless (executable-find "ty")) | ||
| 477 | (eglot--with-fixture | ||
| 478 | `(("diag-project" . | ||
| 479 | (("main.py" . "from lib import greet\ndef main():\n greet()") | ||
| 480 | ("lib.py" . "def geet():\n print('hello')")))) | ||
| 481 | (set-buffer (eglot--find-file-noselect "diag-project/main.py")) | ||
| 482 | (eglot--sniffing (:server-notifications s-notifs) | ||
| 483 | (eglot--tests-connect :server "rass -- ty server -- ruff server") | ||
| 484 | (flymake-start) | ||
| 485 | (cl-loop repeat 2 ;; 2 stream notifs for 2 rass servers | ||
| 486 | do (eglot--wait-for (s-notifs 5) | ||
| 487 | (&key method &allow-other-keys) | ||
| 488 | (string= method "$/streamDiagnostics"))) | ||
| 489 | (goto-char (point-min)) | ||
| 490 | (flymake-goto-next-error 1 '() t) | ||
| 491 | (should (eq 'flymake-error (face-at-point)))) | ||
| 492 | |||
| 493 | ;; Now fix it | ||
| 494 | (set-buffer (eglot--find-file-noselect "lib.py")) | ||
| 495 | (search-forward "geet") | ||
| 496 | (replace-match "greet") | ||
| 497 | (eglot--sniffing (:server-notifications s-notifs) | ||
| 498 | (eglot--signal-textDocument/didChange) | ||
| 499 | (set-buffer (eglot--find-file-noselect "main.py")) | ||
| 500 | (flymake-start) | ||
| 501 | (cl-loop repeat 2 | ||
| 502 | do (eglot--wait-for (s-notifs 5) | ||
| 503 | (&key method &allow-other-keys) | ||
| 504 | (string= method "$/streamDiagnostics"))) | ||
| 505 | (goto-char (point-min)) | ||
| 506 | (should-error (flymake-goto-next-error 1 '() t))))) | ||
| 507 | |||
| 443 | (ert-deftest eglot-test-basic-symlink () | 508 | (ert-deftest eglot-test-basic-symlink () |
| 444 | "Test basic symlink support." | 509 | "Test basic symlink support." |
| 445 | (skip-unless (executable-find "clangd")) | 510 | (skip-unless (executable-find "clangd")) |
| @@ -710,7 +775,7 @@ directory hierarchy." | |||
| 710 | ;; This originally appeared in github#1339 | 775 | ;; This originally appeared in github#1339 |
| 711 | (skip-unless (executable-find "rust-analyzer")) | 776 | (skip-unless (executable-find "rust-analyzer")) |
| 712 | (skip-unless (executable-find "cargo")) | 777 | (skip-unless (executable-find "cargo")) |
| 713 | (skip-when (getenv "EMACS_EMBA_CI")) | 778 | (skip-unless (not (getenv "EMACS_EMBA_CI"))) |
| 714 | (eglot--with-fixture | 779 | (eglot--with-fixture |
| 715 | '(("cmpl-project" . | 780 | '(("cmpl-project" . |
| 716 | (("main.rs" . | 781 | (("main.rs" . |
| @@ -1069,7 +1134,7 @@ int main() { | |||
| 1069 | (let ((eglot-sync-connect t) | 1134 | (let ((eglot-sync-connect t) |
| 1070 | (eglot-server-programs | 1135 | (eglot-server-programs |
| 1071 | `((c-mode . ("sh" "-c" "sleep 1 && clangd"))))) | 1136 | `((c-mode . ("sh" "-c" "sleep 1 && clangd"))))) |
| 1072 | (should (eglot--tests-connect 3)))))) | 1137 | (should (eglot--tests-connect :timeout 3)))))) |
| 1073 | 1138 | ||
| 1074 | (ert-deftest eglot-test-slow-sync-connection-intime () | 1139 | (ert-deftest eglot-test-slow-sync-connection-intime () |
| 1075 | "Connect synchronously with `eglot-sync-connect' set to 2." | 1140 | "Connect synchronously with `eglot-sync-connect' set to 2." |
| @@ -1081,7 +1146,7 @@ int main() { | |||
| 1081 | (let ((eglot-sync-connect 2) | 1146 | (let ((eglot-sync-connect 2) |
| 1082 | (eglot-server-programs | 1147 | (eglot-server-programs |
| 1083 | `((c-mode . ("sh" "-c" "sleep 1 && clangd"))))) | 1148 | `((c-mode . ("sh" "-c" "sleep 1 && clangd"))))) |
| 1084 | (should (eglot--tests-connect 3)))))) | 1149 | (should (eglot--tests-connect :timeout 3)))))) |
| 1085 | 1150 | ||
| 1086 | (ert-deftest eglot-test-slow-async-connection () | 1151 | (ert-deftest eglot-test-slow-async-connection () |
| 1087 | "Connect asynchronously with `eglot-sync-connect' set to 2." | 1152 | "Connect asynchronously with `eglot-sync-connect' set to 2." |
| @@ -1511,7 +1576,14 @@ GUESSED-MAJOR-MODES-SYM are bound to the useful return values of | |||
| 1511 | '(3 "Timeout waiting for semantic tokens") | 1576 | '(3 "Timeout waiting for semantic tokens") |
| 1512 | (while (not (save-excursion | 1577 | (while (not (save-excursion |
| 1513 | (goto-char pos) | 1578 | (goto-char pos) |
| 1514 | (text-property-search-forward 'eglot--semtok-faces))) | 1579 | (cl-loop |
| 1580 | for from = (point) then to | ||
| 1581 | while (< from (point-max)) | ||
| 1582 | for faces = (get-text-property from 'eglot--semtok-faces) | ||
| 1583 | for to = (or (next-single-property-change | ||
| 1584 | from 'eglot--semtok-faces) | ||
| 1585 | (point-max)) | ||
| 1586 | when faces return t))) | ||
| 1515 | (accept-process-output nil 0.1) | 1587 | (accept-process-output nil 0.1) |
| 1516 | (font-lock-ensure)))) | 1588 | (font-lock-ensure)))) |
| 1517 | 1589 | ||
| @@ -1530,9 +1602,9 @@ GUESSED-MAJOR-MODES-SYM are bound to the useful return values of | |||
| 1530 | (eglot--semtok-wait (point-min)) | 1602 | (eglot--semtok-wait (point-min)) |
| 1531 | (goto-char (point-min)) | 1603 | (goto-char (point-min)) |
| 1532 | (search-forward "main") | 1604 | (search-forward "main") |
| 1533 | (should (memq 'eglot-semantic-function-face (eglot--semtok-faces))) | 1605 | (should (memq 'eglot-semantic-function (eglot--semtok-faces))) |
| 1534 | (search-forward "int x") | 1606 | (search-forward "int x") |
| 1535 | (should (memq 'eglot-semantic-variable-face (eglot--semtok-faces)))))) | 1607 | (should (memq 'eglot-semantic-variable (eglot--semtok-faces)))))) |
| 1536 | 1608 | ||
| 1537 | (ert-deftest eglot-test-semtok-refontify () | 1609 | (ert-deftest eglot-test-semtok-refontify () |
| 1538 | "Test semantic tokens refontification after edits." | 1610 | "Test semantic tokens refontification after edits." |
| @@ -1551,9 +1623,9 @@ GUESSED-MAJOR-MODES-SYM are bound to the useful return values of | |||
| 1551 | (eglot--signal-textDocument/didChange) ; a bit unrealistic | 1623 | (eglot--signal-textDocument/didChange) ; a bit unrealistic |
| 1552 | (eglot--semtok-wait (point)) | 1624 | (eglot--semtok-wait (point)) |
| 1553 | (search-forward "bar") | 1625 | (search-forward "bar") |
| 1554 | (should (memq 'eglot-semantic-function-face (eglot--semtok-faces))) | 1626 | (should (memq 'eglot-semantic-function (eglot--semtok-faces))) |
| 1555 | (search-forward "int y") | 1627 | (search-forward "int y") |
| 1556 | (should (memq 'eglot-semantic-variable-face (eglot--semtok-faces)))))) | 1628 | (should (memq 'eglot-semantic-variable (eglot--semtok-faces)))))) |
| 1557 | 1629 | ||
| 1558 | (provide 'eglot-tests) | 1630 | (provide 'eglot-tests) |
| 1559 | 1631 | ||
diff --git a/test/lisp/progmodes/elisp-mode-tests.el b/test/lisp/progmodes/elisp-mode-tests.el index e36f65805c2..8211347ba11 100644 --- a/test/lisp/progmodes/elisp-mode-tests.el +++ b/test/lisp/progmodes/elisp-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; elisp-mode-tests.el --- Tests for emacs-lisp-mode -*- lexical-binding: t; -*- | 1 | ;;; elisp-mode-tests.el --- Tests for emacs-lisp-mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Dmitry Gutov <dgutov@yandex.ru> | 5 | ;; Author: Dmitry Gutov <dgutov@yandex.ru> |
| 6 | ;; Author: Stephen Leake <stephen_leake@member.fsf.org> | 6 | ;; Author: Stephen Leake <stephen_leake@member.fsf.org> |
| @@ -407,7 +407,7 @@ to (xref-elisp-test-descr-to-target xref)." | |||
| 407 | ;; cl-defstruct location. | 407 | ;; cl-defstruct location. |
| 408 | (list | 408 | (list |
| 409 | (cons | 409 | (cons |
| 410 | (xref-make "(cl-defstruct (xref-elisp-location (:constructor xref-make-elisp-location)))" | 410 | (xref-make "(cl-defstruct xref-elisp-location (:constructor xref-make-elisp-location))" |
| 411 | (xref-make-elisp-location | 411 | (xref-make-elisp-location |
| 412 | 'xref-elisp-location 'define-type | 412 | 'xref-elisp-location 'define-type |
| 413 | (expand-file-name "../../../lisp/progmodes/elisp-mode.el" emacs-test-dir))) | 413 | (expand-file-name "../../../lisp/progmodes/elisp-mode.el" emacs-test-dir))) |
diff --git a/test/lisp/progmodes/elixir-ts-mode-resources/indent.erts b/test/lisp/progmodes/elixir-ts-mode-resources/indent.erts index f2d0eacee5b..8cbae399f3b 100644 --- a/test/lisp/progmodes/elixir-ts-mode-resources/indent.erts +++ b/test/lisp/progmodes/elixir-ts-mode-resources/indent.erts | |||
| @@ -79,7 +79,7 @@ def foo() do | |||
| 79 | end | 79 | end |
| 80 | =-=-= | 80 | =-=-= |
| 81 | 81 | ||
| 82 | Name: Bitstring mulitline | 82 | Name: Bitstring multiline |
| 83 | 83 | ||
| 84 | =-= | 84 | =-= |
| 85 | <<12, 22, | 85 | <<12, 22, |
diff --git a/test/lisp/progmodes/elixir-ts-mode-tests.el b/test/lisp/progmodes/elixir-ts-mode-tests.el index 82eb5fec391..f502a988fe5 100644 --- a/test/lisp/progmodes/elixir-ts-mode-tests.el +++ b/test/lisp/progmodes/elixir-ts-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; elixir-ts-mode-tests.el --- Tests for elixir-ts-mode -*- lexical-binding: t; -*- | 1 | ;;; elixir-ts-mode-tests.el --- Tests for elixir-ts-mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/etags-tests.el b/test/lisp/progmodes/etags-tests.el index 27c4e962e96..9ddf9e20aec 100644 --- a/test/lisp/progmodes/etags-tests.el +++ b/test/lisp/progmodes/etags-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; etags-tests.el --- Test suite for etags.el. -*- lexical-binding:t -*- | 1 | ;;; etags-tests.el --- Test suite for etags.el. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eli Zaretskii <eliz@gnu.org> | 5 | ;; Author: Eli Zaretskii <eliz@gnu.org> |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/executable-tests.el b/test/lisp/progmodes/executable-tests.el index ed55a55f5a4..c5977e45937 100644 --- a/test/lisp/progmodes/executable-tests.el +++ b/test/lisp/progmodes/executable-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; executable-tests.el --- Tests for executable.el -*- lexical-binding:t -*- | 1 | ;;; executable-tests.el --- Tests for executable.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/f90-tests.el b/test/lisp/progmodes/f90-tests.el index 4f9899b9856..991c874b769 100644 --- a/test/lisp/progmodes/f90-tests.el +++ b/test/lisp/progmodes/f90-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; f90-tests.el --- tests for progmodes/f90.el -*- lexical-binding:t -*- | 1 | ;;; f90-tests.el --- tests for progmodes/f90.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2011-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2011-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Glenn Morris <rgm@gnu.org> | 5 | ;; Author: Glenn Morris <rgm@gnu.org> |
| 6 | ;; Maintainer: emacs-devel@gnu.org | 6 | ;; Maintainer: emacs-devel@gnu.org |
diff --git a/test/lisp/progmodes/flymake-tests.el b/test/lisp/progmodes/flymake-tests.el index 7831cc87ec4..d2924982f75 100644 --- a/test/lisp/progmodes/flymake-tests.el +++ b/test/lisp/progmodes/flymake-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; flymake-tests.el --- Test suite for flymake -*- lexical-binding: t -*- | 1 | ;;; flymake-tests.el --- Test suite for flymake -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2011-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2011-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eduard Wiebe <usenet@pusto.de> | 5 | ;; Author: Eduard Wiebe <usenet@pusto.de> |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/gdb-mi-tests.el b/test/lisp/progmodes/gdb-mi-tests.el index ad2758ac410..e3e634d7141 100644 --- a/test/lisp/progmodes/gdb-mi-tests.el +++ b/test/lisp/progmodes/gdb-mi-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; gdb-mi-tests.el --- tests for gdb-mi.el -*- lexical-binding: t -*- | 1 | ;;; gdb-mi-tests.el --- tests for gdb-mi.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/glasses-tests.el b/test/lisp/progmodes/glasses-tests.el index 12bd3e830d8..b3f7089b4a7 100644 --- a/test/lisp/progmodes/glasses-tests.el +++ b/test/lisp/progmodes/glasses-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; glasses-tests.el --- Tests for glasses.el -*- lexical-binding: t; -*- | 1 | ;;; glasses-tests.el --- Tests for glasses.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/progmodes/go-ts-mode-tests.el b/test/lisp/progmodes/go-ts-mode-tests.el index abd0f5f94eb..787f8e8ff6c 100644 --- a/test/lisp/progmodes/go-ts-mode-tests.el +++ b/test/lisp/progmodes/go-ts-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; go-ts-mode-tests.el --- Tests for Tree-sitter-based Go mode -*- lexical-binding: t; -*- | 1 | ;;; go-ts-mode-tests.el --- Tests for Tree-sitter-based Go mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/grep-tests.el b/test/lisp/progmodes/grep-tests.el index ca4e824e575..eea3d4ee862 100644 --- a/test/lisp/progmodes/grep-tests.el +++ b/test/lisp/progmodes/grep-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; grep-tests.el --- Test suite for grep.el -*- lexical-binding:t -*- | 1 | ;;; grep-tests.el --- Test suite for grep.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/heex-ts-mode-tests.el b/test/lisp/progmodes/heex-ts-mode-tests.el index 816d4dd7158..e759605b827 100644 --- a/test/lisp/progmodes/heex-ts-mode-tests.el +++ b/test/lisp/progmodes/heex-ts-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; heex-ts-mode-tests.el --- Tests for heex-ts-mode -*- lexical-binding: t; -*- | 1 | ;;; heex-ts-mode-tests.el --- Tests for heex-ts-mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/hideshow-tests.el b/test/lisp/progmodes/hideshow-tests.el index cf13a064f39..b410a548aa0 100644 --- a/test/lisp/progmodes/hideshow-tests.el +++ b/test/lisp/progmodes/hideshow-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; hideshow-tests.el --- Test suite for hideshow.el -*- lexical-binding:t -*- | 1 | ;;; hideshow-tests.el --- Test suite for hideshow.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/java-ts-mode-tests.el b/test/lisp/progmodes/java-ts-mode-tests.el index acb0e50cc7c..eb305381c2f 100644 --- a/test/lisp/progmodes/java-ts-mode-tests.el +++ b/test/lisp/progmodes/java-ts-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; java-ts-mode-tests.el --- Tests for Tree-sitter-based Java mode -*- lexical-binding: t; -*- | 1 | ;;; java-ts-mode-tests.el --- Tests for Tree-sitter-based Java mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/js-tests.el b/test/lisp/progmodes/js-tests.el index 1a7edc5735e..40ac7ea3901 100644 --- a/test/lisp/progmodes/js-tests.el +++ b/test/lisp/progmodes/js-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; js-tests.el --- Test suite for js-mode -*- lexical-binding:t -*- | 1 | ;;; js-tests.el --- Test suite for js-mode -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/json-ts-mode-tests.el b/test/lisp/progmodes/json-ts-mode-tests.el new file mode 100644 index 00000000000..4fe4582f2f1 --- /dev/null +++ b/test/lisp/progmodes/json-ts-mode-tests.el | |||
| @@ -0,0 +1,86 @@ | |||
| 1 | ;;; json-ts-mode-tests.el --- Tests for json-ts-mode.el -*- lexical-binding: t; -*- | ||
| 2 | |||
| 3 | ;; Copyright (C) 2026 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | ;; This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | ;; GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | ;; it under the terms of the GNU General Public License as published by | ||
| 9 | ;; the Free Software Foundation, either version 3 of the License, or | ||
| 10 | ;; (at your option) any later version. | ||
| 11 | |||
| 12 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | ;; GNU General Public License for more details. | ||
| 16 | |||
| 17 | ;; You should have received a copy of the GNU General Public License | ||
| 18 | ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. | ||
| 19 | |||
| 20 | ;;; Commentary: | ||
| 21 | |||
| 22 | ;; Tests for json-ts-mode. | ||
| 23 | |||
| 24 | ;;; Code: | ||
| 25 | |||
| 26 | (require 'ert) | ||
| 27 | (require 'treesit) | ||
| 28 | (require 'json-ts-mode) | ||
| 29 | |||
| 30 | (ert-deftest json-ts-mode-test-path-at-point () | ||
| 31 | "Test `json-ts--get-path-at-node' and `json-ts--path-to-jq'." | ||
| 32 | (skip-unless (treesit-language-available-p 'json)) | ||
| 33 | (with-temp-buffer | ||
| 34 | (json-ts-mode) | ||
| 35 | (insert "{\"a\": [1, {\"b\": 2}, 3]}") | ||
| 36 | |||
| 37 | ;; Point at '1' (index 0 of array 'a') | ||
| 38 | (goto-char (point-min)) | ||
| 39 | (search-forward "1") | ||
| 40 | (backward-char) | ||
| 41 | (should (equal (json-ts--path-to-jq (json-ts--get-path-at-node (treesit-node-at (point)))) | ||
| 42 | ".a[0]")) | ||
| 43 | |||
| 44 | ;; Point at '2' (key 'b' inside object at index 1) | ||
| 45 | (goto-char (point-min)) | ||
| 46 | (search-forward "2") | ||
| 47 | (backward-char) | ||
| 48 | (should (equal (json-ts--path-to-jq (json-ts--get-path-at-node (treesit-node-at (point)))) | ||
| 49 | ".a[1].b")) | ||
| 50 | |||
| 51 | ;; Point at '3' (index 2 of array 'a') | ||
| 52 | (goto-char (point-min)) | ||
| 53 | (search-forward "3") | ||
| 54 | (backward-char) | ||
| 55 | (should (equal (json-ts--path-to-jq (json-ts--get-path-at-node (treesit-node-at (point)))) | ||
| 56 | ".a[2]")))) | ||
| 57 | |||
| 58 | (ert-deftest json-ts-mode-test-path-at-point-complex-keys () | ||
| 59 | "Test path generation with complex keys." | ||
| 60 | (skip-unless (treesit-language-available-p 'json)) | ||
| 61 | (with-temp-buffer | ||
| 62 | (json-ts-mode) | ||
| 63 | (insert "{\"key.with.dot\": {\"key with space\": 1}}") | ||
| 64 | |||
| 65 | (goto-char (point-min)) | ||
| 66 | (search-forward "1") | ||
| 67 | (backward-char) | ||
| 68 | (should (equal (json-ts--path-to-jq (json-ts--get-path-at-node (treesit-node-at (point)))) | ||
| 69 | "[\"key.with.dot\"][\"key with space\"]")))) | ||
| 70 | |||
| 71 | (ert-deftest json-ts-mode-test-jq-path-keys () | ||
| 72 | "Test `json-ts--path-to-jq' with various key formats." | ||
| 73 | (should (equal (json-ts--path-to-jq '("v123")) ".v123")) | ||
| 74 | (should (equal (json-ts--path-to-jq '("-123")) "[\"-123\"]")) | ||
| 75 | (should (equal (json-ts--path-to-jq '("v_v")) ".v_v")) | ||
| 76 | (should (equal (json-ts--path-to-jq '("123")) "[\"123\"]")) | ||
| 77 | (should (equal (json-ts--path-to-jq '("_123")) "._123")) | ||
| 78 | (should (equal (json-ts--path-to-jq '("1v2")) "[\"1v2\"]"))) | ||
| 79 | |||
| 80 | (ert-deftest json-ts-mode-test-path-to-python () | ||
| 81 | "Test `json-ts--path-to-python'." | ||
| 82 | (should (equal (json-ts--path-to-python '("a" 0 "b")) | ||
| 83 | "[\"a\"][0][\"b\"]"))) | ||
| 84 | |||
| 85 | (provide 'json-ts-mode-tests) | ||
| 86 | ;;; json-ts-mode-tests.el ends here | ||
diff --git a/test/lisp/progmodes/lua-mode-tests.el b/test/lisp/progmodes/lua-mode-tests.el index aee3a5f47cb..89b21ab7712 100644 --- a/test/lisp/progmodes/lua-mode-tests.el +++ b/test/lisp/progmodes/lua-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; lua-mode-tests.el --- Tests for lua-mode -*- lexical-binding: t; -*- | 1 | ;;; lua-mode-tests.el --- Tests for lua-mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/lua-ts-mode-tests.el b/test/lisp/progmodes/lua-ts-mode-tests.el index 3364f6750cc..3eb8b07266b 100644 --- a/test/lisp/progmodes/lua-ts-mode-tests.el +++ b/test/lisp/progmodes/lua-ts-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; lua-ts-mode-tests.el --- Tests for lua-ts-mode -*- lexical-binding: t; -*- | 1 | ;;; lua-ts-mode-tests.el --- Tests for lua-ts-mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/make-mode-tests.el b/test/lisp/progmodes/make-mode-tests.el index 07b5572b315..a608463fb06 100644 --- a/test/lisp/progmodes/make-mode-tests.el +++ b/test/lisp/progmodes/make-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; make-mode-tests.el --- tests for make-mode.el -*- lexical-binding: t -*- | 1 | ;;; make-mode-tests.el --- tests for make-mode.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/octave-tests.el b/test/lisp/progmodes/octave-tests.el index 1aec6a9cb5a..eb2fe29bd7a 100644 --- a/test/lisp/progmodes/octave-tests.el +++ b/test/lisp/progmodes/octave-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; octave-tests.el --- Test suite for octave.el -*- lexical-binding:t -*- | 1 | ;;; octave-tests.el --- Test suite for octave.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/opascal-tests.el b/test/lisp/progmodes/opascal-tests.el index d68bb28bf4b..d23e65aa9e5 100644 --- a/test/lisp/progmodes/opascal-tests.el +++ b/test/lisp/progmodes/opascal-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; opascal-tests.el --- tests for opascal.el -*- lexical-binding: t -*- | 1 | ;;; opascal-tests.el --- tests for opascal.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/pascal-tests.el b/test/lisp/progmodes/pascal-tests.el index 8ee07fc8082..a39b89bb9d8 100644 --- a/test/lisp/progmodes/pascal-tests.el +++ b/test/lisp/progmodes/pascal-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; pascal-tests.el --- tests for pascal.el -*- lexical-binding: t -*- | 1 | ;;; pascal-tests.el --- tests for pascal.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/peg-tests.el b/test/lisp/progmodes/peg-tests.el index df761a42c14..8623f764238 100644 --- a/test/lisp/progmodes/peg-tests.el +++ b/test/lisp/progmodes/peg-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; peg-tests.el --- Tests of PEG parsers -*- lexical-binding: t; -*- | 1 | ;;; peg-tests.el --- Tests of PEG parsers -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This program is free software; you can redistribute it and/or modify | 5 | ;; This program is free software; you can redistribute it and/or modify |
| 6 | ;; it under the terms of the GNU General Public License as published by | 6 | ;; it under the terms of the GNU General Public License as published by |
diff --git a/test/lisp/progmodes/perl-mode-tests.el b/test/lisp/progmodes/perl-mode-tests.el index ecd677dfa1b..da065ad471f 100644 --- a/test/lisp/progmodes/perl-mode-tests.el +++ b/test/lisp/progmodes/perl-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; perl-mode-tests.el --- Test for perl-mode -*- lexical-binding: t -*- | 1 | ;;; perl-mode-tests.el --- Test for perl-mode -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/project-tests.el b/test/lisp/progmodes/project-tests.el index 947ad94a385..29aaaa1e502 100644 --- a/test/lisp/progmodes/project-tests.el +++ b/test/lisp/progmodes/project-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; project-tests.el --- tests for project.el -*- lexical-binding: t; -*- | 1 | ;;; project-tests.el --- tests for project.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Keywords: | 5 | ;; Keywords: |
| 6 | 6 | ||
| @@ -33,6 +33,8 @@ | |||
| 33 | (require 'grep) | 33 | (require 'grep) |
| 34 | (require 'xref) | 34 | (require 'xref) |
| 35 | 35 | ||
| 36 | (declare-function vc-git--program-version "vc-git") | ||
| 37 | |||
| 36 | (ert-deftest project/quoted-directory () | 38 | (ert-deftest project/quoted-directory () |
| 37 | "Check that `project-files' and `project-find-regexp' deal with | 39 | "Check that `project-files' and `project-find-regexp' deal with |
| 38 | quoted directory names (Bug#47799)." | 40 | quoted directory names (Bug#47799)." |
| @@ -154,11 +156,13 @@ When `project-ignores' includes a name matching project dir." | |||
| 154 | (should-not (null project)) | 156 | (should-not (null project)) |
| 155 | (should (string-match-p "/test/lisp/progmodes/project-resources/\\'" (project-root project))) | 157 | (should (string-match-p "/test/lisp/progmodes/project-resources/\\'" (project-root project))) |
| 156 | (should (member "etc" (project-ignores project dir))) | 158 | (should (member "etc" (project-ignores project dir))) |
| 157 | (should (equal '(".dir-locals.el" "foo") | 159 | (should (equal `(,@(when (version<= "2.13" (vc-git--program-version)) |
| 160 | (list ".dir-locals.el")) | ||
| 161 | "foo") | ||
| 158 | (mapcar #'file-name-nondirectory (project-files project)))))) | 162 | (mapcar #'file-name-nondirectory (project-files project)))))) |
| 159 | 163 | ||
| 160 | (ert-deftest project-vc-supports-files-in-subdirectory () | 164 | (ert-deftest project-vc-supports-files-in-subdirectory () |
| 161 | "Check that it lists only files from subdirectory." | 165 | "Check that it lists only files from a repo's subdirectory." |
| 162 | (skip-unless (eq (vc-responsible-backend default-directory) 'Git)) | 166 | (skip-unless (eq (vc-responsible-backend default-directory) 'Git)) |
| 163 | (let* ((dir (ert-resource-directory)) | 167 | (let* ((dir (ert-resource-directory)) |
| 164 | (_ (vc-file-clearprops dir)) | 168 | (_ (vc-file-clearprops dir)) |
| @@ -166,7 +170,27 @@ When `project-ignores' includes a name matching project dir." | |||
| 166 | (project (project-current nil dir))) | 170 | (project (project-current nil dir))) |
| 167 | (should-not (null project)) | 171 | (should-not (null project)) |
| 168 | (should (string-match-p "/test/lisp/progmodes/\\'" (project-root project))) | 172 | (should (string-match-p "/test/lisp/progmodes/\\'" (project-root project))) |
| 169 | (should (equal '(".dir-locals.el" "etc" "foo") | 173 | (should (equal `(,@(when (version<= "2.13" (vc-git--program-version)) |
| 174 | (list ".dir-locals.el")) | ||
| 175 | "foo") | ||
| 176 | (mapcar #'file-name-nondirectory | ||
| 177 | (project-files project | ||
| 178 | (list dir))))))) | ||
| 179 | |||
| 180 | (ert-deftest project-vc-ignores-in-external-directory () | ||
| 181 | "Check that it applies project-vc-ignores when DIR is external to root." | ||
| 182 | (skip-unless (eq (vc-responsible-backend default-directory) 'Git)) | ||
| 183 | (let* ((dir (ert-resource-directory)) | ||
| 184 | (_ (vc-file-clearprops dir)) | ||
| 185 | ;; Do not detect VC backend. | ||
| 186 | (project-vc-backend-markers-alist nil) | ||
| 187 | (project-vc-extra-root-markers '("configure.ac")) | ||
| 188 | (project (project-current nil (expand-file-name "../autoconf-resources/" dir)))) | ||
| 189 | (should-not (null project)) | ||
| 190 | (should (string-match-p "/test/lisp/progmodes/autoconf-resources/\\'" (project-root project))) | ||
| 191 | (should (equal `(,@(when (version<= "2.13" (vc-git--program-version)) | ||
| 192 | (list ".dir-locals.el")) | ||
| 193 | "foo") | ||
| 170 | (mapcar #'file-name-nondirectory | 194 | (mapcar #'file-name-nondirectory |
| 171 | (project-files project | 195 | (project-files project |
| 172 | (list dir))))))) | 196 | (list dir))))))) |
diff --git a/test/lisp/progmodes/ps-mode-tests.el b/test/lisp/progmodes/ps-mode-tests.el index 04b5346f006..bb8aabde15d 100644 --- a/test/lisp/progmodes/ps-mode-tests.el +++ b/test/lisp/progmodes/ps-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ps-mode-tests.el --- Test suite for ps-mode -*- lexical-binding:t -*- | 1 | ;;; ps-mode-tests.el --- Test suite for ps-mode -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/python-tests.el b/test/lisp/progmodes/python-tests.el index 6ddd57c9db2..eea35b864e1 100644 --- a/test/lisp/progmodes/python-tests.el +++ b/test/lisp/progmodes/python-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; python-tests.el --- Test suite for python.el -*- lexical-binding:t -*- | 1 | ;;; python-tests.el --- Test suite for python.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/ruby-mode-tests.el b/test/lisp/progmodes/ruby-mode-tests.el index 4aa8e1f348c..bf50eefffcb 100644 --- a/test/lisp/progmodes/ruby-mode-tests.el +++ b/test/lisp/progmodes/ruby-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ruby-mode-tests.el --- Test suite for ruby-mode -*- lexical-binding:t -*- | 1 | ;;; ruby-mode-tests.el --- Test suite for ruby-mode -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2012-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2012-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/ruby-ts-mode-tests.el b/test/lisp/progmodes/ruby-ts-mode-tests.el index cb2ddb1b841..d88eb46a385 100644 --- a/test/lisp/progmodes/ruby-ts-mode-tests.el +++ b/test/lisp/progmodes/ruby-ts-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ruby-mode-tests.el --- Test suite for ruby-mode -*- lexical-binding:t -*- | 1 | ;;; ruby-mode-tests.el --- Test suite for ruby-mode -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/rust-ts-mode-tests.el b/test/lisp/progmodes/rust-ts-mode-tests.el index 32d64260a87..0cd5d4201d5 100644 --- a/test/lisp/progmodes/rust-ts-mode-tests.el +++ b/test/lisp/progmodes/rust-ts-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; rust-ts-mode-tests.el --- Tests for rust-ts-mode -*- lexical-binding: t; -*- | 1 | ;;; rust-ts-mode-tests.el --- Tests for rust-ts-mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/scheme-tests.el b/test/lisp/progmodes/scheme-tests.el index 6940063fe88..31f5a6801cc 100644 --- a/test/lisp/progmodes/scheme-tests.el +++ b/test/lisp/progmodes/scheme-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; scheme-tests.el --- Test suite for scheme.el -*- lexical-binding:t -*- | 1 | ;;; scheme-tests.el --- Test suite for scheme.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/sh-script-tests.el b/test/lisp/progmodes/sh-script-tests.el index 4b9f9c8bb84..4627e5d1f6d 100644 --- a/test/lisp/progmodes/sh-script-tests.el +++ b/test/lisp/progmodes/sh-script-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; sh-script-tests.el --- Tests for sh-script.el -*- lexical-binding: t; -*- | 1 | ;;; sh-script-tests.el --- Tests for sh-script.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/sql-tests.el b/test/lisp/progmodes/sql-tests.el index 2e022c0e79f..4e687ed7ff6 100644 --- a/test/lisp/progmodes/sql-tests.el +++ b/test/lisp/progmodes/sql-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; sql-tests.el --- Tests for sql.el -*- lexical-binding: t; -*- | 1 | ;;; sql-tests.el --- Tests for sql.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/progmodes/subword-tests.el b/test/lisp/progmodes/subword-tests.el index 3506695c3d4..9ea923caeb8 100644 --- a/test/lisp/progmodes/subword-tests.el +++ b/test/lisp/progmodes/subword-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; subword-tests.el --- Testing the subword rules -*- lexical-binding:t -*- | 1 | ;;; subword-tests.el --- Testing the subword rules -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2011-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2011-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> | 5 | ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/progmodes/tcl-tests.el b/test/lisp/progmodes/tcl-tests.el index 9ea164447fe..6da7bce991b 100644 --- a/test/lisp/progmodes/tcl-tests.el +++ b/test/lisp/progmodes/tcl-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; tcl-tests.el --- Test suite for tcl-mode -*- lexical-binding:t -*- | 1 | ;;; tcl-tests.el --- Test suite for tcl-mode -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/typescript-ts-mode-tests.el b/test/lisp/progmodes/typescript-ts-mode-tests.el index fe5d2c7ccae..977a0f44a20 100644 --- a/test/lisp/progmodes/typescript-ts-mode-tests.el +++ b/test/lisp/progmodes/typescript-ts-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; typescript-ts-mode-tests.el --- Tests for Tree-sitter-based TypeScript mode -*- lexical-binding: t; -*- | 1 | ;;; typescript-ts-mode-tests.el --- Tests for Tree-sitter-based TypeScript mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/which-func-tests.el b/test/lisp/progmodes/which-func-tests.el index bda742fefe3..34739c48c41 100644 --- a/test/lisp/progmodes/which-func-tests.el +++ b/test/lisp/progmodes/which-func-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; which-func-tests.el --- tests for which-func -*- lexical-binding: t; -*- | 1 | ;;; which-func-tests.el --- tests for which-func -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Spencer Baugh <sbaugh@catern.com> | 5 | ;; Author: Spencer Baugh <sbaugh@catern.com> |
| 6 | 6 | ||
diff --git a/test/lisp/progmodes/xref-tests.el b/test/lisp/progmodes/xref-tests.el index bff64925e07..3a6df4949a3 100644 --- a/test/lisp/progmodes/xref-tests.el +++ b/test/lisp/progmodes/xref-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; xref-tests.el --- tests for xref -*- lexical-binding:t -*- | 1 | ;;; xref-tests.el --- tests for xref -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Dmitry Gutov <dgutov@yandex.ru> | 5 | ;; Author: Dmitry Gutov <dgutov@yandex.ru> |
| 6 | 6 | ||
diff --git a/test/lisp/ps-print-tests.el b/test/lisp/ps-print-tests.el index 533fa9c8f77..4835ee73d2b 100644 --- a/test/lisp/ps-print-tests.el +++ b/test/lisp/ps-print-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ps-print-tests.el --- Test suite for ps-print.el -*- lexical-binding: t; -*- | 1 | ;;; ps-print-tests.el --- Test suite for ps-print.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Phillip Lord <phillip.lord@russet.org.uk> | 5 | ;; Author: Phillip Lord <phillip.lord@russet.org.uk> |
| 6 | 6 | ||
diff --git a/test/lisp/register-tests.el b/test/lisp/register-tests.el index b1c470ab519..d97b4a0bee9 100644 --- a/test/lisp/register-tests.el +++ b/test/lisp/register-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; register-tests.el --- tests for register.el -*- lexical-binding: t-*- | 1 | ;;; register-tests.el --- tests for register.el -*- lexical-binding: t-*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> | 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/repeat-tests.el b/test/lisp/repeat-tests.el index 480fffc05ef..1aa101265fe 100644 --- a/test/lisp/repeat-tests.el +++ b/test/lisp/repeat-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; repeat-tests.el --- Tests for repeat.el -*- lexical-binding: t; -*- | 1 | ;;; repeat-tests.el --- Tests for repeat.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Juri Linkov <juri@linkov.net> | 5 | ;; Author: Juri Linkov <juri@linkov.net> |
| 6 | 6 | ||
diff --git a/test/lisp/replace-tests.el b/test/lisp/replace-tests.el index fc93e614898..15140ca46c5 100644 --- a/test/lisp/replace-tests.el +++ b/test/lisp/replace-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; replace-tests.el --- tests for replace.el. -*- lexical-binding:t -*- | 1 | ;;; replace-tests.el --- tests for replace.el. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2010-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2010-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Nicolas Richard <youngfrog@members.fsf.org> | 5 | ;; Author: Nicolas Richard <youngfrog@members.fsf.org> |
| 6 | ;; Author: Juri Linkov <juri@jurta.org> | 6 | ;; Author: Juri Linkov <juri@jurta.org> |
diff --git a/test/lisp/rot13-tests.el b/test/lisp/rot13-tests.el index c3800ec06e2..fbbc66056a2 100644 --- a/test/lisp/rot13-tests.el +++ b/test/lisp/rot13-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; rot13-tests.el --- Tests for rot13.el -*- lexical-binding: t; -*- | 1 | ;;; rot13-tests.el --- Tests for rot13.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/savehist-tests.el b/test/lisp/savehist-tests.el index ec4acbad453..3fe889f32a6 100644 --- a/test/lisp/savehist-tests.el +++ b/test/lisp/savehist-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; savehist-tests.el --- Tests for savehist.el -*- lexical-binding:t -*- | 1 | ;;; savehist-tests.el --- Tests for savehist.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stephane Marks <shipmints@gmail.com> | 5 | ;; Author: Stephane Marks <shipmints@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/saveplace-tests.el b/test/lisp/saveplace-tests.el index a694dacff8d..0b464c1105d 100644 --- a/test/lisp/saveplace-tests.el +++ b/test/lisp/saveplace-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; saveplace-tests.el --- Tests for saveplace.el -*- lexical-binding:t -*- | 1 | ;;; saveplace-tests.el --- Tests for saveplace.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/scroll-lock-tests.el b/test/lisp/scroll-lock-tests.el index b4e96eb5076..8e61edb6e57 100644 --- a/test/lisp/scroll-lock-tests.el +++ b/test/lisp/scroll-lock-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; scroll-lock-tests.el --- Test suite for scroll-lock -*- lexical-binding: t -*- | 1 | ;;; scroll-lock-tests.el --- Test suite for scroll-lock -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/server-tests.el b/test/lisp/server-tests.el index aa124f099c7..a96dc85074d 100644 --- a/test/lisp/server-tests.el +++ b/test/lisp/server-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; server-tests.el --- Emacs server test suite -*- lexical-binding:t -*- | 1 | ;;; server-tests.el --- Emacs server test suite -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/ses-tests.el b/test/lisp/ses-tests.el index e34350ebf2a..73f7be3145d 100644 --- a/test/lisp/ses-tests.el +++ b/test/lisp/ses-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; SES-tests.el --- Tests for ses.el -*- lexical-binding: t; -*- | 1 | ;;; SES-tests.el --- Tests for ses.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Vincent Belaïche <vincentb1@users.sourceforge.net> | 5 | ;; Author: Vincent Belaïche <vincentb1@users.sourceforge.net> |
| 6 | 6 | ||
diff --git a/test/lisp/shadowfile-tests.el b/test/lisp/shadowfile-tests.el index c5af587e527..6d81d433f13 100644 --- a/test/lisp/shadowfile-tests.el +++ b/test/lisp/shadowfile-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; shadowfile-tests.el --- Tests of shadowfile -*- lexical-binding:t -*- | 1 | ;;; shadowfile-tests.el --- Tests of shadowfile -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> | 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> |
| 6 | 6 | ||
diff --git a/test/lisp/shell-tests.el b/test/lisp/shell-tests.el index 2a9d54a1190..7850d9db6da 100644 --- a/test/lisp/shell-tests.el +++ b/test/lisp/shell-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; shell-tests.el --- Tests for shell.el -*- lexical-binding:t -*- | 1 | ;;; shell-tests.el --- Tests for shell.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2010-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2010-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/simple-tests.el b/test/lisp/simple-tests.el index e638f8cb3f5..ea483d0d1dc 100644 --- a/test/lisp/simple-tests.el +++ b/test/lisp/simple-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; simple-tests.el --- Tests for simple.el -*- lexical-binding: t; -*- | 1 | ;;; simple-tests.el --- Tests for simple.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> | 5 | ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/so-long-tests/autoload-longlines-mode-tests.el b/test/lisp/so-long-tests/autoload-longlines-mode-tests.el index 9b54c4308bd..27b7bab3442 100644 --- a/test/lisp/so-long-tests/autoload-longlines-mode-tests.el +++ b/test/lisp/so-long-tests/autoload-longlines-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; autoload-longlines-mode-tests.el --- Test suite for so-long.el -*- lexical-binding: t; -*- | 1 | ;;; autoload-longlines-mode-tests.el --- Test suite for so-long.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Phil Sainty <psainty@orcon.net.nz> | 5 | ;; Author: Phil Sainty <psainty@orcon.net.nz> |
| 6 | ;; Keywords: convenience | 6 | ;; Keywords: convenience |
diff --git a/test/lisp/so-long-tests/autoload-major-mode-tests.el b/test/lisp/so-long-tests/autoload-major-mode-tests.el index 6cd6669a3fc..5131b74c81c 100644 --- a/test/lisp/so-long-tests/autoload-major-mode-tests.el +++ b/test/lisp/so-long-tests/autoload-major-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; autoload-major-mode-tests.el --- Test suite for so-long.el -*- lexical-binding: t; -*- | 1 | ;;; autoload-major-mode-tests.el --- Test suite for so-long.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Phil Sainty <psainty@orcon.net.nz> | 5 | ;; Author: Phil Sainty <psainty@orcon.net.nz> |
| 6 | ;; Keywords: convenience | 6 | ;; Keywords: convenience |
diff --git a/test/lisp/so-long-tests/autoload-minor-mode-tests.el b/test/lisp/so-long-tests/autoload-minor-mode-tests.el index cbf2cdea836..aa960689f96 100644 --- a/test/lisp/so-long-tests/autoload-minor-mode-tests.el +++ b/test/lisp/so-long-tests/autoload-minor-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; autoload-minor-mode-tests.el --- Test suite for so-long.el -*- lexical-binding: t; -*- | 1 | ;;; autoload-minor-mode-tests.el --- Test suite for so-long.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Phil Sainty <psainty@orcon.net.nz> | 5 | ;; Author: Phil Sainty <psainty@orcon.net.nz> |
| 6 | ;; Keywords: convenience | 6 | ;; Keywords: convenience |
diff --git a/test/lisp/so-long-tests/so-long-tests-helpers.el b/test/lisp/so-long-tests/so-long-tests-helpers.el index 9c8b34fc175..2c979a705ca 100644 --- a/test/lisp/so-long-tests/so-long-tests-helpers.el +++ b/test/lisp/so-long-tests/so-long-tests-helpers.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; so-long-tests-helpers.el --- Test suite for so-long.el -*- lexical-binding: t; -*- | 1 | ;;; so-long-tests-helpers.el --- Test suite for so-long.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Phil Sainty <psainty@orcon.net.nz> | 5 | ;; Author: Phil Sainty <psainty@orcon.net.nz> |
| 6 | ;; Keywords: convenience | 6 | ;; Keywords: convenience |
diff --git a/test/lisp/so-long-tests/so-long-tests.el b/test/lisp/so-long-tests/so-long-tests.el index 779307e6332..94aa4bea745 100644 --- a/test/lisp/so-long-tests/so-long-tests.el +++ b/test/lisp/so-long-tests/so-long-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; so-long-tests.el --- Test suite for so-long.el -*- lexical-binding: t; -*- | 1 | ;;; so-long-tests.el --- Test suite for so-long.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Phil Sainty <psainty@orcon.net.nz> | 5 | ;; Author: Phil Sainty <psainty@orcon.net.nz> |
| 6 | ;; Keywords: convenience | 6 | ;; Keywords: convenience |
diff --git a/test/lisp/so-long-tests/spelling-tests.el b/test/lisp/so-long-tests/spelling-tests.el index 4c2a5c98d02..37a721e6c38 100644 --- a/test/lisp/so-long-tests/spelling-tests.el +++ b/test/lisp/so-long-tests/spelling-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; spelling-tests.el --- Test suite for so-long.el -*- lexical-binding: t; -*- | 1 | ;;; spelling-tests.el --- Test suite for so-long.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Phil Sainty <psainty@orcon.net.nz> | 5 | ;; Author: Phil Sainty <psainty@orcon.net.nz> |
| 6 | ;; Keywords: convenience | 6 | ;; Keywords: convenience |
diff --git a/test/lisp/sort-tests.el b/test/lisp/sort-tests.el index fab88b8f0bd..c1534c5be75 100644 --- a/test/lisp/sort-tests.el +++ b/test/lisp/sort-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; sort-tests.el --- Tests for sort.el -*- lexical-binding: t; -*- | 1 | ;;; sort-tests.el --- Tests for sort.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> | 5 | ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/soundex-tests.el b/test/lisp/soundex-tests.el index 82fcafbe3a4..726c7cd261a 100644 --- a/test/lisp/soundex-tests.el +++ b/test/lisp/soundex-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; soundex-tests.el --- tests for soundex.el -*- lexical-binding: t -*- | 1 | ;;; soundex-tests.el --- tests for soundex.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Maintainer: emacs-devel@gnu.org | 5 | ;; Maintainer: emacs-devel@gnu.org |
| 6 | 6 | ||
diff --git a/test/lisp/speedbar-tests.el b/test/lisp/speedbar-tests.el index 7bf327807f2..7053f741b27 100644 --- a/test/lisp/speedbar-tests.el +++ b/test/lisp/speedbar-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; speedbar-tests.el --- Tests for speedbar.el -*- lexical-binding: t -*- | 1 | ;;; speedbar-tests.el --- Tests for speedbar.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/sqlite-tests.el b/test/lisp/sqlite-tests.el index 60c1cdf9561..2b54b54598d 100644 --- a/test/lisp/sqlite-tests.el +++ b/test/lisp/sqlite-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; sqlite-tests.el --- Tests for sqlite.el -*- lexical-binding: t; -*- | 1 | ;;; sqlite-tests.el --- Tests for sqlite.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/startup-tests.el b/test/lisp/startup-tests.el index 59290ad4806..f642032ae26 100644 --- a/test/lisp/startup-tests.el +++ b/test/lisp/startup-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; startup-tests.el --- unit tests for startup.el -*- lexical-binding: t; -*- | 1 | ;;; startup-tests.el --- unit tests for startup.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Philipp Stephani <phst@google.com> | 5 | ;; Author: Philipp Stephani <phst@google.com> |
| 6 | 6 | ||
diff --git a/test/lisp/subr-tests.el b/test/lisp/subr-tests.el index 47ff8b6da01..4d9237f08b6 100644 --- a/test/lisp/subr-tests.el +++ b/test/lisp/subr-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; subr-tests.el --- Tests for subr.el -*- lexical-binding:t -*- | 1 | ;;; subr-tests.el --- Tests for subr.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Oleh Krehel <ohwoeowho@gmail.com>, | 5 | ;; Author: Oleh Krehel <ohwoeowho@gmail.com>, |
| 6 | ;; Nicolas Petton <nicolas@petton.fr> | 6 | ;; Nicolas Petton <nicolas@petton.fr> |
| @@ -1539,7 +1539,105 @@ final or penultimate step during initialization.")) | |||
| 1539 | (should (equal (split-string text seps t trim) | 1539 | (should (equal (split-string text seps t trim) |
| 1540 | '("lexical-binding: t;"))) | 1540 | '("lexical-binding: t;"))) |
| 1541 | (should (equal (split-string text "[ \t\n\r-]*-\\*-[ \t\n\r-]*") | 1541 | (should (equal (split-string text "[ \t\n\r-]*-\\*-[ \t\n\r-]*") |
| 1542 | '("" "lexical-binding: t;" ""))))) | 1542 | '("" "lexical-binding: t;" "")))) |
| 1543 | |||
| 1544 | ;; splitting the empty string | ||
| 1545 | (should (equal (split-string "" ",") '(""))) | ||
| 1546 | (should (equal (split-string "" "," t) '())) | ||
| 1547 | (should (equal (split-string "," ",") '("" ""))) | ||
| 1548 | (should (equal (split-string "," "," t) '())) | ||
| 1549 | (should (equal (split-string ",," ",") '("" "" ""))) | ||
| 1550 | (should (equal (split-string ",," "," t) '())) | ||
| 1551 | (should (equal (split-string ",," ",+") '("" ""))) | ||
| 1552 | (should (equal (split-string ",," ",+" t) '())) | ||
| 1553 | |||
| 1554 | ;; simple | ||
| 1555 | (should (equal (split-string "A" ",") '("A"))) | ||
| 1556 | (should (equal (split-string "A," ",") '("A" ""))) | ||
| 1557 | (should (equal (split-string "A," "," t) '("A"))) | ||
| 1558 | (should (equal (split-string "A,B" ",") '("A" "B"))) | ||
| 1559 | |||
| 1560 | (should (equal (split-string ",A,B,,CD" ",") '("" "A" "B" "" "CD"))) | ||
| 1561 | (should (equal (split-string ",A,B,,CD" "," t) '("A" "B" "CD"))) | ||
| 1562 | (should (equal (split-string ",A,B,,CD" ",+") '("" "A" "B" "CD"))) | ||
| 1563 | (should (equal (split-string ",A,B,,CD" ",+" t) '("A" "B" "CD"))) | ||
| 1564 | |||
| 1565 | ;; TRIM | ||
| 1566 | (should (equal (split-string "---,---A---,---B---,---,---C---D---" | ||
| 1567 | ",+" nil "-") | ||
| 1568 | '("-" "--A--" "--B--" "-" "--C---D--"))) | ||
| 1569 | (should (equal (split-string "---,---A---,---B---,---,---C---D---" | ||
| 1570 | ",+" nil "-+") | ||
| 1571 | '("" "A" "B" "" "C---D"))) | ||
| 1572 | (should (equal (split-string "---,---A---,---B---,---,---C---D---" | ||
| 1573 | ",+" t "-+") | ||
| 1574 | '("A" "B" "C---D"))) | ||
| 1575 | (should (equal (split-string "---,---A---,---B---,---,---C---D---," | ||
| 1576 | ",+" nil "-") | ||
| 1577 | '("-" "--A--" "--B--" "-" "--C---D--" ""))) | ||
| 1578 | (should (equal (split-string "---,---A---,---B---,---,---C---D---," | ||
| 1579 | ",+" nil "-+") | ||
| 1580 | '("" "A" "B" "" "C---D" ""))) | ||
| 1581 | (should (equal (split-string "---,---A---,---B---,---,---C---D---," | ||
| 1582 | ",+" t "-+") | ||
| 1583 | '("A" "B" "C---D"))) | ||
| 1584 | |||
| 1585 | ;; default SEPARATORS forces OMIT-EMPTY to `t' | ||
| 1586 | (should (equal (split-string " \nAB\tCDE\f\r\fF \f\v") | ||
| 1587 | '("AB" "CDE" "F"))) | ||
| 1588 | |||
| 1589 | ;; complex TRIM | ||
| 1590 | (should (equal (split-string "A--,--B,//C,D//,E//F,G--H,//I--//J--,//--//--" | ||
| 1591 | "," nil "--\\|//") | ||
| 1592 | '("A" "B" "C" "D" "E//F" "G--H" "I--//J" "--//"))) | ||
| 1593 | |||
| 1594 | ;; TRIM that also matches part of SEPARATORS | ||
| 1595 | (should (equal (split-string "-/-A-B-/-C--/--D--" "-/-" nil nil) | ||
| 1596 | '("" "A-B" "C-" "-D--"))) | ||
| 1597 | (should (equal (split-string "-/-A-B-/-C--/--D--" "-/-" nil "-") | ||
| 1598 | '("" "A-B" "C" "D-"))) | ||
| 1599 | (should (equal (split-string "-/-A-B-/-C--/--D--" "-/-" nil "-+") | ||
| 1600 | '("" "A-B" "C" "D"))) | ||
| 1601 | |||
| 1602 | ;; When SEPARATORS is the empty string, split on characters and add | ||
| 1603 | ;; empty strings first and last because that's how the original | ||
| 1604 | ;; implementation worked. Some code actually uses this on purpose (!) so | ||
| 1605 | ;; we probably need to retain that behaviour for a while. | ||
| 1606 | (should (equal (split-string "ABC" "") | ||
| 1607 | '("" "A" "B" "C" ""))) | ||
| 1608 | (should (equal (split-string "ABC" "" t) | ||
| 1609 | '("A" "B" "C"))) | ||
| 1610 | ) | ||
| 1611 | |||
| 1612 | (ert-deftest subr-string-trim-left () | ||
| 1613 | (should (equal (string-trim-left "") "")) | ||
| 1614 | (should (equal (string-trim-left " \t\n\r") "")) | ||
| 1615 | (should (equal (string-trim-left " \t\n\ra") "a")) | ||
| 1616 | (should (equal (string-trim-left "a \t\n\r") "a \t\n\r")) | ||
| 1617 | (should (equal (string-trim-left "" "") "")) | ||
| 1618 | (should (equal (string-trim-left "a" "") "a")) | ||
| 1619 | (should (equal (string-trim-left "aa" "a*") "")) | ||
| 1620 | (should (equal (string-trim-left "ba" "a*") "ba")) | ||
| 1621 | (should (equal (string-trim-left "aa" "a*?") "aa")) | ||
| 1622 | (should (equal (string-trim-left "aa" "a+?") "a"))) | ||
| 1623 | |||
| 1624 | (ert-deftest subr-string-trim-right () | ||
| 1625 | (should (equal (string-trim-right "") "")) | ||
| 1626 | (should (equal (string-trim-right " \t\n\r") "")) | ||
| 1627 | (should (equal (string-trim-right " \t\n\ra") " \t\n\ra")) | ||
| 1628 | (should (equal (string-trim-right "a \t\n\r") "a")) | ||
| 1629 | (should (equal (string-trim-right "" "") "")) | ||
| 1630 | (should (equal (string-trim-right "a" "") "a")) | ||
| 1631 | (should (equal (string-trim-right "aa" "a*") "")) | ||
| 1632 | (should (equal (string-trim-right "ab" "a*") "ab")) | ||
| 1633 | (should (equal (string-trim-right "aa" "a*?") ""))) | ||
| 1634 | |||
| 1635 | (ert-deftest subr-string-trim () | ||
| 1636 | (should (equal (string-trim " \t\r abc\t\n \t") "abc")) | ||
| 1637 | (should (equal (string-trim "::abc;;" nil nil) "::abc;;")) | ||
| 1638 | (should (equal (string-trim "::abc;;" nil ";+") "::abc")) | ||
| 1639 | (should (equal (string-trim "::abc;;" ":+" nil) "abc;;")) | ||
| 1640 | (should (equal (string-trim "::abc;;" ":+" ";+") "abc"))) | ||
| 1543 | 1641 | ||
| 1544 | (defun subr--identity (x) x) | 1642 | (defun subr--identity (x) x) |
| 1545 | 1643 | ||
| @@ -1596,5 +1694,20 @@ final or penultimate step during initialization.")) | |||
| 1596 | (should (equal (funcall (subr--identity #'any) #'minusp ls) '(-1 -2 -3))) | 1694 | (should (equal (funcall (subr--identity #'any) #'minusp ls) '(-1 -2 -3))) |
| 1597 | (should (equal (funcall (subr--identity #'any) #'stringp ls) nil)))) | 1695 | (should (equal (funcall (subr--identity #'any) #'stringp ls) nil)))) |
| 1598 | 1696 | ||
| 1697 | (ert-deftest total-line-spacing () | ||
| 1698 | (progn | ||
| 1699 | (let ((line-spacing 10)) | ||
| 1700 | (should (equal (total-line-spacing) line-spacing) )) | ||
| 1701 | (let ((line-spacing 0.8)) | ||
| 1702 | (should (equal (total-line-spacing) 0.8))) | ||
| 1703 | (let ((line-spacing '(10 . 5))) | ||
| 1704 | (should (equal (total-line-spacing) 15))) | ||
| 1705 | (let ((line-spacing '(0.3 . 0.4))) | ||
| 1706 | (should (equal (total-line-spacing) 0.7))) | ||
| 1707 | (should (equal (total-line-spacing 10) 10)) | ||
| 1708 | (should (equal (total-line-spacing 0.3) 0.3)) | ||
| 1709 | (should (equal (total-line-spacing '(1 . 3)) 4)) | ||
| 1710 | (should (equal (total-line-spacing '(0.1 . 0.1 )) 0.2)))) | ||
| 1711 | |||
| 1599 | (provide 'subr-tests) | 1712 | (provide 'subr-tests) |
| 1600 | ;;; subr-tests.el ends here | 1713 | ;;; subr-tests.el ends here |
diff --git a/test/lisp/tab-bar-tests.el b/test/lisp/tab-bar-tests.el index 98bf61df177..46aa1f2a845 100644 --- a/test/lisp/tab-bar-tests.el +++ b/test/lisp/tab-bar-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; tab-bar-tests.el --- Tests for tab-bar.el -*- lexical-binding: t; -*- | 1 | ;;; tab-bar-tests.el --- Tests for tab-bar.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Juri Linkov <juri@linkov.net> | 5 | ;; Author: Juri Linkov <juri@linkov.net> |
| 6 | 6 | ||
diff --git a/test/lisp/tabify-tests.el b/test/lisp/tabify-tests.el index 5015960291a..c3f05f121d0 100644 --- a/test/lisp/tabify-tests.el +++ b/test/lisp/tabify-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; tabify-tests.el --- tests for tabify.el -*- lexical-binding: t -*- | 1 | ;;; tabify-tests.el --- tests for tabify.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/tar-mode-tests.el b/test/lisp/tar-mode-tests.el index c7054a201dc..92e1230bfe9 100644 --- a/test/lisp/tar-mode-tests.el +++ b/test/lisp/tar-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; tar-mode-tests.el --- Test suite for tar-mode. -*- lexical-binding: t -*- | 1 | ;;; tar-mode-tests.el --- Test suite for tar-mode. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/tempo-tests.el b/test/lisp/tempo-tests.el index 85fd4fb7240..74923f07abb 100644 --- a/test/lisp/tempo-tests.el +++ b/test/lisp/tempo-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; tempo-tests.el --- Test suite for tempo.el -*- lexical-binding: t; -*- | 1 | ;;; tempo-tests.el --- Test suite for tempo.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Federico Tedin <federicotedin@gmail.com> | 5 | ;; Author: Federico Tedin <federicotedin@gmail.com> |
| 6 | ;; Keywords: abbrev | 6 | ;; Keywords: abbrev |
diff --git a/test/lisp/term-tests.el b/test/lisp/term-tests.el index 53701fad1eb..72a05e138d7 100644 --- a/test/lisp/term-tests.el +++ b/test/lisp/term-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; term-tests.el --- tests for term.el -*- lexical-binding: t -*- | 1 | ;;; term-tests.el --- tests for term.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017, 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017, 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/term/tty-colors-tests.el b/test/lisp/term/tty-colors-tests.el index f678e223860..c7df563fc5c 100644 --- a/test/lisp/term/tty-colors-tests.el +++ b/test/lisp/term/tty-colors-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; tty-colors-tests.el --- tests for tty-colors.el -*- lexical-binding: t -*- | 1 | ;;; tty-colors-tests.el --- tests for tty-colors.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/textmodes/bibtex-tests.el b/test/lisp/textmodes/bibtex-tests.el index b370909ba6c..700e292ae35 100644 --- a/test/lisp/textmodes/bibtex-tests.el +++ b/test/lisp/textmodes/bibtex-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; bibtex-tests.el --- Test suite for bibtex. -*- lexical-binding:t -*- | 1 | ;;; bibtex-tests.el --- Test suite for bibtex. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Keywords: bibtex | 5 | ;; Keywords: bibtex |
| 6 | 6 | ||
diff --git a/test/lisp/textmodes/conf-mode-tests.el b/test/lisp/textmodes/conf-mode-tests.el index 056c73a1ff7..c5006c5270c 100644 --- a/test/lisp/textmodes/conf-mode-tests.el +++ b/test/lisp/textmodes/conf-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; conf-mode-tests.el --- Test suite for conf mode -*- lexical-binding: t; -*- | 1 | ;;; conf-mode-tests.el --- Test suite for conf mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: J. Alexander Branham <alex.branham@gmail.com> | 5 | ;; Author: J. Alexander Branham <alex.branham@gmail.com> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/lisp/textmodes/css-mode-tests.el b/test/lisp/textmodes/css-mode-tests.el index 3d78ac0c509..bb0cd95eb16 100644 --- a/test/lisp/textmodes/css-mode-tests.el +++ b/test/lisp/textmodes/css-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; css-mode-tests.el --- Test suite for CSS mode -*- lexical-binding: t; -*- | 1 | ;;; css-mode-tests.el --- Test suite for CSS mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/lisp/textmodes/dns-mode-tests.el b/test/lisp/textmodes/dns-mode-tests.el index 43f38254038..87bbdbd0827 100644 --- a/test/lisp/textmodes/dns-mode-tests.el +++ b/test/lisp/textmodes/dns-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; dns-mode-tests.el --- Test suite for dns-mode -*- lexical-binding: t; -*- | 1 | ;;; dns-mode-tests.el --- Test suite for dns-mode -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Peder O. Klingenberg <peder@klingenberg.no> | 5 | ;; Author: Peder O. Klingenberg <peder@klingenberg.no> |
| 6 | ;; Keywords: dns zone | 6 | ;; Keywords: dns zone |
diff --git a/test/lisp/textmodes/emacs-news-mode-tests.el b/test/lisp/textmodes/emacs-news-mode-tests.el index 63c52a8072c..271d5c91ebf 100644 --- a/test/lisp/textmodes/emacs-news-mode-tests.el +++ b/test/lisp/textmodes/emacs-news-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; emacs-news-mode-tests.el --- Tests for emacs-news-mode.el -*- lexical-binding: t -*- | 1 | ;;; emacs-news-mode-tests.el --- Tests for emacs-news-mode.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/textmodes/fill-tests.el b/test/lisp/textmodes/fill-tests.el index c88a8b8c5b5..2bb9d3ea163 100644 --- a/test/lisp/textmodes/fill-tests.el +++ b/test/lisp/textmodes/fill-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; fill-tests.el --- ERT tests for fill.el -*- lexical-binding: t -*- | 1 | ;;; fill-tests.el --- ERT tests for fill.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Marcin Borkowski <mbork@mbork.pl> | 5 | ;; Author: Marcin Borkowski <mbork@mbork.pl> |
| 6 | ;; Keywords: text | 6 | ;; Keywords: text |
diff --git a/test/lisp/textmodes/ispell-tests/ispell-tests.el b/test/lisp/textmodes/ispell-tests/ispell-tests.el index 8f733d05d2c..95f88be3b51 100644 --- a/test/lisp/textmodes/ispell-tests/ispell-tests.el +++ b/test/lisp/textmodes/ispell-tests/ispell-tests.el | |||
| @@ -135,7 +135,7 @@ Give `ispell-program-name' a real spellchecker." | |||
| 135 | "Check that `ispell-call-process' works. | 135 | "Check that `ispell-call-process' works. |
| 136 | This test fails, because HOME is not defined. | 136 | This test fails, because HOME is not defined. |
| 137 | This should not be the case, because `ispell-call-process' | 137 | This should not be the case, because `ispell-call-process' |
| 138 | whould be making sure that the directory for running | 138 | would be making sure that the directory for running |
| 139 | the backend's process exists." | 139 | the backend's process exists." |
| 140 | :expected-result :failed | 140 | :expected-result :failed |
| 141 | (should | 141 | (should |
| @@ -175,7 +175,7 @@ makes it useless." | |||
| 175 | (equal (buffer-string) string-to-send)))))) | 175 | (equal (buffer-string) string-to-send)))))) |
| 176 | 176 | ||
| 177 | (ert-deftest ispell/ispell-call-process-region/cat-random () | 177 | (ert-deftest ispell/ispell-call-process-region/cat-random () |
| 178 | "Check `ispell-call-process-region' works with unrelad process. | 178 | "Check `ispell-call-process-region' works with unrelated process. |
| 179 | This test is expected to fail, because at the moment, there is | 179 | This test is expected to fail, because at the moment, there is |
| 180 | a construction (let ((default-directory `default-directory'))...) in | 180 | a construction (let ((default-directory `default-directory'))...) in |
| 181 | the `ispell-with-safe-default-directory' function, which effectively | 181 | the `ispell-with-safe-default-directory' function, which effectively |
| @@ -212,7 +212,7 @@ makes it useless." | |||
| 212 | This function only works for aspell and ispell, for hunspell and | 212 | This function only works for aspell and ispell, for hunspell and |
| 213 | enchant-2 it always returns either default or everything. | 213 | enchant-2 it always returns either default or everything. |
| 214 | I think this is an issue in itself, but this test is added to verify | 214 | I think this is an issue in itself, but this test is added to verify |
| 215 | that changes to third-party code do not break existing behaviour." | 215 | that changes to third-party code do not break existing behavior." |
| 216 | (skip-unless (executable-find "hunspell")) | 216 | (skip-unless (executable-find "hunspell")) |
| 217 | (skip-unless (equal 0 (call-process "hunspell" nil nil nil))) | 217 | (skip-unless (equal 0 (call-process "hunspell" nil nil nil))) |
| 218 | (ispell-tests--letopt | 218 | (ispell-tests--letopt |
| @@ -233,7 +233,7 @@ that changes to third-party code do not break existing behaviour." | |||
| 233 | This function only works for aspell and ispell, for hunspell and | 233 | This function only works for aspell and ispell, for hunspell and |
| 234 | enchant-2 it always returns either default or everything. | 234 | enchant-2 it always returns either default or everything. |
| 235 | I think this is an issue in itself, but this test is added to verify | 235 | I think this is an issue in itself, but this test is added to verify |
| 236 | that changes to third-party code do not break existing behaviour." | 236 | that changes to third-party code do not break existing behavior." |
| 237 | (skip-unless (executable-find "hunspell")) | 237 | (skip-unless (executable-find "hunspell")) |
| 238 | (skip-unless (equal 0 (call-process "hunspell" nil nil nil))) | 238 | (skip-unless (equal 0 (call-process "hunspell" nil nil nil))) |
| 239 | (ispell-tests--letopt | 239 | (ispell-tests--letopt |
| @@ -254,7 +254,7 @@ that changes to third-party code do not break existing behaviour." | |||
| 254 | This function only works for aspell and ispell, for hunspell and | 254 | This function only works for aspell and ispell, for hunspell and |
| 255 | enchant-2 it always returns either default or everything. | 255 | enchant-2 it always returns either default or everything. |
| 256 | I think this is an issue in itself, but this test is added to verify | 256 | I think this is an issue in itself, but this test is added to verify |
| 257 | that changes to third-party code do not break existing behaviour." | 257 | that changes to third-party code do not break existing behavior." |
| 258 | (skip-unless (executable-find "enchant-2")) | 258 | (skip-unless (executable-find "enchant-2")) |
| 259 | (ispell-tests--letopt | 259 | (ispell-tests--letopt |
| 260 | ((ispell-program-name "enchant-2") | 260 | ((ispell-program-name "enchant-2") |
| @@ -274,7 +274,7 @@ that changes to third-party code do not break existing behaviour." | |||
| 274 | This function only works for aspell and ispell, for hunspell and | 274 | This function only works for aspell and ispell, for hunspell and |
| 275 | enchant-2 it always returns either default or everything. | 275 | enchant-2 it always returns either default or everything. |
| 276 | I think this is an issue in itself, but this test is added to verify | 276 | I think this is an issue in itself, but this test is added to verify |
| 277 | that changes to third-party code do not break existing behaviour." | 277 | that changes to third-party code do not break existing behavior." |
| 278 | (skip-unless (executable-find "enchant-2")) | 278 | (skip-unless (executable-find "enchant-2")) |
| 279 | (ispell-tests--letopt | 279 | (ispell-tests--letopt |
| 280 | ((ispell-program-name "enchant-2") | 280 | ((ispell-program-name "enchant-2") |
| @@ -525,8 +525,8 @@ presumably nobody will have `ispell-tests--constants/english/wrong' | |||
| 525 | (expand-file-name | 525 | (expand-file-name |
| 526 | (format "%s" (random)) | 526 | (format "%s" (random)) |
| 527 | temporary-file-directory)))) | 527 | temporary-file-directory)))) |
| 528 | (ert-deftest ispell/ispell-buffer-local-dict/no-reload+no-overriden () | 528 | (ert-deftest ispell/ispell-buffer-local-dict/no-reload+no-overridden () |
| 529 | "ispell.el can recognise keyword-defined dictionary and keyword-defined | 529 | "ispell.el can recognize keyword-defined dictionary and keyword-defined |
| 530 | personal-dictionary." | 530 | personal-dictionary." |
| 531 | (with-temp-buffer | 531 | (with-temp-buffer |
| 532 | (nxml-mode) | 532 | (nxml-mode) |
| @@ -541,8 +541,8 @@ personal-dictionary." | |||
| 541 | (should (equal ispell-local-pdict test-pdict))) | 541 | (should (equal ispell-local-pdict test-pdict))) |
| 542 | possible-pdict-paths)))) | 542 | possible-pdict-paths)))) |
| 543 | 543 | ||
| 544 | (ert-deftest ispell/ispell-buffer-local-dict/reload+no-overriden () | 544 | (ert-deftest ispell/ispell-buffer-local-dict/reload+no-overridden () |
| 545 | "ispell.el can recognise keyword-defined dictionary and keyword-defined | 545 | "ispell.el can recognize keyword-defined dictionary and keyword-defined |
| 546 | personal-dictionary." | 546 | personal-dictionary." |
| 547 | :expected-result :failed | 547 | :expected-result :failed |
| 548 | (with-temp-buffer | 548 | (with-temp-buffer |
| @@ -559,8 +559,8 @@ personal-dictionary." | |||
| 559 | (should (equal ispell-current-personal-dictionary test-pdict)))) | 559 | (should (equal ispell-current-personal-dictionary test-pdict)))) |
| 560 | possible-pdict-paths)))) | 560 | possible-pdict-paths)))) |
| 561 | 561 | ||
| 562 | (ert-deftest ispell/ispell-buffer-local-dict/no-reload+overriden () | 562 | (ert-deftest ispell/ispell-buffer-local-dict/no-reload+overridden () |
| 563 | "ispell.el can recognise keyword-defined dictionary and keyword-defined | 563 | "ispell.el can recognize keyword-defined dictionary and keyword-defined |
| 564 | personal-dictionary. With no-reload it needs no backend at all." | 564 | personal-dictionary. With no-reload it needs no backend at all." |
| 565 | (with-temp-buffer | 565 | (with-temp-buffer |
| 566 | (nxml-mode) | 566 | (nxml-mode) |
| @@ -577,8 +577,8 @@ personal-dictionary. With no-reload it needs no backend at all." | |||
| 577 | (should (equal ispell-local-pdict test-pdict)))) | 577 | (should (equal ispell-local-pdict test-pdict)))) |
| 578 | possible-pdict-paths)))) | 578 | possible-pdict-paths)))) |
| 579 | 579 | ||
| 580 | (ert-deftest ispell/ispell-buffer-local-dict/reload+overriden () | 580 | (ert-deftest ispell/ispell-buffer-local-dict/reload+overridden () |
| 581 | "ispell.el can recognise keyword-defined dictionary and keyword-defined | 581 | "ispell.el can recognize keyword-defined dictionary and keyword-defined |
| 582 | personal-dictionary. With no-reload it needs no backend at all." | 582 | personal-dictionary. With no-reload it needs no backend at all." |
| 583 | :expected-result :failed | 583 | :expected-result :failed |
| 584 | (with-temp-buffer | 584 | (with-temp-buffer |
| @@ -601,7 +601,7 @@ personal-dictionary. With no-reload it needs no backend at all." | |||
| 601 | ;; parsing | 601 | ;; parsing |
| 602 | 602 | ||
| 603 | (ert-deftest ispell/ispell-buffer-local-parsing/local-keyword () | 603 | (ert-deftest ispell/ispell-buffer-local-parsing/local-keyword () |
| 604 | "Check that ispell.el can suscessfully pick up a tex parser from a buffer-local keyword." | 604 | "Check that ispell.el can successfully pick up a tex parser from a buffer-local keyword." |
| 605 | ;; FIXME: what if default dictionary sets | 605 | ;; FIXME: what if default dictionary sets |
| 606 | ;; (ispell-get-extended-character-mode) ? | 606 | ;; (ispell-get-extended-character-mode) ? |
| 607 | (with-temp-buffer | 607 | (with-temp-buffer |
| @@ -640,7 +640,7 @@ personal-dictionary. With no-reload it needs no backend at all." | |||
| 640 | ) | 640 | ) |
| 641 | 641 | ||
| 642 | (ert-deftest ispell/ispell-buffer-local-parsing/local-keyword/hunspell-bug () | 642 | (ert-deftest ispell/ispell-buffer-local-parsing/local-keyword/hunspell-bug () |
| 643 | "Check that ispell.el can suscessfully pick up a tex parser from a buffer-local keyword." | 643 | "Check that ispell.el can successfully pick up a tex parser from a buffer-local keyword." |
| 644 | ;; FIXME: what if default dictionary sets | 644 | ;; FIXME: what if default dictionary sets |
| 645 | ;; (ispell-get-extended-character-mode) ? | 645 | ;; (ispell-get-extended-character-mode) ? |
| 646 | :expected-result :failed | 646 | :expected-result :failed |
| @@ -679,7 +679,7 @@ personal-dictionary. With no-reload it needs no backend at all." | |||
| 679 | ) | 679 | ) |
| 680 | 680 | ||
| 681 | (ert-deftest ispell/ispell-buffer-local-parsing/mode-tex () | 681 | (ert-deftest ispell/ispell-buffer-local-parsing/mode-tex () |
| 682 | "Check that ispell.el can suscessfully pick up a tex parser from tex-based mode-name. | 682 | "Check that ispell.el can successfully pick up a tex parser from tex-based mode-name. |
| 683 | There is another implicit check here: explicit-character-mode | 683 | There is another implicit check here: explicit-character-mode |
| 684 | \(argument 7 from the ispell.el dictionary structure) is nil." | 684 | \(argument 7 from the ispell.el dictionary structure) is nil." |
| 685 | (with-temp-buffer | 685 | (with-temp-buffer |
| @@ -716,7 +716,7 @@ There is another implicit check here: explicit-character-mode | |||
| 716 | ) | 716 | ) |
| 717 | 717 | ||
| 718 | (ert-deftest ispell/ispell-buffer-local-parsing/extended-character-mode () | 718 | (ert-deftest ispell/ispell-buffer-local-parsing/extended-character-mode () |
| 719 | "Check that ispell.el can suscessfully pick up an extended character mode from the dictionary." | 719 | "Check that ispell.el can successfully pick up an extended character mode from the dictionary." |
| 720 | (with-temp-buffer | 720 | (with-temp-buffer |
| 721 | (insert | 721 | (insert |
| 722 | ispell-tests--constants/english/correct-one "\n\n\n") | 722 | ispell-tests--constants/english/correct-one "\n\n\n") |
| @@ -779,6 +779,11 @@ hunspell. Hence skipping." | |||
| 779 | (ispell-tests--letopt | 779 | (ispell-tests--letopt |
| 780 | ((ispell-program-name (ispell-tests--some-backend))) | 780 | ((ispell-program-name (ispell-tests--some-backend))) |
| 781 | 781 | ||
| 782 | (ispell-check-version) | ||
| 783 | (if (and ispell-really-aspell | ||
| 784 | (equal ispell-program-name "ispell")) | ||
| 785 | ;; Don't let Aspell hide its true nature. | ||
| 786 | (setq ispell-program-name "aspell")) | ||
| 782 | (let ((test-dictname (ispell-tests--some-valid-dictionary ispell-program-name)) | 787 | (let ((test-dictname (ispell-tests--some-valid-dictionary ispell-program-name)) |
| 783 | (test-extcharmode "~latin3") | 788 | (test-extcharmode "~latin3") |
| 784 | (test-parser "~testparser") | 789 | (test-parser "~testparser") |
diff --git a/test/lisp/textmodes/mhtml-mode-tests.el b/test/lisp/textmodes/mhtml-mode-tests.el index ea51e916944..cb76b820549 100644 --- a/test/lisp/textmodes/mhtml-mode-tests.el +++ b/test/lisp/textmodes/mhtml-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; mhtml-mode-tests.el --- Tests for mhtml-mode -*- lexical-binding:t -*- | 1 | ;;; mhtml-mode-tests.el --- Tests for mhtml-mode -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Keywords: tests | 5 | ;; Keywords: tests |
| 6 | 6 | ||
diff --git a/test/lisp/textmodes/page-tests.el b/test/lisp/textmodes/page-tests.el index 5ddaaf8dc87..7092e202ee5 100644 --- a/test/lisp/textmodes/page-tests.el +++ b/test/lisp/textmodes/page-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; page-tests.el --- Tests for page.el -*- lexical-binding: t; -*- | 1 | ;;; page-tests.el --- Tests for page.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/lisp/textmodes/paragraphs-tests.el b/test/lisp/textmodes/paragraphs-tests.el index 8a92bbd0d15..42029c73d1a 100644 --- a/test/lisp/textmodes/paragraphs-tests.el +++ b/test/lisp/textmodes/paragraphs-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; paragraphs-tests.el --- Tests for paragraphs.el -*- lexical-binding: t; -*- | 1 | ;;; paragraphs-tests.el --- Tests for paragraphs.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/textmodes/po-tests.el b/test/lisp/textmodes/po-tests.el index e5549938628..031b04eee7f 100644 --- a/test/lisp/textmodes/po-tests.el +++ b/test/lisp/textmodes/po-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; po-tests.el --- Tests for po.el -*- lexical-binding: t; -*- | 1 | ;;; po-tests.el --- Tests for po.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> | 5 | ;; Author: Simen Heggestøyl <simenheg@gmail.com> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
| @@ -31,7 +31,7 @@ | |||
| 31 | 31 | ||
| 32 | (defconst po-tests--buffer-string | 32 | (defconst po-tests--buffer-string |
| 33 | "# Norwegian bokmål translation of the GIMP. | 33 | "# Norwegian bokmål translation of the GIMP. |
| 34 | # Copyright (C) 1999-2001, 2025 Free Software Foundation, Inc. | 34 | # Copyright (C) 1999-2001, 2025-2026 Free Software Foundation, Inc. |
| 35 | # | 35 | # |
| 36 | msgid \"\" | 36 | msgid \"\" |
| 37 | msgstr \"\" | 37 | msgstr \"\" |
diff --git a/test/lisp/textmodes/reftex-tests.el b/test/lisp/textmodes/reftex-tests.el index 3a4d9b1f2e5..ea86235aba4 100644 --- a/test/lisp/textmodes/reftex-tests.el +++ b/test/lisp/textmodes/reftex-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; reftex-tests.el --- Test suite for reftex. -*- lexical-binding: t -*- | 1 | ;;; reftex-tests.el --- Test suite for reftex. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Rüdiger Sonderfeld <ruediger@c-plusplus.de> | 5 | ;; Author: Rüdiger Sonderfeld <ruediger@c-plusplus.de> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/lisp/textmodes/sgml-mode-tests.el b/test/lisp/textmodes/sgml-mode-tests.el index 9e9b15bd9de..3876e79dce3 100644 --- a/test/lisp/textmodes/sgml-mode-tests.el +++ b/test/lisp/textmodes/sgml-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; sgml-mode-tests.el --- Tests for sgml-mode -*- lexical-binding:t -*- | 1 | ;;; sgml-mode-tests.el --- Tests for sgml-mode -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Przemysław Wojnowski <esperanto@cumego.com> | 5 | ;; Author: Przemysław Wojnowski <esperanto@cumego.com> |
| 6 | ;; Keywords: tests | 6 | ;; Keywords: tests |
diff --git a/test/lisp/textmodes/texinfo-tests.el b/test/lisp/textmodes/texinfo-tests.el index f848ce0d890..da02ad09a84 100644 --- a/test/lisp/textmodes/texinfo-tests.el +++ b/test/lisp/textmodes/texinfo-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; texinfo-tests.el --- Tests for texinfo.el -*- lexical-binding: t; -*- | 1 | ;;; texinfo-tests.el --- Tests for texinfo.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/textmodes/tildify-tests.el b/test/lisp/textmodes/tildify-tests.el index 4087ddcd883..9e02c2696f2 100644 --- a/test/lisp/textmodes/tildify-tests.el +++ b/test/lisp/textmodes/tildify-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; tildify-tests.el --- ERT tests for tildify.el -*- lexical-binding: t -*- | 1 | ;;; tildify-tests.el --- ERT tests for tildify.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Michal Nazarewicz <mina86@mina86.com> | 5 | ;; Author: Michal Nazarewicz <mina86@mina86.com> |
| 6 | ;; Version: 4.5 | 6 | ;; Version: 4.5 |
diff --git a/test/lisp/textmodes/underline-tests.el b/test/lisp/textmodes/underline-tests.el index fe085c1dcf0..133258c7788 100644 --- a/test/lisp/textmodes/underline-tests.el +++ b/test/lisp/textmodes/underline-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; underline-tests.el --- Tests for underline.el -*- lexical-binding: t; -*- | 1 | ;;; underline-tests.el --- Tests for underline.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/thingatpt-tests.el b/test/lisp/thingatpt-tests.el index e873141aa4e..6cc5405e674 100644 --- a/test/lisp/thingatpt-tests.el +++ b/test/lisp/thingatpt-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; thingatpt-tests.el --- tests for thing-at-point. -*- lexical-binding:t -*- | 1 | ;;; thingatpt-tests.el --- tests for thing-at-point. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/thread-tests.el b/test/lisp/thread-tests.el index 42dbb3f9867..86ba0f596ef 100644 --- a/test/lisp/thread-tests.el +++ b/test/lisp/thread-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; thread-tests.el --- Test suite for thread.el -*- lexical-binding: t; -*- | 1 | ;;; thread-tests.el --- Test suite for thread.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Gemini Lasswell <gazally@runbox.com> | 5 | ;; Author: Gemini Lasswell <gazally@runbox.com> |
| 6 | ;; Keywords: threads | 6 | ;; Keywords: threads |
diff --git a/test/lisp/time-stamp-tests.el b/test/lisp/time-stamp-tests.el index d67a288f5db..76126c77602 100644 --- a/test/lisp/time-stamp-tests.el +++ b/test/lisp/time-stamp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; time-stamp-tests.el --- tests for time-stamp.el -*- lexical-binding: t -*- | 1 | ;;; time-stamp-tests.el --- tests for time-stamp.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -35,6 +35,7 @@ | |||
| 35 | (ref-time2 '(22574 61591)) ;Friday, Nov 18, 2016, 12:14:15 PM | 35 | (ref-time2 '(22574 61591)) ;Friday, Nov 18, 2016, 12:14:15 PM |
| 36 | (ref-time3 '(21377 34956)) ;Sunday, May 25, 2014, 06:07:08 AM | 36 | (ref-time3 '(21377 34956)) ;Sunday, May 25, 2014, 06:07:08 AM |
| 37 | (time-stamp-active t) ;default, but user may have changed it | 37 | (time-stamp-active t) ;default, but user may have changed it |
| 38 | (time-stamp-warn-inactive t) ;default, but user may have changed it | ||
| 38 | (time-stamp-time-zone t)) ;use UTC | 39 | (time-stamp-time-zone t)) ;use UTC |
| 39 | (cl-letf (((symbol-function 'time-stamp-conv-warn) | 40 | (cl-letf (((symbol-function 'time-stamp-conv-warn) |
| 40 | (lambda (old-format _new &optional _newer) | 41 | (lambda (old-format _new &optional _newer) |
| @@ -199,47 +200,58 @@ | |||
| 199 | 200 | ||
| 200 | (ert-deftest time-stamp-custom-pattern () | 201 | (ert-deftest time-stamp-custom-pattern () |
| 201 | "Test that `time-stamp-pattern' is parsed correctly." | 202 | "Test that `time-stamp-pattern' is parsed correctly." |
| 202 | (iter-do (pattern-parts (time-stamp-test-pattern-all)) | 203 | (with-time-stamp-test-env |
| 203 | (cl-destructuring-bind (line-limit1 start1 whole-format end1) pattern-parts | 204 | (let ((expected-calls 0) |
| 204 | (cl-letf | 205 | (actual-calls 0) |
| 205 | (((symbol-function 'time-stamp-once) | 206 | (case-fold-search nil) |
| 206 | (lambda (start search-limit ts-start ts-end | 207 | ;; more than the largest line-limit1 number of lines |
| 207 | ts-format _format-lines _end-lines) | 208 | (initial-buffer-contents "\n\n\n\n\n\n\n\n\n\n\n\n") |
| 208 | ;; Verify that time-stamp parsed time-stamp-pattern and | 209 | time-stamp-pattern) |
| 209 | ;; called us with the correct pieces. | 210 | (with-temp-buffer |
| 210 | (let ((limit-number (if (equal line-limit1 "") | 211 | (insert initial-buffer-contents) |
| 211 | time-stamp-line-limit | 212 | (iter-do (pattern-parts (time-stamp-test-pattern-all)) |
| 212 | (string-to-number line-limit1)))) | 213 | (cl-destructuring-bind |
| 213 | (goto-char (point-min)) | 214 | (line-limit1 start1 whole-format end1) pattern-parts |
| 214 | (if (> limit-number 0) | 215 | (cl-letf |
| 215 | (should (= search-limit (pos-bol (1+ limit-number)))) | 216 | (((symbol-function 'time-stamp-once) |
| 216 | (should (= search-limit (point-max)))) | 217 | (lambda (start search-limit ts-start ts-end |
| 217 | (goto-char (point-max)) | 218 | ts-format _format-lines _end-lines) |
| 218 | (if (< limit-number 0) | 219 | (incf actual-calls) |
| 219 | (should (= start (pos-bol (1+ limit-number)))) | 220 | ;; Verify that time-stamp parsed time-stamp-pattern and |
| 220 | (should (= start (point-min))))) | 221 | ;; called us with the correct pieces. |
| 221 | (if (equal start1 "") | 222 | (let ((limit-number (if (equal line-limit1 "") |
| 222 | (should (equal ts-start time-stamp-start)) | 223 | time-stamp-line-limit |
| 223 | (should (equal ts-start start1))) | 224 | (string-to-number line-limit1)))) |
| 224 | (if (or (equal whole-format "") | 225 | (goto-char (point-min)) |
| 225 | (equal whole-format "%%")) | 226 | (should (= search-limit (if (> limit-number 0) |
| 226 | (should (equal ts-format time-stamp-format)) | 227 | (pos-bol (1+ limit-number)) |
| 227 | (should (equal ts-format whole-format))) | 228 | (point-max)))) |
| 228 | (if (equal end1 "") | 229 | (goto-char (point-max)) |
| 229 | (should (equal ts-end time-stamp-end)) | 230 | (should (= start (if (< limit-number 0) |
| 230 | (should (equal ts-end end1))) | 231 | (pos-bol (1+ limit-number)) |
| 231 | ;; return nil to stop time-stamp from calling us again | 232 | (point-min))))) |
| 232 | nil))) | 233 | (should (equal ts-start (if (equal start1 "") |
| 233 | (let ((time-stamp-pattern (concat | 234 | time-stamp-start |
| 234 | line-limit1 start1 whole-format end1)) | 235 | start1))) |
| 235 | (case-fold-search nil)) | 236 | (should (equal ts-format (if (or (equal whole-format "") |
| 236 | (with-temp-buffer | 237 | (equal whole-format "%%")) |
| 237 | ;; prep the buffer with more than the | 238 | time-stamp-format |
| 238 | ;; largest line-limit1 number of lines | 239 | whole-format))) |
| 239 | (insert "\n\n\n\n\n\n\n\n\n\n\n\n") | 240 | (should (equal ts-end (if (equal end1 "") |
| 240 | ;; Call time-stamp, which will call time-stamp-once, | 241 | time-stamp-end |
| 241 | ;; triggering the tests above. | 242 | end1))) |
| 242 | (time-stamp))))))) | 243 | ;; return nil to stop time-stamp from calling us again |
| 244 | nil))) | ||
| 245 | (setq time-stamp-pattern | ||
| 246 | (concat line-limit1 start1 whole-format end1)) | ||
| 247 | (incf expected-calls) | ||
| 248 | ;; Call time-stamp, which should call time-stamp-once, | ||
| 249 | ;; triggering the tests above. | ||
| 250 | (time-stamp) | ||
| 251 | ))) | ||
| 252 | (should (equal (buffer-string) initial-buffer-contents)) | ||
| 253 | (should (= actual-calls expected-calls)) | ||
| 254 | )))) | ||
| 243 | 255 | ||
| 244 | (ert-deftest time-stamp-custom-format-tabs-expand () | 256 | (ert-deftest time-stamp-custom-format-tabs-expand () |
| 245 | "Test that Tab characters expand in the format but not elsewhere." | 257 | "Test that Tab characters expand in the format but not elsewhere." |
| @@ -422,15 +434,15 @@ say EXPECTED should not be run through `format-time-string'." | |||
| 422 | (do-one (lambda (conv expected reftime) | 434 | (do-one (lambda (conv expected reftime) |
| 423 | `(,should-fn | 435 | `(,should-fn |
| 424 | (time-stamp-test--string-equal | 436 | (time-stamp-test--string-equal |
| 425 | (time-stamp-string ,conv ,reftime) | 437 | (time-stamp-string ,conv ,reftime) |
| 426 | ,(let ((fmt-form | 438 | ,(let ((fmt-form |
| 427 | (if literal | 439 | (if literal |
| 428 | expected | 440 | expected |
| 429 | `(format-time-string | 441 | `(format-time-string |
| 430 | ,expected ,reftime time-stamp-time-zone)))) | 442 | ,expected ,reftime time-stamp-time-zone)))) |
| 431 | (dolist (fn filter-list fmt-form) | 443 | (dolist (fn filter-list fmt-form) |
| 432 | (setq fmt-form `(funcall ',fn ,fmt-form)))) | 444 | (setq fmt-form `(funcall ',fn ,fmt-form)))) |
| 433 | )))) | 445 | )))) |
| 434 | (result (list 'progn))) | 446 | (result (list 'progn))) |
| 435 | (when (memq :literal filter-list) | 447 | (when (memq :literal filter-list) |
| 436 | (setq literal t) | 448 | (setq literal t) |
| @@ -772,7 +784,7 @@ This is a separate function so it can have an `ert-explainer' property." | |||
| 772 | (ert-deftest time-stamp-format-letter-case () | 784 | (ert-deftest time-stamp-format-letter-case () |
| 773 | "Test `time-stamp' upcase and downcase modifiers not tested elsewhere." | 785 | "Test `time-stamp' upcase and downcase modifiers not tested elsewhere." |
| 774 | (with-time-stamp-test-env | 786 | (with-time-stamp-test-env |
| 775 | (time-stamp-test ("%*^A" "%*#A") "%^A") | 787 | (time-stamp-test-AB ("%*^A" "%*#A") "%^A") |
| 776 | )) | 788 | )) |
| 777 | 789 | ||
| 778 | ;;; Tests of helper functions | 790 | ;;; Tests of helper functions |
| @@ -784,6 +796,30 @@ This is a separate function so it can have an `ert-explainer' property." | |||
| 784 | (time-stamp-string time-stamp-format ref-time1))) | 796 | (time-stamp-string time-stamp-format ref-time1))) |
| 785 | (should (equal (time-stamp-string 'not-a-string ref-time1) nil)))) | 797 | (should (equal (time-stamp-string 'not-a-string ref-time1) nil)))) |
| 786 | 798 | ||
| 799 | (ert-deftest time-stamp-helper-string-used () | ||
| 800 | "Test that `time-stamp' uses `time-stamp-string'." | ||
| 801 | ;; Because the formatting tests use only time-stamp-string, we | ||
| 802 | ;; test that time-stamp-string is actually used by time-stamp. | ||
| 803 | (with-time-stamp-test-env | ||
| 804 | (let ((time-stamp-format "not the default string used %Y%%") | ||
| 805 | (ts-string-calls 0)) | ||
| 806 | (cl-letf (((symbol-function 'time-stamp-string) | ||
| 807 | (lambda (&optional ts-format _time) | ||
| 808 | (should (equal ts-format time-stamp-format)) | ||
| 809 | (incf ts-string-calls) | ||
| 810 | "tss-res"))) | ||
| 811 | (with-temp-buffer | ||
| 812 | ;; no template, no call to time-stamp-string expected | ||
| 813 | (time-stamp) | ||
| 814 | (should (= ts-string-calls 0)) | ||
| 815 | (should (equal (buffer-string) "")) | ||
| 816 | ;; with template, expect one call | ||
| 817 | (insert "Time-stamp: <>") | ||
| 818 | (time-stamp) | ||
| 819 | (should (= ts-string-calls 1)) | ||
| 820 | (should (equal (buffer-string) "Time-stamp: <tss-res>")) | ||
| 821 | ))))) | ||
| 822 | |||
| 787 | (ert-deftest time-stamp-helper-zone-type-p () | 823 | (ert-deftest time-stamp-helper-zone-type-p () |
| 788 | "Test `time-stamp-zone-type-p'." | 824 | "Test `time-stamp-zone-type-p'." |
| 789 | (should (time-stamp-zone-type-p t)) | 825 | (should (time-stamp-zone-type-p t)) |
diff --git a/test/lisp/time-tests.el b/test/lisp/time-tests.el index 50c8ba5c85a..08ee0870894 100644 --- a/test/lisp/time-tests.el +++ b/test/lisp/time-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; time-tests.el --- Tests for time.el -*- lexical-binding: t; -*- | 1 | ;;; time-tests.el --- Tests for time.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/timezone-tests.el b/test/lisp/timezone-tests.el index 8ca7dafbac1..cdf52de030e 100644 --- a/test/lisp/timezone-tests.el +++ b/test/lisp/timezone-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; timezone-tests.el --- Tests for timezone.el -*- lexical-binding: t; -*- | 1 | ;;; timezone-tests.el --- Tests for timezone.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/uniquify-tests.el b/test/lisp/uniquify-tests.el index 9df17eedce0..c7ef1ba6119 100644 --- a/test/lisp/uniquify-tests.el +++ b/test/lisp/uniquify-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; uniquify-tests.el --- Tests for uniquify -*- lexical-binding: t; -*- | 1 | ;;; uniquify-tests.el --- Tests for uniquify -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Spencer Baugh <sbaugh@janestreet.com> | 5 | ;; Author: Spencer Baugh <sbaugh@janestreet.com> |
| 6 | 6 | ||
diff --git a/test/lisp/url/url-auth-tests.el b/test/lisp/url/url-auth-tests.el index 51ee587de49..a786ee19a5e 100644 --- a/test/lisp/url/url-auth-tests.el +++ b/test/lisp/url/url-auth-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; url-auth-tests.el --- Test suite for url-auth. -*- lexical-binding:t -*- | 1 | ;;; url-auth-tests.el --- Test suite for url-auth. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Jarno Malmari <jarno@malmari.fi> | 5 | ;; Author: Jarno Malmari <jarno@malmari.fi> |
| 6 | 6 | ||
diff --git a/test/lisp/url/url-domsuf-tests.el b/test/lisp/url/url-domsuf-tests.el index 5281e784ba7..a1717af7c69 100644 --- a/test/lisp/url/url-domsuf-tests.el +++ b/test/lisp/url/url-domsuf-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; url-domsuf-tests.el --- Tests for url-domsuf.el -*- lexical-binding:t -*- | 1 | ;;; url-domsuf-tests.el --- Tests for url-domsuf.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/url/url-expand-tests.el b/test/lisp/url/url-expand-tests.el index 2ebc7f8c0dd..eefeaaea553 100644 --- a/test/lisp/url/url-expand-tests.el +++ b/test/lisp/url/url-expand-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; url-expand-tests.el --- Test suite for relative URI/URL resolution. -*- lexical-binding:t -*- | 1 | ;;; url-expand-tests.el --- Test suite for relative URI/URL resolution. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2012-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2012-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Alain Schneble <a.s@realize.ch> | 5 | ;; Author: Alain Schneble <a.s@realize.ch> |
| 6 | 6 | ||
diff --git a/test/lisp/url/url-file-tests.el b/test/lisp/url/url-file-tests.el index ad20fcc2f6a..dc04727c91b 100644 --- a/test/lisp/url/url-file-tests.el +++ b/test/lisp/url/url-file-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; url-file-tests.el --- Test suite for url-file. -*- lexical-binding: t -*- | 1 | ;;; url-file-tests.el --- Test suite for url-file. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/url/url-future-tests.el b/test/lisp/url/url-future-tests.el index e701c7bbb4a..9bb83776d65 100644 --- a/test/lisp/url/url-future-tests.el +++ b/test/lisp/url/url-future-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; url-future-tests.el --- Test suite for url-future. -*- lexical-binding:t -*- | 1 | ;;; url-future-tests.el --- Test suite for url-future. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2011-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2011-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Teodor Zlatanov <tzz@lifelogs.com> | 5 | ;; Author: Teodor Zlatanov <tzz@lifelogs.com> |
| 6 | ;; Keywords: data | 6 | ;; Keywords: data |
diff --git a/test/lisp/url/url-handlers-tests.el b/test/lisp/url/url-handlers-tests.el index 01959a70997..c5e2ae7c85c 100644 --- a/test/lisp/url/url-handlers-tests.el +++ b/test/lisp/url/url-handlers-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; url-handlers-tests.el --- Test suite for url-handlers.el -*- lexical-binding: t; -*- | 1 | ;;; url-handlers-tests.el --- Test suite for url-handlers.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Nicolas Petton <nicolas@petton.fr> | 5 | ;; Author: Nicolas Petton <nicolas@petton.fr> |
| 6 | 6 | ||
diff --git a/test/lisp/url/url-misc-tests.el b/test/lisp/url/url-misc-tests.el index 8843b068ae2..f4996206c01 100644 --- a/test/lisp/url/url-misc-tests.el +++ b/test/lisp/url/url-misc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; url-misc-tests.el --- Test suite for url-misc. -*- lexical-binding: t -*- | 1 | ;;; url-misc-tests.el --- Test suite for url-misc. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/url/url-parse-tests.el b/test/lisp/url/url-parse-tests.el index aaa680567ac..835c8b7bc0b 100644 --- a/test/lisp/url/url-parse-tests.el +++ b/test/lisp/url/url-parse-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; url-parse-tests.el --- Test suite for URI/URL parsing. -*- lexical-binding:t -*- | 1 | ;;; url-parse-tests.el --- Test suite for URI/URL parsing. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2012-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2012-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Alain Schneble <a.s@realize.ch> | 5 | ;; Author: Alain Schneble <a.s@realize.ch> |
| 6 | 6 | ||
diff --git a/test/lisp/url/url-tramp-tests.el b/test/lisp/url/url-tramp-tests.el index eb6be8c3b97..510d37ca1ca 100644 --- a/test/lisp/url/url-tramp-tests.el +++ b/test/lisp/url/url-tramp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; url-tramp-tests.el --- Test suite for Tramp / URL conversion. -*- lexical-binding:t -*- | 1 | ;;; url-tramp-tests.el --- Test suite for Tramp / URL conversion. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> | 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> |
| 6 | 6 | ||
diff --git a/test/lisp/url/url-util-tests.el b/test/lisp/url/url-util-tests.el index 6e79a798333..8435a2e9e2c 100644 --- a/test/lisp/url/url-util-tests.el +++ b/test/lisp/url/url-util-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; url-util-tests.el --- Test suite for url-util. -*- lexical-binding:t -*- | 1 | ;;; url-util-tests.el --- Test suite for url-util. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2012-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2012-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Teodor Zlatanov <tzz@lifelogs.com> | 5 | ;; Author: Teodor Zlatanov <tzz@lifelogs.com> |
| 6 | ;; Keywords: data | 6 | ;; Keywords: data |
diff --git a/test/lisp/use-package/use-package-tests.el b/test/lisp/use-package/use-package-tests.el index b221c5de5c1..0ae06b9f93f 100644 --- a/test/lisp/use-package/use-package-tests.el +++ b/test/lisp/use-package/use-package-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; use-package-tests.el --- Tests for use-package.el -*- lexical-binding: t; -*- | 1 | ;;; use-package-tests.el --- Tests for use-package.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/vc/add-log-tests.el b/test/lisp/vc/add-log-tests.el index ede34bfd23f..823f221917f 100644 --- a/test/lisp/vc/add-log-tests.el +++ b/test/lisp/vc/add-log-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; add-log-tests.el --- Test suite for add-log. -*- lexical-binding:t -*- | 1 | ;;; add-log-tests.el --- Test suite for add-log. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Masatake YAMATO <yamato@redhat.com> | 5 | ;; Author: Masatake YAMATO <yamato@redhat.com> |
| 6 | ;; Keywords: vc tools | 6 | ;; Keywords: vc tools |
diff --git a/test/lisp/vc/diff-mode-tests.el b/test/lisp/vc/diff-mode-tests.el index b82fb3effbe..c75e7ef066b 100644 --- a/test/lisp/vc/diff-mode-tests.el +++ b/test/lisp/vc/diff-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; diff-mode-tests.el --- Tests for diff-mode.el -*- lexical-binding:t -*- | 1 | ;;; diff-mode-tests.el --- Tests for diff-mode.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Dima Kogan <dima@secretsauce.net> | 5 | ;; Author: Dima Kogan <dima@secretsauce.net> |
| 6 | ;; Maintainer: emacs-devel@gnu.org | 6 | ;; Maintainer: emacs-devel@gnu.org |
| @@ -686,7 +686,7 @@ orange | |||
| 686 | (insert patch) | 686 | (insert patch) |
| 687 | (goto-char (point-min)) | 687 | (goto-char (point-min)) |
| 688 | (diff-hunk-next) | 688 | (diff-hunk-next) |
| 689 | ;; Undo hunk by dwim behaviour | 689 | ;; Undo hunk by dwim behavior |
| 690 | (cl-letf (((symbol-function 'y-or-n-p) #'always)) | 690 | (cl-letf (((symbol-function 'y-or-n-p) #'always)) |
| 691 | (diff-apply-hunk))) | 691 | (diff-apply-hunk))) |
| 692 | (with-current-buffer buf-after | 692 | (with-current-buffer buf-after |
| @@ -734,7 +734,7 @@ plum | |||
| 734 | (insert patch) | 734 | (insert patch) |
| 735 | (goto-char (point-min)) | 735 | (goto-char (point-min)) |
| 736 | (diff-hunk-next) | 736 | (diff-hunk-next) |
| 737 | ;; Undo hunk by dwim behaviour | 737 | ;; Undo hunk by dwim behavior |
| 738 | (cl-letf (((symbol-function 'y-or-n-p) #'always)) | 738 | (cl-letf (((symbol-function 'y-or-n-p) #'always)) |
| 739 | (diff-apply-hunk))) | 739 | (diff-apply-hunk))) |
| 740 | (with-current-buffer buf-after | 740 | (with-current-buffer buf-after |
diff --git a/test/lisp/vc/ediff-diff-tests.el b/test/lisp/vc/ediff-diff-tests.el index 9f6318592a2..570b22596c2 100644 --- a/test/lisp/vc/ediff-diff-tests.el +++ b/test/lisp/vc/ediff-diff-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ediff-diff-tests.el --- Unit tests for ediff-diff.el -*- lexical-binding: t; -*- | 1 | ;;; ediff-diff-tests.el --- Unit tests for ediff-diff.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Philipp Stephani <phst@google.com> | 5 | ;; Author: Philipp Stephani <phst@google.com> |
| 6 | 6 | ||
diff --git a/test/lisp/vc/ediff-mult-tests.el b/test/lisp/vc/ediff-mult-tests.el index 525088bf856..7887ae086fe 100644 --- a/test/lisp/vc/ediff-mult-tests.el +++ b/test/lisp/vc/ediff-mult-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ediff-mult-tests.el --- Tests for ediff-mult.el -*- lexical-binding:t -*- | 1 | ;;; ediff-mult-tests.el --- Tests for ediff-mult.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | ;; | 6 | ;; |
| @@ -20,13 +20,12 @@ | |||
| 20 | ;;; Code: | 20 | ;;; Code: |
| 21 | 21 | ||
| 22 | (require 'ert) | 22 | (require 'ert) |
| 23 | (require 'ert-x) | ||
| 23 | (require 'ediff-mult) | 24 | (require 'ediff-mult) |
| 24 | 25 | ||
| 25 | (ert-deftest ediff-test-bug3348 () | 26 | (ert-deftest ediff-test-bug3348 () |
| 26 | "After saving `ediff-meta-diff-buffer' to a file, we should not reuse it." | 27 | "After saving `ediff-meta-diff-buffer' to a file, we should not reuse it." |
| 27 | (let ((test-dir | 28 | (ert-with-temp-directory test-dir |
| 28 | (expand-file-name "bug-3348-testdir" temporary-file-directory))) | ||
| 29 | (make-directory test-dir t) | ||
| 30 | (cd test-dir) | 29 | (cd test-dir) |
| 31 | 30 | ||
| 32 | (make-directory "dir-a" t) | 31 | (make-directory "dir-a" t) |
diff --git a/test/lisp/vc/ediff-ptch-tests.el b/test/lisp/vc/ediff-ptch-tests.el index e5052a69970..f0da68c7ef9 100644 --- a/test/lisp/vc/ediff-ptch-tests.el +++ b/test/lisp/vc/ediff-ptch-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ediff-ptch-tests.el --- Tests for ediff-ptch.el -*- lexical-binding:t -*- | 1 | ;;; ediff-ptch-tests.el --- Tests for ediff-ptch.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> | 5 | ;; Author: Tino Calancha <tino.calancha@gmail.com> |
| 6 | 6 | ||
diff --git a/test/lisp/vc/log-edit-tests.el b/test/lisp/vc/log-edit-tests.el index fdc9a0b41b9..8b26fa6c62f 100644 --- a/test/lisp/vc/log-edit-tests.el +++ b/test/lisp/vc/log-edit-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; log-edit-tests.el --- Unit tests for log-edit.el -*- lexical-binding: t; -*- | 1 | ;;; log-edit-tests.el --- Unit tests for log-edit.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -407,7 +407,7 @@ CVS: Abort checkin if you answer no. | |||
| 407 | "Strip lines that contain solely \"CVS:\" when using CVS as VC backend." | 407 | "Strip lines that contain solely \"CVS:\" when using CVS as VC backend." |
| 408 | ;; This test verifies that lines consisting only of "CVS:" (no blank | 408 | ;; This test verifies that lines consisting only of "CVS:" (no blank |
| 409 | ;; after the colon) are stripped from the commit message. | 409 | ;; after the colon) are stripped from the commit message. |
| 410 | ;; CVS does this to accomodate editors that delete trailing whitespace. | 410 | ;; CVS does this to accommodate editors that delete trailing whitespace. |
| 411 | (let (string wanted) | 411 | (let (string wanted) |
| 412 | (setq string "CVS:\n" | 412 | (setq string "CVS:\n" |
| 413 | wanted "") | 413 | wanted "") |
diff --git a/test/lisp/vc/smerge-mode-tests.el b/test/lisp/vc/smerge-mode-tests.el index 50128a84f03..1ccefcc853b 100644 --- a/test/lisp/vc/smerge-mode-tests.el +++ b/test/lisp/vc/smerge-mode-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; smerge-mode-tests.el --- Tests for smerge-mode.el -*- lexical-binding:t -*- | 1 | ;;; smerge-mode-tests.el --- Tests for smerge-mode.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Maintainer: emacs-devel@gnu.org | 5 | ;; Maintainer: emacs-devel@gnu.org |
| 6 | 6 | ||
diff --git a/test/lisp/vc/vc-bzr-tests.el b/test/lisp/vc/vc-bzr-tests.el index 487dc66cb73..cc0fe71256d 100644 --- a/test/lisp/vc/vc-bzr-tests.el +++ b/test/lisp/vc/vc-bzr-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; vc-bzr-tests.el --- tests for vc/vc-bzr.el -*- lexical-binding: t -*- | 1 | ;;; vc-bzr-tests.el --- tests for vc/vc-bzr.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2011-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2011-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Glenn Morris <rgm@gnu.org> | 5 | ;; Author: Glenn Morris <rgm@gnu.org> |
| 6 | ;; Maintainer: emacs-devel@gnu.org | 6 | ;; Maintainer: emacs-devel@gnu.org |
diff --git a/test/lisp/vc/vc-cvs-tests.el b/test/lisp/vc/vc-cvs-tests.el index 806b64deccf..840ed1574bd 100644 --- a/test/lisp/vc/vc-cvs-tests.el +++ b/test/lisp/vc/vc-cvs-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; vc-cvs-tests.el --- tests for vc/vc-cvs.el -*- lexical-binding:t -*- | 1 | ;;; vc-cvs-tests.el --- tests for vc/vc-cvs.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Olivier Certner <olce.emacs@certner.fr> | 5 | ;; Author: Olivier Certner <olce.emacs@certner.fr> |
| 6 | ;; Maintainer: emacs-devel@gnu.org | 6 | ;; Maintainer: emacs-devel@gnu.org |
diff --git a/test/lisp/vc/vc-git-tests.el b/test/lisp/vc/vc-git-tests.el index cdca3591f4e..9721cc4d4ff 100644 --- a/test/lisp/vc/vc-git-tests.el +++ b/test/lisp/vc/vc-git-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; vc-git-tests.el --- tests for vc/vc-git.el -*- lexical-binding:t -*- | 1 | ;;; vc-git-tests.el --- tests for vc/vc-git.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Justin Schell <justinmschell@gmail.com> | 5 | ;; Author: Justin Schell <justinmschell@gmail.com> |
| 6 | ;; Maintainer: emacs-devel@gnu.org | 6 | ;; Maintainer: emacs-devel@gnu.org |
| @@ -194,4 +194,39 @@ is absent." | |||
| 194 | ("Tracking" . ,main-branch) | 194 | ("Tracking" . ,main-branch) |
| 195 | ("Remote" . "none (tracking local branch)"))))))))) | 195 | ("Remote" . "none (tracking local branch)"))))))))) |
| 196 | 196 | ||
| 197 | (ert-deftest vc-git-test-branch-remotes () | ||
| 198 | "Test behavior of `vc-git--branch-remotes'." | ||
| 199 | (skip-unless (executable-find vc-git-program)) | ||
| 200 | (vc-git-test--with-repo repo | ||
| 201 | (let ((main-branch (vc-git-test--start-branch))) | ||
| 202 | (should (null (vc-git--branch-remotes))) | ||
| 203 | (vc-git--out-ok "config" | ||
| 204 | (format "branch.%s.remote" main-branch) | ||
| 205 | "origin") | ||
| 206 | (should (null (vc-git--branch-remotes))) | ||
| 207 | (vc-git--out-ok "config" | ||
| 208 | (format "branch.%s.merge" main-branch) | ||
| 209 | main-branch) | ||
| 210 | (let ((alist (vc-git--branch-remotes))) | ||
| 211 | (should (assq 'upstream alist)) | ||
| 212 | (should (null (assq 'push alist)))) | ||
| 213 | (vc-git--out-ok "config" | ||
| 214 | (format "branch.%s.pushRemote" main-branch) | ||
| 215 | "fork") | ||
| 216 | (let ((alist (vc-git--branch-remotes))) | ||
| 217 | (should (assq 'upstream alist)) | ||
| 218 | (should (equal (cdr (assq 'push alist)) | ||
| 219 | (concat "fork/" main-branch)))) | ||
| 220 | (vc-git--out-ok "config" "--unset" | ||
| 221 | (format "branch.%s.pushRemote" main-branch)) | ||
| 222 | (vc-git--out-ok "config" "remote.pushDefault" "fork") | ||
| 223 | (let ((alist (vc-git--branch-remotes))) | ||
| 224 | (should (assq 'upstream alist)) | ||
| 225 | (should (equal (cdr (assq 'push alist)) | ||
| 226 | (concat "fork/" main-branch)))) | ||
| 227 | (vc-git--out-ok "config" "remote.pushDefault" "origin") | ||
| 228 | (let ((alist (vc-git--branch-remotes))) | ||
| 229 | (should (assq 'upstream alist)) | ||
| 230 | (should (null (assq 'push alist))))))) | ||
| 231 | |||
| 197 | ;;; vc-git-tests.el ends here | 232 | ;;; vc-git-tests.el ends here |
diff --git a/test/lisp/vc/vc-hg-tests.el b/test/lisp/vc/vc-hg-tests.el index a692f63e116..76df75cb8d1 100644 --- a/test/lisp/vc/vc-hg-tests.el +++ b/test/lisp/vc/vc-hg-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; vc-hg-tests.el --- tests for vc/vc-hg.el -*- lexical-binding:t -*- | 1 | ;;; vc-hg-tests.el --- tests for vc/vc-hg.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Dmitry Gutov <dgutov@yandex.ru> | 5 | ;; Author: Dmitry Gutov <dgutov@yandex.ru> |
| 6 | ;; Maintainer: emacs-devel@gnu.org | 6 | ;; Maintainer: emacs-devel@gnu.org |
diff --git a/test/lisp/vc/vc-tests/vc-test-misc.el b/test/lisp/vc/vc-tests/vc-test-misc.el index ba29266fb2f..72dc8de22bf 100644 --- a/test/lisp/vc/vc-tests/vc-test-misc.el +++ b/test/lisp/vc/vc-tests/vc-test-misc.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; vc-test-misc.el --- backend-agnostic VC tests -*- lexical-binding:t -*- | 1 | ;;; vc-test-misc.el --- backend-agnostic VC tests -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Sean Whitton <spwhitton@spwhitton.name> | 5 | ;; Author: Sean Whitton <spwhitton@spwhitton.name> |
| 6 | 6 | ||
| @@ -217,5 +217,30 @@ | |||
| 217 | (should (equal (buffer-string) "foo\n")))) | 217 | (should (equal (buffer-string) "foo\n")))) |
| 218 | (kill-buffer buf)))) | 218 | (kill-buffer buf)))) |
| 219 | 219 | ||
| 220 | (ert-deftest vc-test-match-branch-name-regexps () | ||
| 221 | "Test `vc--match-branch-name-regexps'." | ||
| 222 | (let ((vc-trunk-branch-regexps '("master" "main"))) | ||
| 223 | (let ((vc-topic-branch-regexps '("m.*"))) | ||
| 224 | (should-error (vc--match-branch-name-regexps "master"))) | ||
| 225 | (let ((vc-topic-branch-regexps '("f" "o"))) | ||
| 226 | (should (eq (vc--match-branch-name-regexps "master") 'trunk)) | ||
| 227 | (should (null (vc--match-branch-name-regexps "foo")))) | ||
| 228 | (let ((vc-topic-branch-regexps '("f.*" "o"))) | ||
| 229 | (should (eq (vc--match-branch-name-regexps "master") 'trunk)) | ||
| 230 | (should (eq (vc--match-branch-name-regexps "foo") 'topic))) | ||
| 231 | (let (vc-topic-branch-regexps) | ||
| 232 | (should (eq (vc--match-branch-name-regexps "master") 'trunk)) | ||
| 233 | (should (null (vc--match-branch-name-regexps "foo")))) | ||
| 234 | (let ((vc-topic-branch-regexps t)) | ||
| 235 | (should (eq (vc--match-branch-name-regexps "master") 'trunk)) | ||
| 236 | (should (eq (vc--match-branch-name-regexps "foo") 'topic)))) | ||
| 237 | (let ((vc-trunk-branch-regexps '(not "master"))) | ||
| 238 | (let (vc-topic-branch-regexps) | ||
| 239 | (should (null (vc--match-branch-name-regexps "master"))) | ||
| 240 | (should (eq (vc--match-branch-name-regexps "foo") 'trunk))) | ||
| 241 | (let ((vc-topic-branch-regexps t)) | ||
| 242 | (should (eq (vc--match-branch-name-regexps "master") 'topic)) | ||
| 243 | (should (eq (vc--match-branch-name-regexps "foo") 'trunk))))) | ||
| 244 | |||
| 220 | (provide 'vc-test-misc) | 245 | (provide 'vc-test-misc) |
| 221 | ;;; vc-test-misc.el ends here | 246 | ;;; vc-test-misc.el ends here |
diff --git a/test/lisp/vc/vc-tests/vc-tests.el b/test/lisp/vc/vc-tests/vc-tests.el index 151efbec4e6..ca79a340a46 100644 --- a/test/lisp/vc/vc-tests/vc-tests.el +++ b/test/lisp/vc/vc-tests/vc-tests.el | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | ;;; vc-tests.el --- Tests of different backends of vc.el -*- lexical-binding:t -*- | 1 | ;;; vc-tests.el --- Tests of different backends of vc.el -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> | 5 | ;; Author: Michael Albinus <michael.albinus@gmx.de> |
| 6 | ;; Author: Sean Whitton <spwhitton@spwhitton.name> | 6 | ;; Sean Whitton <spwhitton@spwhitton.name> |
| 7 | 7 | ||
| 8 | ;; This file is part of GNU Emacs. | 8 | ;; This file is part of GNU Emacs. |
| 9 | ;; | 9 | ;; |
diff --git a/test/lisp/version-tests.el b/test/lisp/version-tests.el index 5b7f24a0350..1cf67a7d7f5 100644 --- a/test/lisp/version-tests.el +++ b/test/lisp/version-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; version-tests.el --- Tests for version.el -*- lexical-binding: t -*- | 1 | ;;; version-tests.el --- Tests for version.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/visual-wrap-tests.el b/test/lisp/visual-wrap-tests.el index d057ebef074..4fc033ec69e 100644 --- a/test/lisp/visual-wrap-tests.el +++ b/test/lisp/visual-wrap-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; visual-wrap-tests.el --- Tests for `visual-wrap-prefix-mode' -*- lexical-binding: t; -*- | 1 | ;;; visual-wrap-tests.el --- Tests for `visual-wrap-prefix-mode' -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2024-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2024-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/wdired-tests.el b/test/lisp/wdired-tests.el index 7506ba54928..1108d42da3e 100644 --- a/test/lisp/wdired-tests.el +++ b/test/lisp/wdired-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; wdired-tests.el --- tests for wdired.el -*- lexical-binding: t; -*- | 1 | ;;; wdired-tests.el --- tests for wdired.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/which-key-tests.el b/test/lisp/which-key-tests.el index c9ff011fda8..5f954580c4d 100644 --- a/test/lisp/which-key-tests.el +++ b/test/lisp/which-key-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; which-key-tests.el --- Tests for which-key.el -*- lexical-binding: t; -*- | 1 | ;;; which-key-tests.el --- Tests for which-key.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Justin Burkett <justin@burkett.cc> | 5 | ;; Author: Justin Burkett <justin@burkett.cc> |
| 6 | ;; Maintainer: Justin Burkett <justin@burkett.cc> | 6 | ;; Maintainer: Justin Burkett <justin@burkett.cc> |
diff --git a/test/lisp/whitespace-tests.el b/test/lisp/whitespace-tests.el index ed347d04be1..0bfc2461486 100644 --- a/test/lisp/whitespace-tests.el +++ b/test/lisp/whitespace-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; whitespace-tests.el --- Test suite for whitespace -*- lexical-binding: t -*- | 1 | ;;; whitespace-tests.el --- Test suite for whitespace -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/wid-edit-tests.el b/test/lisp/wid-edit-tests.el index cf74a19a0ea..e0895cdf8b7 100644 --- a/test/lisp/wid-edit-tests.el +++ b/test/lisp/wid-edit-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; wid-edit-tests.el --- tests for wid-edit.el -*- lexical-binding: t -*- | 1 | ;;; wid-edit-tests.el --- tests for wid-edit.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/winner-tests.el b/test/lisp/winner-tests.el index 549ab2c117e..1cf6b80f0ca 100644 --- a/test/lisp/winner-tests.el +++ b/test/lisp/winner-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; winner-tests.el --- Tests for winner.el -*- lexical-binding: t; -*- | 1 | ;;; winner-tests.el --- Tests for winner.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/x-dnd-tests.el b/test/lisp/x-dnd-tests.el index 406630f1253..314c976ec84 100644 --- a/test/lisp/x-dnd-tests.el +++ b/test/lisp/x-dnd-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; dnd-tests.el --- Tests for X DND support -*- lexical-binding: t; -*- | 1 | ;;; dnd-tests.el --- Tests for X DND support -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/lisp/xdg-tests.el b/test/lisp/xdg-tests.el index c421a241709..d18fb0c53c4 100644 --- a/test/lisp/xdg-tests.el +++ b/test/lisp/xdg-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; xdg-tests.el --- tests for xdg.el -*- lexical-binding: t -*- | 1 | ;;; xdg-tests.el --- tests for xdg.el -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Mark Oteiza <mvoteiza@udel.edu> | 5 | ;; Author: Mark Oteiza <mvoteiza@udel.edu> |
| 6 | ;; Maintainer: emacs-devel@gnu.org | 6 | ;; Maintainer: emacs-devel@gnu.org |
diff --git a/test/lisp/xml-tests.el b/test/lisp/xml-tests.el index 1c57a5657f2..1d1591888cb 100644 --- a/test/lisp/xml-tests.el +++ b/test/lisp/xml-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; xml-tests.el --- Test suite for XML parsing. -*- lexical-binding:t -*- | 1 | ;;; xml-tests.el --- Test suite for XML parsing. -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2012-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2012-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Chong Yidong <cyd@stupidchicken.com> | 5 | ;; Author: Chong Yidong <cyd@stupidchicken.com> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/lisp/xt-mouse-tests.el b/test/lisp/xt-mouse-tests.el index 12f7d50362e..26fe5002b68 100644 --- a/test/lisp/xt-mouse-tests.el +++ b/test/lisp/xt-mouse-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; xt-mouse-tests.el --- Test suite for xt-mouse. -*- lexical-binding: t; -*- | 1 | ;;; xt-mouse-tests.el --- Test suite for xt-mouse. -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Philipp Stephani <phst@google.com> | 5 | ;; Author: Philipp Stephani <phst@google.com> |
| 6 | 6 | ||
diff --git a/test/lisp/yank-media-tests.el b/test/lisp/yank-media-tests.el index 222bcd65975..76d9b990c3b 100644 --- a/test/lisp/yank-media-tests.el +++ b/test/lisp/yank-media-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; yank-media-tests.el --- Tests for yank-media.el -*- lexical-binding: t; -*- | 1 | ;;; yank-media-tests.el --- Tests for yank-media.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/manual/biditest.el b/test/manual/biditest.el index 4c5a7fc96dc..68ba25cb73e 100644 --- a/test/manual/biditest.el +++ b/test/manual/biditest.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; biditest.el --- test bidi reordering in GNU Emacs display engine. -*- lexical-binding: t; -*- | 1 | ;;; biditest.el --- test bidi reordering in GNU Emacs display engine. -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eli Zaretskii | 5 | ;; Author: Eli Zaretskii |
| 6 | ;; Maintainer: emacs-devel@gnu.org | 6 | ;; Maintainer: emacs-devel@gnu.org |
diff --git a/test/manual/cedet/cedet-utests.el b/test/manual/cedet/cedet-utests.el index d599f249dbb..c57ef9420a7 100644 --- a/test/manual/cedet/cedet-utests.el +++ b/test/manual/cedet/cedet-utests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cedet-utests.el --- Run all unit tests in the CEDET suite. -*- lexical-binding: t; -*- | 1 | ;;; cedet-utests.el --- Run all unit tests in the CEDET suite. -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/manual/cedet/ede-tests.el b/test/manual/cedet/ede-tests.el index 7b6e7aa7410..20fa3d7c825 100644 --- a/test/manual/cedet/ede-tests.el +++ b/test/manual/cedet/ede-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ede-tests.el --- Some tests for the Emacs Development Environment -*- lexical-binding: t -*- | 1 | ;;; ede-tests.el --- Some tests for the Emacs Development Environment -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2008-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2008-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/manual/cedet/semantic-tests.el b/test/manual/cedet/semantic-tests.el index 93c50a5361a..4bd29ebcfee 100644 --- a/test/manual/cedet/semantic-tests.el +++ b/test/manual/cedet/semantic-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; semantic-tests.el --- Miscellaneous Semantic tests. -*- lexical-binding: t; -*- | 1 | ;;; semantic-tests.el --- Miscellaneous Semantic tests. -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2003-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2003-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/manual/cedet/tests/test.c b/test/manual/cedet/tests/test.c index d1cc9a00db9..0459ce4a59a 100644 --- a/test/manual/cedet/tests/test.c +++ b/test/manual/cedet/tests/test.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* test.c --- Semantic unit test for C. | 1 | /* test.c --- Semantic unit test for C. |
| 2 | 2 | ||
| 3 | Copyright (C) 2001-2025 Free Software Foundation, Inc. | 3 | Copyright (C) 2001-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | Author: Eric M. Ludlam <zappo@gnu.org> | 5 | Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/manual/cedet/tests/test.el b/test/manual/cedet/tests/test.el index 19ccfc847ab..795cc1c153f 100644 --- a/test/manual/cedet/tests/test.el +++ b/test/manual/cedet/tests/test.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; test.el --- Unit test file for Semantic Emacs Lisp support. -*- lexical-binding: t -*- | 1 | ;;; test.el --- Unit test file for Semantic Emacs Lisp support. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2005-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2005-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> | 5 | ;; Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/manual/cedet/tests/test.make b/test/manual/cedet/tests/test.make index 6c73978c0c1..8cd50646f4a 100644 --- a/test/manual/cedet/tests/test.make +++ b/test/manual/cedet/tests/test.make | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | # test.make --- Semantic unit test for Make -*- makefile -*- | 1 | # test.make --- Semantic unit test for Make -*- makefile -*- |
| 2 | 2 | ||
| 3 | # Copyright (C) 2001-2002, 2010-2025 Free Software Foundation, Inc. | 3 | # Copyright (C) 2001-2002, 2010-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | # Author: Eric M. Ludlam <zappo@gnu.org> | 5 | # Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/manual/cedet/tests/testpolymorph.cpp b/test/manual/cedet/tests/testpolymorph.cpp index 55c40687f59..1eac0d6bce0 100644 --- a/test/manual/cedet/tests/testpolymorph.cpp +++ b/test/manual/cedet/tests/testpolymorph.cpp | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /** testpolymorph.cpp --- A sequence of polymorphism examples. | 1 | /** testpolymorph.cpp --- A sequence of polymorphism examples. |
| 2 | * | 2 | * |
| 3 | * Copyright (C) 2009-2025 Free Software Foundation, Inc. | 3 | * Copyright (C) 2009-2026 Free Software Foundation, Inc. |
| 4 | * | 4 | * |
| 5 | * Author: Eric M. Ludlam <zappo@gnu.org> | 5 | * Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | * | 6 | * |
diff --git a/test/manual/cedet/tests/testspp.c b/test/manual/cedet/tests/testspp.c index 3132560d759..94d3b74efc5 100644 --- a/test/manual/cedet/tests/testspp.c +++ b/test/manual/cedet/tests/testspp.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* testspp.cpp --- Semantic unit test for the C preprocessor | 1 | /* testspp.cpp --- Semantic unit test for the C preprocessor |
| 2 | 2 | ||
| 3 | Copyright (C) 2007-2025 Free Software Foundation, Inc. | 3 | Copyright (C) 2007-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | Author: Eric M. Ludlam <zappo@gnu.org> | 5 | Author: Eric M. Ludlam <zappo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/manual/cedet/tests/testsppreplace.c b/test/manual/cedet/tests/testsppreplace.c index 8fc3754744d..bf14064821e 100644 --- a/test/manual/cedet/tests/testsppreplace.c +++ b/test/manual/cedet/tests/testsppreplace.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* testsppreplace.c --- unit test for CPP/SPP Replacement | 1 | /* testsppreplace.c --- unit test for CPP/SPP Replacement |
| 2 | Copyright (C) 2007-2025 Free Software Foundation, Inc. | 2 | Copyright (C) 2007-2026 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | Author: Eric M. Ludlam <zappo@gnu.org> | 4 | Author: Eric M. Ludlam <zappo@gnu.org> |
| 5 | 5 | ||
diff --git a/test/manual/cedet/tests/testsppreplaced.c b/test/manual/cedet/tests/testsppreplaced.c index 3217f9eb050..c59d58119be 100644 --- a/test/manual/cedet/tests/testsppreplaced.c +++ b/test/manual/cedet/tests/testsppreplaced.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* testsppreplaced.c --- unit test for CPP/SPP Replacement | 1 | /* testsppreplaced.c --- unit test for CPP/SPP Replacement |
| 2 | Copyright (C) 2007-2025 Free Software Foundation, Inc. | 2 | Copyright (C) 2007-2026 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | Author: Eric M. Ludlam <zappo@gnu.org> | 4 | Author: Eric M. Ludlam <zappo@gnu.org> |
| 5 | 5 | ||
diff --git a/test/manual/etags/CTAGS.good b/test/manual/etags/CTAGS.good index 06662895b21..40e07126f5f 100644 --- a/test/manual/etags/CTAGS.good +++ b/test/manual/etags/CTAGS.good | |||
| @@ -615,7 +615,7 @@ FOR_EACH_ALIST_VALUE c-src/emacs/src/lisp.h /^#define FOR_EACH_ALIST_VALUE(head_ | |||
| 615 | FOR_EACH_TAIL c-src/emacs/src/lisp.h /^#define FOR_EACH_TAIL(hare, list, tortoise, n) \\$/ | 615 | FOR_EACH_TAIL c-src/emacs/src/lisp.h /^#define FOR_EACH_TAIL(hare, list, tortoise, n) \\$/ |
| 616 | FRAMEP c-src/emacs/src/lisp.h /^FRAMEP (Lisp_Object a)$/ | 616 | FRAMEP c-src/emacs/src/lisp.h /^FRAMEP (Lisp_Object a)$/ |
| 617 | FRC make-src/Makefile /^FRC:;$/ | 617 | FRC make-src/Makefile /^FRC:;$/ |
| 618 | FREEFLOOD c-src/emacs/src/gmalloc.c 1863 | 618 | FREEFLOOD c-src/emacs/src/gmalloc.c 1866 |
| 619 | FSRC make-src/Makefile /^FSRC=entry.for entry.strange_suffix entry.strange$/ | 619 | FSRC make-src/Makefile /^FSRC=entry.for entry.strange_suffix entry.strange$/ |
| 620 | FUN0 y-src/parse.y /^yylex FUN0()$/ | 620 | FUN0 y-src/parse.y /^yylex FUN0()$/ |
| 621 | FUN1 y-src/parse.y /^yyerror FUN1(char *, s)$/ | 621 | FUN1 y-src/parse.y /^yyerror FUN1(char *, s)$/ |
| @@ -968,12 +968,12 @@ Lua_help c-src/etags.c 600 | |||
| 968 | Lua_suffixes c-src/etags.c 598 | 968 | Lua_suffixes c-src/etags.c 598 |
| 969 | M ruby-src/test1.ru /^module A::M; end$/ | 969 | M ruby-src/test1.ru /^module A::M; end$/ |
| 970 | MAGENTA cp-src/screen.hpp 17 | 970 | MAGENTA cp-src/screen.hpp 17 |
| 971 | MAGICBYTE c-src/emacs/src/gmalloc.c 1861 | 971 | MAGICBYTE c-src/emacs/src/gmalloc.c 1864 |
| 972 | MAGICFREE c-src/emacs/src/gmalloc.c 1860 | 972 | MAGICFREE c-src/emacs/src/gmalloc.c 1863 |
| 973 | MAGICWORD c-src/emacs/src/gmalloc.c 1859 | 973 | MAGICWORD c-src/emacs/src/gmalloc.c 1862 |
| 974 | MAKE make-src/Makefile /^MAKE:=$(MAKE) --no-print-directory$/ | 974 | MAKE make-src/Makefile /^MAKE:=$(MAKE) --no-print-directory$/ |
| 975 | MAKESRC make-src/Makefile /^MAKESRC=Makefile$/ | 975 | MAKESRC make-src/Makefile /^MAKESRC=Makefile$/ |
| 976 | MALLOCFLOOD c-src/emacs/src/gmalloc.c 1862 | 976 | MALLOCFLOOD c-src/emacs/src/gmalloc.c 1865 |
| 977 | MANY c-src/emacs/src/lisp.h 2833 | 977 | MANY c-src/emacs/src/lisp.h 2833 |
| 978 | MARKERP c-src/emacs/src/lisp.h /^# define MARKERP(x) lisp_h_MARKERP (x)$/ | 978 | MARKERP c-src/emacs/src/lisp.h /^# define MARKERP(x) lisp_h_MARKERP (x)$/ |
| 979 | MAXPATHLEN c-src/etags.c 115 | 979 | MAXPATHLEN c-src/etags.c 115 |
| @@ -1915,7 +1915,7 @@ __malloc_initialized c-src/emacs/src/gmalloc.c 380 | |||
| 1915 | __repr__ pyt-src/server.py /^ def __repr__(self):$/ | 1915 | __repr__ pyt-src/server.py /^ def __repr__(self):$/ |
| 1916 | __repr__ pyt-src/server.py /^ def __repr__(self):$/ | 1916 | __repr__ pyt-src/server.py /^ def __repr__(self):$/ |
| 1917 | __repr__ pyt-src/server.py /^ def __repr__(self):$/ | 1917 | __repr__ pyt-src/server.py /^ def __repr__(self):$/ |
| 1918 | __sbrk c-src/emacs/src/gmalloc.c 1516 | 1918 | __sbrk c-src/emacs/src/gmalloc.c 1518 |
| 1919 | __str__ pyt-src/server.py /^ def __str__(self):$/ | 1919 | __str__ pyt-src/server.py /^ def __str__(self):$/ |
| 1920 | __str__ pyt-src/server.py /^ def __str__(self):$/ | 1920 | __str__ pyt-src/server.py /^ def __str__(self):$/ |
| 1921 | __str__ pyt-src/server.py /^ def __str__(self):$/ | 1921 | __str__ pyt-src/server.py /^ def __str__(self):$/ |
| @@ -2053,7 +2053,7 @@ alignas c-src/emacs/src/lisp.h /^# define alignas(alignment) \/* empty *\/$/ | |||
| 2053 | aligned c-src/emacs/src/gmalloc.c 199 | 2053 | aligned c-src/emacs/src/gmalloc.c 199 |
| 2054 | aligned_alloc c-src/emacs/src/gmalloc.c 71 | 2054 | aligned_alloc c-src/emacs/src/gmalloc.c 71 |
| 2055 | aligned_alloc c-src/emacs/src/gmalloc.c /^aligned_alloc (size_t alignment, size_t size)$/ | 2055 | aligned_alloc c-src/emacs/src/gmalloc.c /^aligned_alloc (size_t alignment, size_t size)$/ |
| 2056 | aligned_alloc c-src/emacs/src/gmalloc.c 1722 | 2056 | aligned_alloc c-src/emacs/src/gmalloc.c 1725 |
| 2057 | alignlist c-src/emacs/src/gmalloc.c 196 | 2057 | alignlist c-src/emacs/src/gmalloc.c 196 |
| 2058 | alive cp-src/conway.hpp 7 | 2058 | alive cp-src/conway.hpp 7 |
| 2059 | all_kboards c-src/emacs/src/keyboard.c 86 | 2059 | all_kboards c-src/emacs/src/keyboard.c 86 |
| @@ -2278,7 +2278,7 @@ calculate_goal_info merc-src/accumulator.m /^:- pred calculate_goal_info(hlds_go | |||
| 2278 | calloc c-src/emacs/src/gmalloc.c 66 | 2278 | calloc c-src/emacs/src/gmalloc.c 66 |
| 2279 | calloc c-src/emacs/src/gmalloc.c 70 | 2279 | calloc c-src/emacs/src/gmalloc.c 70 |
| 2280 | calloc c-src/emacs/src/gmalloc.c /^calloc (size_t nmemb, size_t size)$/ | 2280 | calloc c-src/emacs/src/gmalloc.c /^calloc (size_t nmemb, size_t size)$/ |
| 2281 | calloc c-src/emacs/src/gmalloc.c 1721 | 2281 | calloc c-src/emacs/src/gmalloc.c 1724 |
| 2282 | can_be_null c-src/emacs/src/regex.h 370 | 2282 | can_be_null c-src/emacs/src/regex.h 370 |
| 2283 | cancel_echoing c-src/emacs/src/keyboard.c /^cancel_echoing (void)$/ | 2283 | cancel_echoing c-src/emacs/src/keyboard.c /^cancel_echoing (void)$/ |
| 2284 | canonicalize_filename c-src/etags.c /^canonicalize_filename (register char *fn)$/ | 2284 | canonicalize_filename c-src/etags.c /^canonicalize_filename (register char *fn)$/ |
| @@ -2918,7 +2918,7 @@ free c-src/emacs/src/gmalloc.c 67 | |||
| 2918 | free c-src/emacs/src/gmalloc.c 72 | 2918 | free c-src/emacs/src/gmalloc.c 72 |
| 2919 | free c-src/emacs/src/gmalloc.c 166 | 2919 | free c-src/emacs/src/gmalloc.c 166 |
| 2920 | free c-src/emacs/src/gmalloc.c /^free (void *ptr)$/ | 2920 | free c-src/emacs/src/gmalloc.c /^free (void *ptr)$/ |
| 2921 | free c-src/emacs/src/gmalloc.c 1723 | 2921 | free c-src/emacs/src/gmalloc.c 1726 |
| 2922 | free_fdesc c-src/etags.c /^free_fdesc (register fdesc *fdp)$/ | 2922 | free_fdesc c-src/etags.c /^free_fdesc (register fdesc *fdp)$/ |
| 2923 | free_for prol-src/natded.prolog /^free_for(var(_),_,_).$/ | 2923 | free_for prol-src/natded.prolog /^free_for(var(_),_,_).$/ |
| 2924 | free_regexps c-src/etags.c /^free_regexps (void)$/ | 2924 | free_regexps c-src/etags.c /^free_regexps (void)$/ |
| @@ -3028,7 +3028,7 @@ hash_table_test c-src/emacs/src/lisp.h 1805 | |||
| 3028 | hashfn c-src/emacs/src/lisp.h /^ EMACS_UINT (*hashfn) (struct hash_table_test *t,/ | 3028 | hashfn c-src/emacs/src/lisp.h /^ EMACS_UINT (*hashfn) (struct hash_table_test *t,/ |
| 3029 | hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}%$/ | 3029 | hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}%$/ |
| 3030 | hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}$/ | 3030 | hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}$/ |
| 3031 | hdr c-src/emacs/src/gmalloc.c 1865 | 3031 | hdr c-src/emacs/src/gmalloc.c 1868 |
| 3032 | head_table c-src/emacs/src/keyboard.c 11027 | 3032 | head_table c-src/emacs/src/keyboard.c 11027 |
| 3033 | header c-src/emacs/src/lisp.h 1371 | 3033 | header c-src/emacs/src/lisp.h 1371 |
| 3034 | header c-src/emacs/src/lisp.h 1388 | 3034 | header c-src/emacs/src/lisp.h 1388 |
| @@ -3465,7 +3465,7 @@ mach_task_self c-src/machsyscalls.h /^SYSCALL (mach_task_self, -28,$/ | |||
| 3465 | mach_thread_self c-src/machsyscalls.h /^SYSCALL (mach_thread_self, -27,$/ | 3465 | mach_thread_self c-src/machsyscalls.h /^SYSCALL (mach_thread_self, -27,$/ |
| 3466 | macheader tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ | 3466 | macheader tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ |
| 3467 | macx\defmacheader tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ | 3467 | macx\defmacheader tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ |
| 3468 | magic c-src/emacs/src/gmalloc.c 1868 | 3468 | magic c-src/emacs/src/gmalloc.c 1871 |
| 3469 | mainmagstep tex-src/texinfo.tex /^\\let\\mainmagstep=\\magstephalf$/ | 3469 | mainmagstep tex-src/texinfo.tex /^\\let\\mainmagstep=\\magstephalf$/ |
| 3470 | mainmagstep tex-src/texinfo.tex /^\\let\\mainmagstep=\\magstep1$/ | 3470 | mainmagstep tex-src/texinfo.tex /^\\let\\mainmagstep=\\magstep1$/ |
| 3471 | maintaining.info make-src/Makefile /^maintaining.info: maintaining.texi$/ | 3471 | maintaining.info make-src/Makefile /^maintaining.info: maintaining.texi$/ |
| @@ -3495,7 +3495,7 @@ malloc c-src/emacs/src/gmalloc.c 64 | |||
| 3495 | malloc c-src/emacs/src/gmalloc.c 68 | 3495 | malloc c-src/emacs/src/gmalloc.c 68 |
| 3496 | malloc c-src/emacs/src/gmalloc.c /^extern void *malloc (size_t size) ATTRIBUTE_MALLOC/ | 3496 | malloc c-src/emacs/src/gmalloc.c /^extern void *malloc (size_t size) ATTRIBUTE_MALLOC/ |
| 3497 | malloc c-src/emacs/src/gmalloc.c /^malloc (size_t size)$/ | 3497 | malloc c-src/emacs/src/gmalloc.c /^malloc (size_t size)$/ |
| 3498 | malloc c-src/emacs/src/gmalloc.c 1719 | 3498 | malloc c-src/emacs/src/gmalloc.c 1722 |
| 3499 | malloc_atfork_handler_child c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_child (void)$/ | 3499 | malloc_atfork_handler_child c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_child (void)$/ |
| 3500 | malloc_atfork_handler_parent c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_parent (void)$/ | 3500 | malloc_atfork_handler_parent c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_parent (void)$/ |
| 3501 | malloc_atfork_handler_prepare c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_prepare (void)$/ | 3501 | malloc_atfork_handler_prepare c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_prepare (void)$/ |
| @@ -3526,7 +3526,7 @@ maybe_gc c-src/emacs/src/lisp.h /^maybe_gc (void)$/ | |||
| 3526 | mcCSC cp-src/c.C 6 | 3526 | mcCSC cp-src/c.C 6 |
| 3527 | mcheck c-src/emacs/src/gmalloc.c /^mcheck (void (*func) (enum mcheck_status))$/ | 3527 | mcheck c-src/emacs/src/gmalloc.c /^mcheck (void (*func) (enum mcheck_status))$/ |
| 3528 | mcheck_status c-src/emacs/src/gmalloc.c 283 | 3528 | mcheck_status c-src/emacs/src/gmalloc.c 283 |
| 3529 | mcheck_used c-src/emacs/src/gmalloc.c 2017 | 3529 | mcheck_used c-src/emacs/src/gmalloc.c 2020 |
| 3530 | mdbcomp merc-src/accumulator.m /^:- import_module mdbcomp.$/ | 3530 | mdbcomp merc-src/accumulator.m /^:- import_module mdbcomp.$/ |
| 3531 | me22b lua-src/test.lua /^ local function test.me22b (one)$/ | 3531 | me22b lua-src/test.lua /^ local function test.me22b (one)$/ |
| 3532 | me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ | 3532 | me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ |
| @@ -3890,7 +3890,7 @@ pagealignmacro tex-src/texinfo.tex /^\\global\\let\\pagealignmacro=\\chappager$/ | |||
| 3890 | pagealignmacro tex-src/texinfo.tex /^\\global\\let\\pagealignmacro=\\chapoddpage$/ | 3890 | pagealignmacro tex-src/texinfo.tex /^\\global\\let\\pagealignmacro=\\chapoddpage$/ |
| 3891 | pagebody tex-src/texinfo.tex /^\\def\\pagebody#1{\\vbox to\\pageheight{\\boxmaxdepth=\\/ | 3891 | pagebody tex-src/texinfo.tex /^\\def\\pagebody#1{\\vbox to\\pageheight{\\boxmaxdepth=\\/ |
| 3892 | pagecontents tex-src/texinfo.tex /^\\gdef\\pagecontents#1{\\ifvoid\\topins\\else\\unvbox\\to/ | 3892 | pagecontents tex-src/texinfo.tex /^\\gdef\\pagecontents#1{\\ifvoid\\topins\\else\\unvbox\\to/ |
| 3893 | pagesize c-src/emacs/src/gmalloc.c 1707 | 3893 | pagesize c-src/emacs/src/gmalloc.c 1710 |
| 3894 | pagesofar tex-src/texinfo.tex /^\\def\\pagesofar{\\unvbox\\partialpage %$/ | 3894 | pagesofar tex-src/texinfo.tex /^\\def\\pagesofar{\\unvbox\\partialpage %$/ |
| 3895 | pair merc-src/accumulator.m /^:- import_module pair.$/ | 3895 | pair merc-src/accumulator.m /^:- import_module pair.$/ |
| 3896 | par tex-src/texinfo.tex /^{\\let\\par=\\endgraf \\smallbreak}%$/ | 3896 | par tex-src/texinfo.tex /^{\\let\\par=\\endgraf \\smallbreak}%$/ |
| @@ -4113,7 +4113,7 @@ readline_internal c-src/etags.c /^readline_internal (linebuffer *lbp, register F | |||
| 4113 | realloc c-src/emacs/src/gmalloc.c 65 | 4113 | realloc c-src/emacs/src/gmalloc.c 65 |
| 4114 | realloc c-src/emacs/src/gmalloc.c 69 | 4114 | realloc c-src/emacs/src/gmalloc.c 69 |
| 4115 | realloc c-src/emacs/src/gmalloc.c /^realloc (void *ptr, size_t size)$/ | 4115 | realloc c-src/emacs/src/gmalloc.c /^realloc (void *ptr, size_t size)$/ |
| 4116 | realloc c-src/emacs/src/gmalloc.c 1720 | 4116 | realloc c-src/emacs/src/gmalloc.c 1723 |
| 4117 | reallochook c-src/emacs/src/gmalloc.c /^reallochook (void *ptr, size_t size)$/ | 4117 | reallochook c-src/emacs/src/gmalloc.c /^reallochook (void *ptr, size_t size)$/ |
| 4118 | recent-keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, / | 4118 | recent-keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, / |
| 4119 | recent_keys c-src/emacs/src/keyboard.c 100 | 4119 | recent_keys c-src/emacs/src/keyboard.c 100 |
| @@ -4341,7 +4341,7 @@ size c-src/etags.c 236 | |||
| 4341 | size c-src/etags.c 2522 | 4341 | size c-src/etags.c 2522 |
| 4342 | size c-src/emacs/src/gmalloc.c 156 | 4342 | size c-src/emacs/src/gmalloc.c 156 |
| 4343 | size c-src/emacs/src/gmalloc.c 163 | 4343 | size c-src/emacs/src/gmalloc.c 163 |
| 4344 | size c-src/emacs/src/gmalloc.c 1867 | 4344 | size c-src/emacs/src/gmalloc.c 1870 |
| 4345 | size c-src/emacs/src/lisp.h 1364 | 4345 | size c-src/emacs/src/lisp.h 1364 |
| 4346 | size c-src/emacs/src/lisp.h 1390 | 4346 | size c-src/emacs/src/lisp.h 1390 |
| 4347 | skeyseen c-src/etags.c 2445 | 4347 | skeyseen c-src/etags.c 2445 |
diff --git a/test/manual/etags/CTAGS.good_crlf b/test/manual/etags/CTAGS.good_crlf index a27156dfca2..5948f393fd8 100644 --- a/test/manual/etags/CTAGS.good_crlf +++ b/test/manual/etags/CTAGS.good_crlf | |||
| @@ -1,1778 +1,39 @@ | |||
| 1 | " tex-src/texinfo.tex /^\\def\\turnoffactive{\\let"=\\normaldoublequote$/ | 1 | ($_,$flag,$opt,$f,$r,@temp perl-src/yagrip.pl 8 |
| 2 | " tex-src/texinfo.tex /^\\let"=\\activedoublequote$/ | ||
| 3 | #a-defer-word forth-src/test-forth.fth /^defer #a-defer-word$/ | ||
| 4 | #some-storage forth-src/test-forth.fth /^2000 buffer: #some-storage$/ | ||
| 5 | $0x80 c-src/sysdep.h 32 | 2 | $0x80 c-src/sysdep.h 32 |
| 6 | $SYS_##syscall_na c-src/sysdep.h 31 | 3 | ${CHECKOBJS} make-src/Makefile /^${CHECKOBJS}: CFLAGS=-g3 -DNULLFREECHECK=0$/ |
| 7 | $domain php-src/lce_functions.php 175 | 4 | $domain php-src/lce_functions.php 175 |
| 8 | $filename php-src/lce_functions.php 174 | 5 | $filename php-src/lce_functions.php 174 |
| 9 | $ignore_ws php-src/lce_functions.php 171 | 6 | $ignore_ws php-src/lce_functions.php 171 |
| 10 | $memassign php-src/ptest.php 9 | 7 | $memassign php-src/ptest.php 9 |
| 11 | $memassign_space php-src/ptest.php 10 | 8 | $memassign_space php-src/ptest.php 10 |
| 12 | $member php-src/ptest.php 8 | 9 | $member php-src/ptest.php 8 |
| 10 | $msgid_lc php-src/lce_functions.php 113 | ||
| 13 | $msgid php-src/lce_functions.php 107 | 11 | $msgid php-src/lce_functions.php 107 |
| 14 | $msgid php-src/lce_functions.php 165 | 12 | $msgid php-src/lce_functions.php 165 |
| 15 | $msgid_lc php-src/lce_functions.php 113 | 13 | $msgstr_lc php-src/lce_functions.php 114 |
| 16 | $msgstr php-src/lce_functions.php 108 | 14 | $msgstr php-src/lce_functions.php 108 |
| 17 | $msgstr php-src/lce_functions.php 166 | 15 | $msgstr php-src/lce_functions.php 166 |
| 18 | $msgstr_lc php-src/lce_functions.php 114 | ||
| 19 | $po_entries php-src/lce_functions.php 172 | 16 | $po_entries php-src/lce_functions.php 172 |
| 20 | $poe_num php-src/lce_functions.php 173 | 17 | $poe_num php-src/lce_functions.php 173 |
| 21 | $por_a php-src/lce_functions.php 500 | 18 | $por_a php-src/lce_functions.php 500 |
| 22 | $prefix php-src/lce_functions.php 72 | 19 | $prefix php-src/lce_functions.php 72 |
| 20 | ($prog,$_,@list perl-src/yagrip.pl 39 | ||
| 23 | $state php-src/lce_functions.php 170 | 21 | $state php-src/lce_functions.php 170 |
| 22 | ($string,$flag,@string,@temp,@last perl-src/yagrip.pl 40 | ||
| 23 | $sys_comment_lc php-src/lce_functions.php 116 | ||
| 24 | $sys_comment php-src/lce_functions.php 110 | 24 | $sys_comment php-src/lce_functions.php 110 |
| 25 | $sys_comment php-src/lce_functions.php 168 | 25 | $sys_comment php-src/lce_functions.php 168 |
| 26 | $sys_comment_lc php-src/lce_functions.php 116 | 26 | $SYS_##syscall_na c-src/sysdep.h 31 |
| 27 | $test php-src/ptest.php 12 | 27 | $test php-src/ptest.php 12 |
| 28 | $unk_comment_lc php-src/lce_functions.php 117 | ||
| 28 | $unk_comment php-src/lce_functions.php 111 | 29 | $unk_comment php-src/lce_functions.php 111 |
| 29 | $unk_comment php-src/lce_functions.php 169 | 30 | $unk_comment php-src/lce_functions.php 169 |
| 30 | $unk_comment_lc php-src/lce_functions.php 117 | 31 | $user_comment_lc php-src/lce_functions.php 115 |
| 31 | $user_comment php-src/lce_functions.php 109 | 32 | $user_comment php-src/lce_functions.php 109 |
| 32 | $user_comment php-src/lce_functions.php 167 | 33 | $user_comment php-src/lce_functions.php 167 |
| 33 | $user_comment_lc php-src/lce_functions.php 115 | ||
| 34 | ${CHECKOBJS} make-src/Makefile /^${CHECKOBJS}: CFLAGS=-g3 -DNULLFREECHECK=0$/ | ||
| 35 | %cdiff make-src/Makefile /^%cdiff: CTAGS% CTAGS ${infiles}$/ | ||
| 36 | %ediff make-src/Makefile /^%ediff: ETAGS% ETAGS ${infiles}$/ | ||
| 37 | & tex-src/texinfo.tex /^\\gdef\\functionparens{\\boldbrax\\let&=\\amprm\\parenco/ | ||
| 38 | & tex-src/texinfo.tex /^\\gdef\\normalparens{\\boldbrax\\let&=\\ampnr}$/ | ||
| 39 | ' tex-src/texinfo.tex /^\\def\\'{{'}}$/ | ||
| 40 | ( tex-src/texinfo.tex /^\\gdef\\amprm#1 {{\\rm\\}\\let(=\\oprm \\let)=\\clrm\\ }/ | ||
| 41 | ( tex-src/texinfo.tex /^\\gdef\\boldbrax{\\let(=\\opnr\\let)=\\clnr\\let[=\\lbrb\\l/ | ||
| 42 | ( tex-src/texinfo.tex /^\\gdef\\oprm#1 {{\\rm\\char`\\(}#1 \\bf \\let(=\\opnested / | ||
| 43 | ( tex-src/texinfo.tex /^\\ifnum \\parencount=1 {\\rm \\char `\\)}\\sl \\let(=\\opr/ | ||
| 44 | ($_,$flag,$opt,$f,$r,@temp perl-src/yagrip.pl 8 | ||
| 45 | ($prog,$_,@list perl-src/yagrip.pl 39 | ||
| 46 | ($string,$flag,@string,@temp,@last perl-src/yagrip.pl 40 | ||
| 47 | (a-forth-constant forth-src/test-forth.fth /^constant (a-forth-constant$/ | ||
| 48 | (another-forth-word) forth-src/test-forth.fth /^: (another-forth-word) ( -- )$/ | ||
| 49 | (foo) forth-src/test-forth.fth /^: (foo) 1 ;$/ | ||
| 50 | ) tex-src/texinfo.tex /^\\gdef\\amprm#1 {{\\rm\\}\\let(=\\oprm \\let)=\\clrm\\ }/ | ||
| 51 | ) tex-src/texinfo.tex /^\\gdef\\boldbrax{\\let(=\\opnr\\let)=\\clnr\\let[=\\lbrb\\l/ | ||
| 52 | * tex-src/texinfo.tex /^\\def\\*{\\hfil\\break\\hbox{}\\ignorespaces}$/ | ||
| 53 | * tex-src/texinfo.tex /^\\let\\*=\\ptexstar$/ | ||
| 54 | + ruby-src/test.rb /^ def +(y)$/ | ||
| 55 | + tex-src/texinfo.tex /^\\def+{{\\tt \\char 43}}$/ | ||
| 56 | + tex-src/texinfo.tex /^\\let+=\\normalplus}$/ | ||
| 57 | . tex-src/texinfo.tex /^\\def\\.{.\\spacefactor=3000 }$/ | ||
| 58 | . tex-src/texinfo.tex /^\\let\\.=\\ptexdot$/ | ||
| 59 | .PRECIOUS make-src/Makefile /^.PRECIOUS: ETAGS CTAGS ETAGS16 CTAGS16 ETAGS17 CTA/ | ||
| 60 | /.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/.notdef \/.not/ | ||
| 61 | /.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/space \/exclam/ | ||
| 62 | /A ps-src/rfc1245.ps /^\/A { $/ | ||
| 63 | /Acircumflex ps-src/rfc1245.ps /^\/Acircumflex \/Ecircumflex \/Aacute \/Edieresis \/Egra/ | ||
| 64 | /B ps-src/rfc1245.ps /^\/B { $/ | ||
| 65 | /BEGINBITMAP2BIT ps-src/rfc1245.ps /^\/BEGINBITMAP2BIT { $/ | ||
| 66 | /BEGINBITMAP2BITc ps-src/rfc1245.ps /^\/BEGINBITMAP2BITc { $/ | ||
| 67 | /BEGINBITMAPBW ps-src/rfc1245.ps /^\/BEGINBITMAPBW { $/ | ||
| 68 | /BEGINBITMAPBWc ps-src/rfc1245.ps /^\/BEGINBITMAPBWc { $/ | ||
| 69 | /BEGINBITMAPGRAY ps-src/rfc1245.ps /^\/BEGINBITMAPGRAY { $/ | ||
| 70 | /BEGINBITMAPGRAYc ps-src/rfc1245.ps /^\/BEGINBITMAPGRAYc { $/ | ||
| 71 | /BEGINPRINTCODE ps-src/rfc1245.ps /^\/BEGINPRINTCODE { $/ | ||
| 72 | /BF ps-src/rfc1245.ps /^\/BF { $/ | ||
| 73 | /BITMAPCOLOR ps-src/rfc1245.ps /^\/BITMAPCOLOR { $/ | ||
| 74 | /BITMAPCOLORc ps-src/rfc1245.ps /^\/BITMAPCOLORc { $/ | ||
| 75 | /BITMAPGRAY ps-src/rfc1245.ps /^\/BITMAPGRAY { $/ | ||
| 76 | /BITMAPGRAYc ps-src/rfc1245.ps /^\/BITMAPGRAYc { $/ | ||
| 77 | /C ps-src/rfc1245.ps /^\/C { $/ | ||
| 78 | /COMMONBITMAP ps-src/rfc1245.ps /^\/COMMONBITMAP { $/ | ||
| 79 | /COMMONBITMAPc ps-src/rfc1245.ps /^\/COMMONBITMAPc { $/ | ||
| 80 | /D ps-src/rfc1245.ps /^\/D {curveto} bind def$/ | ||
| 81 | /DiacriticEncoding ps-src/rfc1245.ps /^\/DiacriticEncoding [$/ | ||
| 82 | /E ps-src/rfc1245.ps /^\/E {lineto} bind def$/ | ||
| 83 | /ENDBITMAP ps-src/rfc1245.ps /^\/ENDBITMAP {$/ | ||
| 84 | /ENDPRINTCODE ps-src/rfc1245.ps /^\/ENDPRINTCODE {$/ | ||
| 85 | /F ps-src/rfc1245.ps /^\/F { $/ | ||
| 86 | /FMBEGINEPSF ps-src/rfc1245.ps /^\/FMBEGINEPSF { $/ | ||
| 87 | /FMBEGINPAGE ps-src/rfc1245.ps /^\/FMBEGINPAGE { $/ | ||
| 88 | /FMDEFINEFONT ps-src/rfc1245.ps /^\/FMDEFINEFONT { $/ | ||
| 89 | /FMDOCUMENT ps-src/rfc1245.ps /^\/FMDOCUMENT { $/ | ||
| 90 | /FMENDEPSF ps-src/rfc1245.ps /^\/FMENDEPSF {$/ | ||
| 91 | /FMENDPAGE ps-src/rfc1245.ps /^\/FMENDPAGE {$/ | ||
| 92 | /FMLOCAL ps-src/rfc1245.ps /^\/FMLOCAL {$/ | ||
| 93 | /FMNORMALIZEGRAPHICS ps-src/rfc1245.ps /^\/FMNORMALIZEGRAPHICS { $/ | ||
| 94 | /FMVERSION ps-src/rfc1245.ps /^\/FMVERSION {$/ | ||
| 95 | /FMversion ps-src/rfc1245.ps /^\/FMversion (2.0) def $/ | ||
| 96 | /Fmcc ps-src/rfc1245.ps /^\/Fmcc {$/ | ||
| 97 | /FrameDict ps-src/rfc1245.ps /^\/FrameDict 190 dict def $/ | ||
| 98 | /G ps-src/rfc1245.ps /^\/G { $/ | ||
| 99 | /H ps-src/rfc1245.ps /^\/H { $/ | ||
| 100 | /Icircumflex ps-src/rfc1245.ps /^\/Icircumflex \/Idieresis \/Igrave \/Oacute \/Ocircumfl/ | ||
| 101 | /L ps-src/rfc1245.ps /^\/L \/M \/N \/O \/P \/Q \/R \/S \/T \/U \/V \/W \/X \/Y \/Z \/brac/ | ||
| 102 | /L ps-src/rfc1245.ps /^\/L { $/ | ||
| 103 | /M ps-src/rfc1245.ps /^\/M {newpath moveto} bind def$/ | ||
| 104 | /N ps-src/rfc1245.ps /^\/N { $/ | ||
| 105 | /Ntilde ps-src/rfc1245.ps /^\/Ntilde \/Odieresis \/Udieresis \/aacute \/agrave \/aci/ | ||
| 106 | /O ps-src/rfc1245.ps /^\/O {closepath} bind def$/ | ||
| 107 | /Otilde ps-src/rfc1245.ps /^\/Otilde \/OE \/oe \/endash \/emdash \/quotedblleft \/quo/ | ||
| 108 | /P ps-src/rfc1245.ps /^\/P { $/ | ||
| 109 | /PF ps-src/rfc1245.ps /^\/PF { $/ | ||
| 110 | /R ps-src/rfc1245.ps /^\/R { $/ | ||
| 111 | /RF ps-src/rfc1245.ps /^\/RF { $/ | ||
| 112 | /RR ps-src/rfc1245.ps /^\/RR { $/ | ||
| 113 | /ReEncode ps-src/rfc1245.ps /^\/ReEncode { $/ | ||
| 114 | /S ps-src/rfc1245.ps /^\/S { $/ | ||
| 115 | /SF ps-src/rfc1245.ps /^\/SF { $/ | ||
| 116 | /T ps-src/rfc1245.ps /^\/T { $/ | ||
| 117 | /TF ps-src/rfc1245.ps /^\/TF { $/ | ||
| 118 | /U ps-src/rfc1245.ps /^\/U { $/ | ||
| 119 | /Uacute ps-src/rfc1245.ps /^\/Uacute \/Ucircumflex \/Ugrave \/dotlessi \/circumflex/ | ||
| 120 | /V ps-src/rfc1245.ps /^\/V { $/ | ||
| 121 | /W ps-src/rfc1245.ps /^\/W { $/ | ||
| 122 | /X ps-src/rfc1245.ps /^\/X { $/ | ||
| 123 | /Y ps-src/rfc1245.ps /^\/Y { $/ | ||
| 124 | /Z ps-src/rfc1245.ps /^\/Z {$/ | ||
| 125 | /atilde ps-src/rfc1245.ps /^\/atilde \/aring \/ccedilla \/eacute \/egrave \/ecircumf/ | ||
| 126 | /bl ps-src/rfc1245.ps /^\/bl { $/ | ||
| 127 | /braceright ps-src/rfc1245.ps /^\/braceright \/asciitilde \/.notdef \/Adieresis \/Aring/ | ||
| 128 | /bracketright ps-src/rfc1245.ps /^\/bracketright \/asciicircum \/underscore \/grave \/a \// | ||
| 129 | /breve ps-src/rfc1245.ps /^\/breve \/dotaccent \/ring \/cedilla \/hungarumlaut \/og/ | ||
| 130 | /cfs ps-src/rfc1245.ps /^\/cfs { $/ | ||
| 131 | /colorsetup ps-src/rfc1245.ps /^\/colorsetup {$/ | ||
| 132 | /desperatepapersize ps-src/rfc1245.ps /^\/desperatepapersize {$/ | ||
| 133 | /dieresis ps-src/rfc1245.ps /^\/dieresis \/.notdef \/AE \/Oslash \/.notdef \/.notdef \// | ||
| 134 | /dmatrix ps-src/rfc1245.ps /^\/dmatrix matrix def$/ | ||
| 135 | /dnormalize ps-src/rfc1245.ps /^\/dnormalize {$/ | ||
| 136 | /dpi ps-src/rfc1245.ps /^\/dpi 72 0 dmatrix defaultmatrix dtransform$/ | ||
| 137 | /exclamdown ps-src/rfc1245.ps /^\/exclamdown \/logicalnot \/.notdef \/florin \/.notdef / | ||
| 138 | /fakecolorsetup ps-src/rfc1245.ps /^\/fakecolorsetup {$/ | ||
| 139 | /fillprocs ps-src/rfc1245.ps /^\/fillprocs 32 array def$/ | ||
| 140 | /fl ps-src/rfc1245.ps /^\/fl { $/ | ||
| 141 | /fraction ps-src/rfc1245.ps /^\/fraction \/currency \/guilsinglleft \/guilsinglright/ | ||
| 142 | /freq ps-src/rfc1245.ps /^\/freq dpi 18.75 div 8 div round dup 0 eq {pop 1} i/ | ||
| 143 | /gn ps-src/rfc1245.ps /^\/gn { $/ | ||
| 144 | /graymode ps-src/rfc1245.ps /^\/graymode true def$/ | ||
| 145 | /grayness ps-src/rfc1245.ps /^\/grayness {$/ | ||
| 146 | /guillemotleft ps-src/rfc1245.ps /^\/guillemotleft \/guillemotright \/ellipsis \/.notdef / | ||
| 147 | /home/www/pub/etags.c.gz make-src/Makefile /^\/home\/www\/pub\/etags.c.gz: etags.c$/ | ||
| 148 | /home/www/pub/software/unix/etags.tar.gz make-src/Makefile /^\/home\/www\/pub\/software\/unix\/etags.tar.gz: Makefile/ | ||
| 149 | /hx ps-src/rfc1245.ps /^\/hx { $/ | ||
| 150 | /i ps-src/rfc1245.ps /^\/i \/j \/k \/l \/m \/n \/o \/p \/q \/r \/s \/t \/u \/v \/w \/x \/y/ | ||
| 151 | /iacute ps-src/rfc1245.ps /^\/iacute \/igrave \/icircumflex \/idieresis \/ntilde \/o/ | ||
| 152 | /ic ps-src/rfc1245.ps /^\/ic [ $/ | ||
| 153 | /inch ps-src/rfc1245.ps /^\/inch {72 mul} def$/ | ||
| 154 | /ip ps-src/rfc1245.ps /^\/ip { $/ | ||
| 155 | /less ps-src/rfc1245.ps /^\/less \/equal \/greater \/question \/at \/A \/B \/C \/D \/E/ | ||
| 156 | /lnormalize ps-src/rfc1245.ps /^\/lnormalize { $/ | ||
| 157 | /manualpapersize ps-src/rfc1245.ps /^\/manualpapersize {$/ | ||
| 158 | /max ps-src/rfc1245.ps /^\/max {2 copy lt {exch} if pop} bind def$/ | ||
| 159 | /min ps-src/rfc1245.ps /^\/min {2 copy gt {exch} if pop} bind def$/ | ||
| 160 | /ms ps-src/rfc1245.ps /^\/ms { $/ | ||
| 161 | /nbluet ps-src/rfc1245.ps /^\/nbluet 256 array def$/ | ||
| 162 | /ngrayt ps-src/rfc1245.ps /^\/ngrayt 256 array def$/ | ||
| 163 | /ngreent ps-src/rfc1245.ps /^\/ngreent 256 array def$/ | ||
| 164 | /normalize ps-src/rfc1245.ps /^\/normalize {$/ | ||
| 165 | /nredt ps-src/rfc1245.ps /^\/nredt 256 array def$/ | ||
| 166 | /numbersign ps-src/rfc1245.ps /^\/numbersign \/dollar \/percent \/ampersand \/quotesing/ | ||
| 167 | /ocircumflex ps-src/rfc1245.ps /^\/ocircumflex \/odieresis \/otilde \/uacute \/ugrave \/u/ | ||
| 168 | /ordfeminine ps-src/rfc1245.ps /^\/ordfeminine \/ordmasculine \/.notdef \/ae \/oslash \/q/ | ||
| 169 | /pagedimen ps-src/rfc1245.ps /^\/pagedimen { $/ | ||
| 170 | /papersize ps-src/rfc1245.ps /^\/papersize {$/ | ||
| 171 | /paragraph ps-src/rfc1245.ps /^\/paragraph \/germandbls \/registered \/copyright \/tra/ | ||
| 172 | /parenright ps-src/rfc1245.ps /^\/parenright \/asterisk \/plus \/comma \/hyphen \/period/ | ||
| 173 | /periodcentered ps-src/rfc1245.ps /^\/periodcentered \/quotesinglbase \/quotedblbase \/per/ | ||
| 174 | /quoteleft ps-src/rfc1245.ps /^\/quoteleft \/quoteright \/.notdef \/.notdef \/ydieresi/ | ||
| 175 | /restorematrix ps-src/rfc1245.ps /^\/restorematrix {$/ | ||
| 176 | /s1 ps-src/rfc1245.ps /^\/s1 1 string def$/ | ||
| 177 | /sangle ps-src/rfc1245.ps /^\/sangle 1 0 dmatrix defaultmatrix dtransform exch / | ||
| 178 | /savematrix ps-src/rfc1245.ps /^\/savematrix {$/ | ||
| 179 | /setmanualfeed ps-src/rfc1245.ps /^\/setmanualfeed {$/ | ||
| 180 | /setpapername ps-src/rfc1245.ps /^\/setpapername { $/ | ||
| 181 | /setpattern ps-src/rfc1245.ps /^\/setpattern {$/ | ||
| 182 | /two ps-src/rfc1245.ps /^\/two \/three \/four \/five \/six \/seven \/eight \/nine \// | ||
| 183 | /udieresis ps-src/rfc1245.ps /^\/udieresis \/dagger \/.notdef \/cent \/sterling \/secti/ | ||
| 184 | /wbytes ps-src/rfc1245.ps /^\/wbytes { $/ | ||
| 185 | /wh ps-src/rfc1245.ps /^\/wh { $/ | ||
| 186 | /yen ps-src/rfc1245.ps /^\/yen \/.notdef \/.notdef \/.notdef \/.notdef \/.notdef / | ||
| 187 | 2const forth-src/test-forth.fth /^3 4 2constant 2const$/ | 34 | 2const forth-src/test-forth.fth /^3 4 2constant 2const$/ |
| 188 | 2val forth-src/test-forth.fth /^2const 2value 2val$/ | 35 | 2val forth-src/test-forth.fth /^2const 2value 2val$/ |
| 189 | 2var forth-src/test-forth.fth /^2variable 2var$/ | 36 | 2var forth-src/test-forth.fth /^2variable 2var$/ |
| 190 | : tex-src/texinfo.tex /^\\def\\:{\\spacefactor=1000 }$/ | ||
| 191 | :a-forth-dictionary-entry forth-src/test-forth.fth /^create :a-forth-dictionary-entry$/ | ||
| 192 | < tex-src/texinfo.tex /^\\def<{{\\tt \\less}}$/ | ||
| 193 | < tex-src/texinfo.tex /^\\let<=\\normalless$/ | ||
| 194 | << ruby-src/test.rb /^ def <<(y)$/ | ||
| 195 | <= ruby-src/test.rb /^ def <=(y)$/ | ||
| 196 | <=> ruby-src/test.rb /^ def <=>(y)$/ | ||
| 197 | = tex-src/texinfo.tex /^\\global\\def={{\\tt \\char 61}}}$/ | ||
| 198 | =/f ada-src/etags-test-for.ada /^ function "=" (L, R : System.Address) return Boo/ | ||
| 199 | == ruby-src/test.rb /^ def ==(y)$/ | ||
| 200 | === ruby-src/test.rb /^ def ===(y)$/ | ||
| 201 | =starts-with-equals! scm-src/test.scm /^(define =starts-with-equals! #t)$/ | ||
| 202 | > tex-src/texinfo.tex /^\\def>{{\\tt \\gtr}}$/ | ||
| 203 | > tex-src/texinfo.tex /^\\let>=\\normalgreater$/ | ||
| 204 | >field1 forth-src/test-forth.fth /^ 9 field >field1$/ | ||
| 205 | >field2 forth-src/test-forth.fth /^ 5 field >field2$/ | ||
| 206 | @ tex-src/texinfo.tex /^\\def\\@{@}%$/ | ||
| 207 | @ tex-src/texinfo.tex /^\\def\\@{{\\tt \\char '100}}$/ | ||
| 208 | @sf tex-src/texinfo.tex /^\\ifhmode\\edef\\@sf{\\spacefactor\\the\\spacefactor}\\\/\\/ | ||
| 209 | @sf tex-src/texinfo.tex /^\\let\\@sf\\empty$/ | ||
| 210 | A c.c 162 | ||
| 211 | A cp-src/c.C /^void A::A() {}$/ | ||
| 212 | A cp-src/c.C 117 | ||
| 213 | A cp-src/c.C 39 | ||
| 214 | A cp-src/c.C 56 | ||
| 215 | A cp-src/c.C 57 | ||
| 216 | A cp-src/c.C 73 | ||
| 217 | A cp-src/fail.C 23 | ||
| 218 | A cp-src/fail.C 7 | ||
| 219 | A ruby-src/test1.ru /^class A$/ | ||
| 220 | A ruby-src/test1.ru /^module A$/ | ||
| 221 | ABC ruby-src/test1.ru 11 | ||
| 222 | ADASRC make-src/Makefile /^ADASRC=etags-test-for.ada 2ataspri.adb 2ataspri.ad/ | ||
| 223 | ADDRESS c-src/emacs/src/gmalloc.c /^#define ADDRESS(B) ((void *) (((B) - 1) * BLOCKSIZ/ | ||
| 224 | ALIGNOF_STRUCT_LISP_VECTOR c-src/emacs/src/lisp.h 1378 | ||
| 225 | ALLOCATED_BEFORE_DUMPING c-src/emacs/src/gmalloc.c /^#define ALLOCATED_BEFORE_DUMPING(P) \\$/ | ||
| 226 | ALLOCATE_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define ALLOCATE_PSEUDOVECTOR(type, field, tag) / | ||
| 227 | ALLOCATE_ZEROED_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define ALLOCATE_ZEROED_PSEUDOVECTOR(type, field, / | ||
| 228 | AND y-src/cccp.c 11 | ||
| 229 | ANSIC c-src/h.h 84 | ||
| 230 | ANSIC c-src/h.h 85 | ||
| 231 | AREF c-src/emacs/src/lisp.h /^AREF (Lisp_Object array, ptrdiff_t idx)$/ | ||
| 232 | ARGS make-src/Makefile /^ARGS=- < srclist$/ | ||
| 233 | ARITH_EQUAL c-src/emacs/src/lisp.h 3498 | ||
| 234 | ARITH_GRTR c-src/emacs/src/lisp.h 3501 | ||
| 235 | ARITH_GRTR_OR_EQUAL c-src/emacs/src/lisp.h 3503 | ||
| 236 | ARITH_LESS c-src/emacs/src/lisp.h 3500 | ||
| 237 | ARITH_LESS_OR_EQUAL c-src/emacs/src/lisp.h 3502 | ||
| 238 | ARITH_NOTEQUAL c-src/emacs/src/lisp.h 3499 | ||
| 239 | ARRAYELTS c-src/emacs/src/lisp.h /^#define ARRAYELTS(arr) (sizeof (arr) \/ sizeof (arr/ | ||
| 240 | ARRAYP c-src/emacs/src/lisp.h /^ARRAYP (Lisp_Object x)$/ | ||
| 241 | ARRAY_MARK_FLAG c-src/emacs/src/lisp.h 768 | ||
| 242 | ASCII_CHAR_P c-src/emacs/src/lisp.h /^#define ASCII_CHAR_P(c) UNSIGNED_CMP (c, <, 0x80)$/ | ||
| 243 | ASET c-src/emacs/src/lisp.h /^ASET (Lisp_Object array, ptrdiff_t idx, Lisp_Objec/ | ||
| 244 | ASIZE c-src/emacs/src/lisp.h /^ASIZE (Lisp_Object array)$/ | ||
| 245 | ASRC make-src/Makefile /^ASRC=empty.zz empty.zz.gz$/ | ||
| 246 | AST_Array::AST_Array cp-src/c.C /^AST_Array::AST_Array(UTL_ScopedName *n, unsigned l/ | ||
| 247 | AST_ConcreteType::AST_ConcreteType cp-src/c.C /^AST_ConcreteType::AST_ConcreteType(AST_Decl::NodeT/ | ||
| 248 | AST_Root cp-src/c.C 92 | ||
| 249 | AT cp-src/c.C 52 | ||
| 250 | AU cp-src/c.C 53 | ||
| 251 | AUTOLOADP c-src/emacs/src/lisp.h /^AUTOLOADP (Lisp_Object x)$/ | ||
| 252 | AUTO_CONS c-src/emacs/src/lisp.h /^#define AUTO_CONS(name, a, b) Lisp_Object name = A/ | ||
| 253 | AUTO_CONS_EXPR c-src/emacs/src/lisp.h /^#define AUTO_CONS_EXPR(a, b) \\$/ | ||
| 254 | AUTO_LIST1 c-src/emacs/src/lisp.h /^#define AUTO_LIST1(name, a) \\$/ | ||
| 255 | AUTO_LIST2 c-src/emacs/src/lisp.h /^#define AUTO_LIST2(name, a, b) \\$/ | ||
| 256 | AUTO_LIST3 c-src/emacs/src/lisp.h /^#define AUTO_LIST3(name, a, b, c) \\$/ | ||
| 257 | AUTO_LIST4 c-src/emacs/src/lisp.h /^#define AUTO_LIST4(name, a, b, c, d) \\$/ | ||
| 258 | AUTO_STRING c-src/emacs/src/lisp.h /^#define AUTO_STRING(name, str) \\$/ | ||
| 259 | AVAIL_ALLOCA c-src/emacs/src/lisp.h /^#define AVAIL_ALLOCA(size) (sa_avail -= (size), al/ | ||
| 260 | Abort_Handler_Pointer/t ada-src/2ataspri.ads /^ type Abort_Handler_Pointer is access procedure / | ||
| 261 | Abort_Task/p ada-src/2ataspri.adb /^ procedure Abort_Task (T : TCB_Ptr) is$/ | ||
| 262 | Abort_Task/p ada-src/2ataspri.ads /^ procedure Abort_Task (T : TCB_Ptr);$/ | ||
| 263 | Abort_Wrapper/p ada-src/2ataspri.adb /^ procedure Abort_Wrapper$/ | ||
| 264 | Ada_funcs c-src/etags.c /^Ada_funcs (FILE *inf)$/ | ||
| 265 | Ada_getit c-src/etags.c /^Ada_getit (FILE *inf, const char *name_qualifier)$/ | ||
| 266 | Ada_help c-src/etags.c 475 | ||
| 267 | Ada_suffixes c-src/etags.c 473 | ||
| 268 | AddNullToNmStr pas-src/common.pas /^function AddNullToNmStr; (*($/ | ||
| 269 | Address_To_Call_State/f ada-src/2ataspri.adb /^ function Address_To_Call_State is new$/ | ||
| 270 | Address_To_TCB_Ptr/f ada-src/2ataspri.ads /^ function Address_To_TCB_Ptr is new$/ | ||
| 271 | Advanced usage tex-src/gzip.texi /^@node Advanced usage, Environment, Invoking gzip, / | ||
| 272 | Aligned_Cons c-src/emacs/src/lisp.h 4670 | ||
| 273 | Aligned_String c-src/emacs/src/lisp.h 4676 | ||
| 274 | AppendTextString pas-src/common.pas /^function AppendTextString;(*($/ | ||
| 275 | Arith_Comparison c-src/emacs/src/lisp.h 3497 | ||
| 276 | Asm_help c-src/etags.c 504 | ||
| 277 | Asm_labels c-src/etags.c /^Asm_labels (FILE *inf)$/ | ||
| 278 | Asm_suffixes c-src/etags.c 493 | ||
| 279 | B cp-src/c.C /^void B::B() {}$/ | ||
| 280 | B cp-src/c.C 122 | ||
| 281 | B cp-src/c.C 54 | ||
| 282 | B cp-src/c.C 56 | ||
| 283 | B cp-src/c.C 74 | ||
| 284 | B cp-src/fail.C 24 | ||
| 285 | B cp-src/fail.C 8 | ||
| 286 | B ruby-src/test1.ru /^ class B$/ | ||
| 287 | BE_Node cp-src/c.C /^void BE_Node::BE_Node() {}$/ | ||
| 288 | BE_Node cp-src/c.C 77 | ||
| 289 | BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 125 | ||
| 290 | BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 129 | ||
| 291 | BITS_PER_CHAR c-src/emacs/src/lisp.h 136 | ||
| 292 | BITS_PER_EMACS_INT c-src/emacs/src/lisp.h 139 | ||
| 293 | BITS_PER_LONG c-src/emacs/src/lisp.h 138 | ||
| 294 | BITS_PER_SHORT c-src/emacs/src/lisp.h 137 | ||
| 295 | BITS_WORD_MAX c-src/emacs/src/lisp.h 124 | ||
| 296 | BITS_WORD_MAX c-src/emacs/src/lisp.h 128 | ||
| 297 | BLACK cp-src/screen.hpp 12 | ||
| 298 | BLOCK c-src/emacs/src/gmalloc.c /^#define BLOCK(A) (((char *) (A) - _heapbase) \/ BLO/ | ||
| 299 | BLOCKIFY c-src/emacs/src/gmalloc.c /^#define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) \// | ||
| 300 | BLOCKLOG c-src/emacs/src/gmalloc.c 125 | ||
| 301 | BLOCKSIZE c-src/emacs/src/gmalloc.c 126 | ||
| 302 | BLUE cp-src/screen.hpp 13 | ||
| 303 | BOOL_VECTOR_BITS_PER_CHAR c-src/emacs/src/lisp.h 114 | ||
| 304 | BOOL_VECTOR_BITS_PER_CHAR c-src/emacs/src/lisp.h 115 | ||
| 305 | BOOL_VECTOR_P c-src/emacs/src/lisp.h /^BOOL_VECTOR_P (Lisp_Object a)$/ | ||
| 306 | BROWN cp-src/screen.hpp 18 | ||
| 307 | BUFFERP c-src/emacs/src/lisp.h /^BUFFERP (Lisp_Object a)$/ | ||
| 308 | BUFFERSIZE objc-src/Subprocess.h 43 | ||
| 309 | BUFFER_OBJFWDP c-src/emacs/src/lisp.h /^BUFFER_OBJFWDP (union Lisp_Fwd *a)$/ | ||
| 310 | BYTE_MARK_STACK c-src/emacs/src/lisp.h 3181 | ||
| 311 | Bar lua-src/test.lua /^function Square.something:Bar ()$/ | ||
| 312 | Bar perl-src/kai-test.pl /^package Bar;$/ | ||
| 313 | Barrier_Function_Pointer/t ada-src/etags-test-for.ada /^ type Barrier_Function_Pointer is access$/ | ||
| 314 | Bidule/b ada-src/etags-test-for.ada /^ protected body Bidule is$/ | ||
| 315 | Bidule/b ada-src/waroquiers.ada /^ protected body Bidule is$/ | ||
| 316 | Bidule/t ada-src/etags-test-for.ada /^ protected Bidule is$/ | ||
| 317 | Bidule/t ada-src/waroquiers.ada /^ protected Bidule is$/ | ||
| 318 | Body_Required/f ada-src/etags-test-for.ada /^ function Body_Required$/ | ||
| 319 | Boo cp-src/c.C /^ Boo(int _i, int _a, int _b) : i(_i), a(_a), b(/ | ||
| 320 | Boo cp-src/c.C 129 | ||
| 321 | Boo::Boo cp-src/c.C /^Boo::Boo(Boo) :$/ | ||
| 322 | ButtonBar pyt-src/server.py /^def ButtonBar(frame, legend, ref, alternatives, co/ | ||
| 323 | C cp-src/fail.C /^ C(int i) {x = i;}$/ | ||
| 324 | C cp-src/fail.C 25 | ||
| 325 | C cp-src/fail.C 9 | ||
| 326 | C ruby-src/test1.ru /^class A::C; end$/ | ||
| 327 | CALLMANY c-src/emacs/src/lisp.h /^#define CALLMANY(f, array) (f) (ARRAYELTS (array),/ | ||
| 328 | CALLN c-src/emacs/src/lisp.h /^#define CALLN(f, ...) CALLMANY (f, ((Lisp_Object [/ | ||
| 329 | CAR c-src/emacs/src/lisp.h /^CAR (Lisp_Object c)$/ | ||
| 330 | CAR_SAFE c-src/emacs/src/lisp.h /^CAR_SAFE (Lisp_Object c)$/ | ||
| 331 | CATCHER c-src/emacs/src/lisp.h 3021 | ||
| 332 | CDR c-src/emacs/src/lisp.h /^CDR (Lisp_Object c)$/ | ||
| 333 | CDR_SAFE c-src/emacs/src/lisp.h /^CDR_SAFE (Lisp_Object c)$/ | ||
| 334 | CFLAGS make-src/Makefile /^CFLAGS=${WARNINGS} -ansi -g3 # -pg -O$/ | ||
| 335 | CHAPFopen tex-src/texinfo.tex /^\\def\\CHAPFopen{$/ | ||
| 336 | CHAPFplain tex-src/texinfo.tex /^\\def\\CHAPFplain{$/ | ||
| 337 | CHAPPAGodd tex-src/texinfo.tex /^\\def\\CHAPPAGodd{$/ | ||
| 338 | CHAPPAGoff tex-src/texinfo.tex /^\\def\\CHAPPAGoff{$/ | ||
| 339 | CHAPPAGon tex-src/texinfo.tex /^\\def\\CHAPPAGon{$/ | ||
| 340 | CHAR c-src/etags.c /^#define CHAR(x) ((unsigned int)(x) & (CHARS - 1))/ | ||
| 341 | CHAR y-src/cccp.c 7 | ||
| 342 | CHARACTERBITS c-src/emacs/src/lisp.h 2457 | ||
| 343 | CHARS c-src/etags.c 157 | ||
| 344 | CHARTAB_SIZE_BITS c-src/emacs/src/lisp.h 1565 | ||
| 345 | CHARTAB_SIZE_BITS_0 c-src/emacs/src/lisp.h 1567 | ||
| 346 | CHARTAB_SIZE_BITS_1 c-src/emacs/src/lisp.h 1568 | ||
| 347 | CHARTAB_SIZE_BITS_2 c-src/emacs/src/lisp.h 1569 | ||
| 348 | CHARTAB_SIZE_BITS_3 c-src/emacs/src/lisp.h 1570 | ||
| 349 | CHAR_ALT c-src/emacs/src/lisp.h 2445 | ||
| 350 | CHAR_BIT c-src/emacs/src/lisp.h 2957 | ||
| 351 | CHAR_BIT c-src/emacs/src/lisp.h 2959 | ||
| 352 | CHAR_BIT c-src/emacs/src/lisp.h 2964 | ||
| 353 | CHAR_BIT c-src/emacs/src/lisp.h 2969 | ||
| 354 | CHAR_BIT c-src/emacs/src/lisp.h 2974 | ||
| 355 | CHAR_BIT c-src/emacs/src/lisp.h 2978 | ||
| 356 | CHAR_BIT c-src/emacs/src/lisp.h 2983 | ||
| 357 | CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 593 | ||
| 358 | CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 597 | ||
| 359 | CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 605 | ||
| 360 | CHAR_CTL c-src/emacs/src/lisp.h 2449 | ||
| 361 | CHAR_HYPER c-src/emacs/src/lisp.h 2447 | ||
| 362 | CHAR_META c-src/emacs/src/lisp.h 2450 | ||
| 363 | CHAR_MODIFIER_MASK c-src/emacs/src/lisp.h 2452 | ||
| 364 | CHAR_SHIFT c-src/emacs/src/lisp.h 2448 | ||
| 365 | CHAR_SUPER c-src/emacs/src/lisp.h 2446 | ||
| 366 | CHAR_TABLE_EXTRA_SLOTS c-src/emacs/src/lisp.h /^CHAR_TABLE_EXTRA_SLOTS (struct Lisp_Char_Table *ct/ | ||
| 367 | CHAR_TABLE_P c-src/emacs/src/lisp.h /^CHAR_TABLE_P (Lisp_Object a)$/ | ||
| 368 | CHAR_TABLE_REF c-src/emacs/src/lisp.h /^CHAR_TABLE_REF (Lisp_Object ct, int idx)$/ | ||
| 369 | CHAR_TABLE_REF_ASCII c-src/emacs/src/lisp.h /^CHAR_TABLE_REF_ASCII (Lisp_Object ct, ptrdiff_t id/ | ||
| 370 | CHAR_TABLE_SET c-src/emacs/src/lisp.h /^CHAR_TABLE_SET (Lisp_Object ct, int idx, Lisp_Obje/ | ||
| 371 | CHAR_TABLE_STANDARD_SLOTS c-src/emacs/src/lisp.h 1697 | ||
| 372 | CHAR_TYPE_SIZE y-src/cccp.y 87 | ||
| 373 | CHECKFLAGS make-src/Makefile /^CHECKFLAGS=-DDEBUG -Wno-unused-function$/ | ||
| 374 | CHECKOBJS make-src/Makefile /^CHECKOBJS=chkmalloc.o chkxm.o$/ | ||
| 375 | CHECK_ARRAY c-src/emacs/src/lisp.h /^CHECK_ARRAY (Lisp_Object x, Lisp_Object predicate)/ | ||
| 376 | CHECK_BOOL_VECTOR c-src/emacs/src/lisp.h /^CHECK_BOOL_VECTOR (Lisp_Object x)$/ | ||
| 377 | CHECK_BUFFER c-src/emacs/src/lisp.h /^CHECK_BUFFER (Lisp_Object x)$/ | ||
| 378 | CHECK_CONS c-src/emacs/src/lisp.h /^CHECK_CONS (Lisp_Object x)$/ | ||
| 379 | CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 571 | ||
| 380 | CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 572 | ||
| 381 | CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 579 | ||
| 382 | CHECK_LIST c-src/emacs/src/lisp.h /^CHECK_LIST (Lisp_Object x)$/ | ||
| 383 | CHECK_LIST_CONS c-src/emacs/src/lisp.h /^# define CHECK_LIST_CONS(x, y) lisp_h_CHECK_LIST_C/ | ||
| 384 | CHECK_NATNUM c-src/emacs/src/lisp.h /^CHECK_NATNUM (Lisp_Object x)$/ | ||
| 385 | CHECK_NUMBER c-src/emacs/src/lisp.h /^# define CHECK_NUMBER(x) lisp_h_CHECK_NUMBER (x)$/ | ||
| 386 | CHECK_NUMBER_CAR c-src/emacs/src/lisp.h /^CHECK_NUMBER_CAR (Lisp_Object x)$/ | ||
| 387 | CHECK_NUMBER_CDR c-src/emacs/src/lisp.h /^CHECK_NUMBER_CDR (Lisp_Object x)$/ | ||
| 388 | CHECK_NUMBER_COERCE_MARKER c-src/emacs/src/lisp.h /^#define CHECK_NUMBER_COERCE_MARKER(x) \\$/ | ||
| 389 | CHECK_NUMBER_OR_FLOAT c-src/emacs/src/lisp.h /^CHECK_NUMBER_OR_FLOAT (Lisp_Object x)$/ | ||
| 390 | CHECK_NUMBER_OR_FLOAT_COERCE_MARKER c-src/emacs/src/lisp.h /^#define CHECK_NUMBER_OR_FLOAT_COERCE_MARKER(x) / | ||
| 391 | CHECK_PROCESS c-src/emacs/src/lisp.h /^CHECK_PROCESS (Lisp_Object x)$/ | ||
| 392 | CHECK_RANGED_INTEGER c-src/emacs/src/lisp.h /^#define CHECK_RANGED_INTEGER(x, lo, hi) \\$/ | ||
| 393 | CHECK_STRING_CAR c-src/emacs/src/lisp.h /^CHECK_STRING_CAR (Lisp_Object x)$/ | ||
| 394 | CHECK_SYMBOL c-src/emacs/src/lisp.h /^# define CHECK_SYMBOL(x) lisp_h_CHECK_SYMBOL (x)$/ | ||
| 395 | CHECK_TYPE c-src/emacs/src/lisp.h /^# define CHECK_TYPE(ok, predicate, x) lisp_h_CHECK/ | ||
| 396 | CHECK_TYPE_RANGED_INTEGER c-src/emacs/src/lisp.h /^#define CHECK_TYPE_RANGED_INTEGER(type, x) \\$/ | ||
| 397 | CHECK_VECTOR c-src/emacs/src/lisp.h /^CHECK_VECTOR (Lisp_Object x)$/ | ||
| 398 | CHECK_VECTOR_OR_STRING c-src/emacs/src/lisp.h /^CHECK_VECTOR_OR_STRING (Lisp_Object x)$/ | ||
| 399 | CHECK_WINDOW c-src/emacs/src/lisp.h /^CHECK_WINDOW (Lisp_Object x)$/ | ||
| 400 | CK_ABS_C y-src/parse.y /^#define CK_ABS_C(x) if((x)<MIN_COL || (x)>MAX_COL)/ | ||
| 401 | CK_ABS_R y-src/parse.y /^#define CK_ABS_R(x) if((x)<MIN_ROW || (x)>MAX_ROW)/ | ||
| 402 | CK_REL_C y-src/parse.y /^#define CK_REL_C(x) if( ((x)>0 && MAX_COL-(x)<cu/ | ||
| 403 | CK_REL_R y-src/parse.y /^#define CK_REL_R(x) if( ((x)>0 && MAX_ROW-(x)<cu/ | ||
| 404 | CMultiChannelCSC19_3D cp-src/c.C 2 | ||
| 405 | CNL c-src/etags.c /^#define CNL() \\$/ | ||
| 406 | CNL_SAVE_DEFINEDEF c-src/etags.c /^#define CNL_SAVE_DEFINEDEF() \\$/ | ||
| 407 | COBOLFLAGS make-src/Makefile /^COBOLFLAGS=--language=none --regex='\/.......[a-zA-/ | ||
| 408 | COLORS cp-src/screen.hpp 11 | ||
| 409 | COMPILEDP c-src/emacs/src/lisp.h /^COMPILEDP (Lisp_Object a)$/ | ||
| 410 | COMPILED_ARGLIST c-src/emacs/src/lisp.h 2431 | ||
| 411 | COMPILED_BYTECODE c-src/emacs/src/lisp.h 2432 | ||
| 412 | COMPILED_CONSTANTS c-src/emacs/src/lisp.h 2433 | ||
| 413 | COMPILED_DOC_STRING c-src/emacs/src/lisp.h 2435 | ||
| 414 | COMPILED_INTERACTIVE c-src/emacs/src/lisp.h 2436 | ||
| 415 | COMPILED_STACK_DEPTH c-src/emacs/src/lisp.h 2434 | ||
| 416 | CONDITION_CASE c-src/emacs/src/lisp.h 3021 | ||
| 417 | CONSP c-src/emacs/src/lisp.h /^# define CONSP(x) lisp_h_CONSP (x)$/ | ||
| 418 | CONSTYPE_HEAP c-src/emacs/src/lisp.h 3739 | ||
| 419 | CONSTYPE_PURE c-src/emacs/src/lisp.h 3739 | ||
| 420 | CONS_TO_INTEGER c-src/emacs/src/lisp.h /^#define CONS_TO_INTEGER(cons, type, var) \\$/ | ||
| 421 | CONVERT_CHARSTRING_TO_VALUE pas-src/common.pas /^procedure CONVERT_CHARSTRING_TO_VALUE;(*($/ | ||
| 422 | CPPFLAGS make-src/Makefile /^CPPFLAGS=${CHECKFLAGS} -DSTDC_HEADERS -DHAVE_GETCW/ | ||
| 423 | CPSRC make-src/Makefile /^CPSRC=c.C abstract.C abstract.H cfront.H burton.cp/ | ||
| 424 | CSRC make-src/Makefile /^CSRC=abbrev.c ..\/etags\/h.h .\/\/c.c torture.c getopt/ | ||
| 425 | CTAGS c-src/etags.c 146 | ||
| 426 | CTAGS c-src/etags.c 147 | ||
| 427 | CTAGS c-src/etags.c 149 | ||
| 428 | CTAGS make-src/Makefile /^CTAGS: ctags ${infiles}$/ | ||
| 429 | CTAGS% make-src/Makefile /^CTAGS%: ctags% ${infiles}$/ | ||
| 430 | CTAGS13 CTAGS14 CTAGS15 make-src/Makefile /^CTAGS13 CTAGS14 CTAGS15: ctags% ${infiles}$/ | ||
| 431 | CYAN cp-src/screen.hpp 15 | ||
| 432 | C_AUTO c-src/etags.c 2198 | ||
| 433 | C_EXT c-src/etags.c 2193 | ||
| 434 | C_JAVA c-src/etags.c 2197 | ||
| 435 | C_PLAIN c-src/etags.c 2194 | ||
| 436 | C_PLPL c-src/etags.c 2195 | ||
| 437 | C_STAR c-src/etags.c 2196 | ||
| 438 | C_entries c-src/etags.c /^C_entries (int c_ext, FILE *inf)$/ | ||
| 439 | C_stab_entry c-src/etags.c 2271 | ||
| 440 | C_symtype c-src/etags.c /^C_symtype (char *str, int len, int c_ext)$/ | ||
| 441 | ChangeFileType pas-src/common.pas /^function ChangeFileType; (*(FileName : NameString;/ | ||
| 442 | Circle.getPos lua-src/test.lua /^function Circle.getPos ()$/ | ||
| 443 | Cjava_entries c-src/etags.c /^Cjava_entries (FILE *inf)$/ | ||
| 444 | Cjava_help c-src/etags.c 551 | ||
| 445 | Cjava_suffixes c-src/etags.c 549 | ||
| 446 | ClassExample ruby-src/test.rb /^ class ClassExample$/ | ||
| 447 | Clear/p ada-src/2ataspri.adb /^ procedure Clear (Cell : in out TAS_Cell) is$/ | ||
| 448 | Clear/p ada-src/2ataspri.ads /^ procedure Clear (Cell : in out TAS_Cell)/ | ||
| 449 | Cobol_help c-src/etags.c 558 | ||
| 450 | Cobol_paragraphs c-src/etags.c /^Cobol_paragraphs (FILE *inf)$/ | ||
| 451 | Cobol_suffixes c-src/etags.c 556 | ||
| 452 | CommentAD php-src/lce_functions.php /^ function CommentAD($/ | ||
| 453 | CommentAD php-src/lce_functions.php 70 | ||
| 454 | ConcatT pas-src/common.pas /^function ConcatT;(*($/ | ||
| 455 | Concept Index tex-src/gzip.texi /^@node Concept Index, , Problems, Top$/ | ||
| 456 | Cond_Signal/p ada-src/2ataspri.adb /^ procedure Cond_Signal (Cond : in out Condition_/ | ||
| 457 | Cond_Signal/p ada-src/2ataspri.ads /^ procedure Cond_Signal (Cond : in out Condition_/ | ||
| 458 | Cond_Timed_Wait/p ada-src/2ataspri.adb /^ procedure Cond_Timed_Wait$/ | ||
| 459 | Cond_Timed_Wait/p ada-src/2ataspri.ads /^ procedure Cond_Timed_Wait$/ | ||
| 460 | Cond_Wait/p ada-src/2ataspri.adb /^ procedure Cond_Wait (Cond : in out Condition_Va/ | ||
| 461 | Cond_Wait/p ada-src/2ataspri.ads /^ procedure Cond_Wait (Cond : in out Condition_Va/ | ||
| 462 | Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is private;$/ | ||
| 463 | Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is$/ | ||
| 464 | Configure pyt-src/server.py /^class Configure(Frame, ControlEdit):$/ | ||
| 465 | ConfirmQuit pyt-src/server.py /^def ConfirmQuit(frame, context):$/ | ||
| 466 | Constant ruby-src/test1.ru 42 | ||
| 467 | ControlEdit pyt-src/server.py /^class ControlEdit(Frame):$/ | ||
| 468 | Controls pyt-src/server.py /^class Controls:$/ | ||
| 469 | CopyTextString pas-src/common.pas /^function CopyTextString;(*($/ | ||
| 470 | Copying tex-src/gzip.texi /^@node Copying, Overview, , Top$/ | ||
| 471 | Cplusplus_entries c-src/etags.c /^Cplusplus_entries (FILE *inf)$/ | ||
| 472 | Cplusplus_help c-src/etags.c 540 | ||
| 473 | Cplusplus_suffixes c-src/etags.c 535 | ||
| 474 | Create_LL_Task/p ada-src/2ataspri.adb /^ procedure Create_LL_Task$/ | ||
| 475 | Create_LL_Task/p ada-src/2ataspri.ads /^ procedure Create_LL_Task$/ | ||
| 476 | Cstar_entries c-src/etags.c /^Cstar_entries (FILE *inf)$/ | ||
| 477 | Cstar_suffixes c-src/etags.c 562 | ||
| 478 | Cube.data.getFoo lua-src/test.lua /^function Cube.data.getFoo ()$/ | ||
| 479 | D cp-src/fail.C /^ D() : ::A::T2::T(97), x(1066) {}$/ | ||
| 480 | D cp-src/fail.C 41 | ||
| 481 | D ruby-src/test1.ru /^class ::D; end$/ | ||
| 482 | DAEMON_RUNNING c-src/emacs/src/lisp.h 4258 | ||
| 483 | DAEMON_RUNNING c-src/emacs/src/lisp.h 4262 | ||
| 484 | DARKGRAY cp-src/screen.hpp 20 | ||
| 485 | DEAFUN c.c /^DEAFUN ("expand-file-name", Fexpand_file_name, Sex/ | ||
| 486 | DEBUG c-src/etags.c 84 | ||
| 487 | DEBUG c-src/etags.c 85 | ||
| 488 | DEBUG c-src/etags.c 87 | ||
| 489 | DEBUG objc-src/PackInsp.m 37 | ||
| 490 | DECLARE_GDB_SYM c-src/emacs/src/lisp.h /^#define DECLARE_GDB_SYM(type, id) type const id EX/ | ||
| 491 | DEFAULT_HASH_SIZE c-src/emacs/src/lisp.h 1940 | ||
| 492 | DEFAULT_REHASH_SIZE c-src/emacs/src/lisp.h 1950 | ||
| 493 | DEFAULT_REHASH_THRESHOLD c-src/emacs/src/lisp.h 1946 | ||
| 494 | DEFINE_GDB_SYMBOL_BEGIN c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_BEGIN(type, id) DECLARE/ | ||
| 495 | DEFINE_GDB_SYMBOL_BEGIN c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_BEGIN(type, id) extern / | ||
| 496 | DEFINE_GDB_SYMBOL_END c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_END(id) = id;$/ | ||
| 497 | DEFINE_GDB_SYMBOL_END c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_END(val) ;$/ | ||
| 498 | DEFINE_LISP_SYMBOL c-src/emacs/src/lisp.h /^#define DEFINE_LISP_SYMBOL(name) \\$/ | ||
| 499 | DEFINE_NON_NIL_Q_SYMBOL_MACROS c-src/emacs/src/lisp.h 755 | ||
| 500 | DEFSYM c-src/emacs/src/lisp.h /^#define DEFSYM(sym, name) \/* empty *\/$/ | ||
| 501 | DEFSYM c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (SYMBOL_CONSTANT_P, int, (Lisp_Ob/ | ||
| 502 | DEFUN c-src/emacs/src/lisp.h /^#define DEFUN(lname, fnname, sname, minargs, maxar/ | ||
| 503 | DEFUN_ARGS_0 c-src/emacs/src/lisp.h 714 | ||
| 504 | DEFUN_ARGS_1 c-src/emacs/src/lisp.h 715 | ||
| 505 | DEFUN_ARGS_2 c-src/emacs/src/lisp.h 716 | ||
| 506 | DEFUN_ARGS_3 c-src/emacs/src/lisp.h 717 | ||
| 507 | DEFUN_ARGS_4 c-src/emacs/src/lisp.h 718 | ||
| 508 | DEFUN_ARGS_5 c-src/emacs/src/lisp.h 719 | ||
| 509 | DEFUN_ARGS_6 c-src/emacs/src/lisp.h 721 | ||
| 510 | DEFUN_ARGS_7 c-src/emacs/src/lisp.h 723 | ||
| 511 | DEFUN_ARGS_8 c-src/emacs/src/lisp.h 725 | ||
| 512 | DEFUN_ARGS_MANY c-src/emacs/src/lisp.h 712 | ||
| 513 | DEFUN_ARGS_UNEVALLED c-src/emacs/src/lisp.h 713 | ||
| 514 | DEFUN_func2 c.c /^DEFUN_func2()$/ | ||
| 515 | DEFVAR_BOOL c-src/emacs/src/lisp.h /^#define DEFVAR_BOOL(lname, vname, doc) \\$/ | ||
| 516 | DEFVAR_BUFFER_DEFAULTS c-src/emacs/src/lisp.h /^#define DEFVAR_BUFFER_DEFAULTS(lname, vname, doc) / | ||
| 517 | DEFVAR_INT c-src/emacs/src/lisp.h /^#define DEFVAR_INT(lname, vname, doc) \\$/ | ||
| 518 | DEFVAR_KBOARD c-src/emacs/src/lisp.h /^#define DEFVAR_KBOARD(lname, vname, doc) \\$/ | ||
| 519 | DEFVAR_LISP c-src/emacs/src/lisp.h /^#define DEFVAR_LISP(lname, vname, doc) \\$/ | ||
| 520 | DEFVAR_LISP_NOPRO c-src/emacs/src/lisp.h /^#define DEFVAR_LISP_NOPRO(lname, vname, doc) \\$/ | ||
| 521 | DEVICE_LAST c-src/h.h 24 | ||
| 522 | DEVICE_SWP c-src/h.h 23 | ||
| 523 | DOS_NT c-src/etags.c 117 | ||
| 524 | DOS_NT c-src/etags.c 118 | ||
| 525 | DUMPED c-src/emacs/src/gmalloc.c 80 | ||
| 526 | Debug cp-src/functions.cpp /^void Debug ( int lineno, int level, char* func , c/ | ||
| 527 | Def_ ruby-src/test1.ru 12 | ||
| 528 | DisposeANameList pas-src/common.pas /^procedure DisposeANameList( $/ | ||
| 529 | DisposeNameList pas-src/common.pas /^procedure DisposeNameList;$/ | ||
| 530 | ELEM_I c-src/h.h 3 | ||
| 531 | ELSRC make-src/Makefile /^ELSRC=TAGTEST.EL emacs\/lisp\/progmodes\/etags.el$/ | ||
| 532 | EMACS_INT c-src/emacs/src/lisp.h 103 | ||
| 533 | EMACS_INT c-src/emacs/src/lisp.h 91 | ||
| 534 | EMACS_INT c-src/emacs/src/lisp.h 96 | ||
| 535 | EMACS_INT_MAX c-src/emacs/src/lisp.h 105 | ||
| 536 | EMACS_INT_MAX c-src/emacs/src/lisp.h 93 | ||
| 537 | EMACS_INT_MAX c-src/emacs/src/lisp.h 98 | ||
| 538 | EMACS_LISP_H c-src/emacs/src/lisp.h 22 | ||
| 539 | EMACS_NAME c-src/etags.c 786 | ||
| 540 | EMACS_UINT c-src/emacs/src/lisp.h 104 | ||
| 541 | EMACS_UINT c-src/emacs/src/lisp.h 92 | ||
| 542 | EMACS_UINT c-src/emacs/src/lisp.h 97 | ||
| 543 | ENTRY c-src/sysdep.h /^#define ENTRY(name) \\$/ | ||
| 544 | ENUM_BF c-src/emacs/src/lisp.h /^#define ENUM_BF(TYPE) enum TYPE$/ | ||
| 545 | ENUM_BF c-src/emacs/src/lisp.h /^#define ENUM_BF(TYPE) unsigned int$/ | ||
| 546 | ENVcheck tex-src/texinfo.tex /^\\def\\ENVcheck{%$/ | ||
| 547 | EQ c-src/emacs/src/lisp.h /^# define EQ(x, y) lisp_h_EQ (x, y)$/ | ||
| 548 | EQUAL y-src/cccp.c 12 | ||
| 549 | ERLSRC make-src/Makefile /^ERLSRC=gs_dialog.erl lines.erl lists.erl$/ | ||
| 550 | ERROR y-src/cccp.c 9 | ||
| 551 | ERROR y-src/parse.y 304 | ||
| 552 | ETAGS make-src/Makefile /^ETAGS: FRC etags ${infiles}$/ | ||
| 553 | ETAGS% make-src/Makefile /^ETAGS%: FRC etags% ${infiles}$/ | ||
| 554 | ETAGS12 make-src/Makefile /^ETAGS12: etags12 ${infiles}$/ | ||
| 555 | ETAGS13 ETAGS14 ETAGS15 make-src/Makefile /^ETAGS13 ETAGS14 ETAGS15: etags% ${infiles}$/ | ||
| 556 | EXFUN c-src/emacs/src/lisp.h /^#define EXFUN(fnname, maxargs) \\$/ | ||
| 557 | EXTAGS make-src/Makefile /^EXTAGS: extags ${infiles} Makefile$/ | ||
| 558 | EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 3497 | ||
| 559 | EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 4372 | ||
| 560 | Ealphaenumerate tex-src/texinfo.tex /^\\def\\Ealphaenumerate{\\Eenumerate}$/ | ||
| 561 | Ecapsenumerate tex-src/texinfo.tex /^\\def\\Ecapsenumerate{\\Eenumerate}$/ | ||
| 562 | Ecartouche tex-src/texinfo.tex /^\\def\\Ecartouche{%$/ | ||
| 563 | Edescription tex-src/texinfo.tex /^\\def\\Edescription{\\Etable}% Necessary kludge.$/ | ||
| 564 | Edisplay tex-src/texinfo.tex /^\\def\\Edisplay{\\endgroup\\afterenvbreak}%$/ | ||
| 565 | Eexample tex-src/texinfo.tex /^\\def\\Eexample{\\Elisp}$/ | ||
| 566 | Eflushleft tex-src/texinfo.tex /^\\def\\Eflushleft{\\endgroup\\afterenvbreak}%$/ | ||
| 567 | Eflushright tex-src/texinfo.tex /^\\def\\Eflushright{\\endgroup\\afterenvbreak}%$/ | ||
| 568 | Eformat tex-src/texinfo.tex /^\\def\\Eformat{\\endgroup\\afterenvbreak}$/ | ||
| 569 | Eftable tex-src/texinfo.tex /^\\def\\Eftable{\\endgraf\\endgroup\\afterenvbreak}%$/ | ||
| 570 | Egroup tex-src/texinfo.tex /^ \\def\\Egroup{\\egroup\\endgroup}%$/ | ||
| 571 | Eifclear tex-src/texinfo.tex /^\\def\\Eifclear{}$/ | ||
| 572 | Eifset tex-src/texinfo.tex /^\\def\\Eifset{}$/ | ||
| 573 | Eiftex tex-src/texinfo.tex /^\\def\\Eiftex{}$/ | ||
| 574 | Elisp tex-src/texinfo.tex /^\\def\\Elisp{\\endgroup\\afterenvbreak}%$/ | ||
| 575 | EmptyNmStr pas-src/common.pas /^function EmptyNmStr(* : NameString*);$/ | ||
| 576 | Environment tex-src/gzip.texi /^@node Environment, Tapes, Advanced usage, Top$/ | ||
| 577 | Equotation tex-src/texinfo.tex /^\\def\\Equotation{\\par\\endgroup\\afterenvbreak}%$/ | ||
| 578 | Erlang_functions c-src/etags.c /^Erlang_functions (FILE *inf)$/ | ||
| 579 | Erlang_help c-src/etags.c 567 | ||
| 580 | Erlang_suffixes c-src/etags.c 565 | ||
| 581 | ErrStrToNmStr pas-src/common.pas /^function ErrStrToNmStr;(*($/ | ||
| 582 | Error_Information/t ada-src/2ataspri.ads /^ type Error_Information is new Interfaces.C.POSI/ | ||
| 583 | Esmallexample tex-src/texinfo.tex /^\\def\\Esmallexample{\\Elisp}$/ | ||
| 584 | Esmallexample tex-src/texinfo.tex /^\\global\\def\\Esmallexample{\\Esmalllisp}$/ | ||
| 585 | Esmalllisp tex-src/texinfo.tex /^\\def\\Esmalllisp{\\endgroup\\afterenvbreak}%$/ | ||
| 586 | Etable tex-src/texinfo.tex /^\\def\\Etable{\\endgraf\\endgroup\\afterenvbreak}%$/ | ||
| 587 | Etable tex-src/texinfo.tex /^\\let\\Etable=\\relax}}$/ | ||
| 588 | Etex tex-src/texinfo.tex /^\\let\\Etex=\\endgroup}$/ | ||
| 589 | Etitlepage tex-src/texinfo.tex /^\\def\\Etitlepage{%$/ | ||
| 590 | Evtable tex-src/texinfo.tex /^\\def\\Evtable{\\endgraf\\endgroup\\afterenvbreak}%$/ | ||
| 591 | Exit_LL_Task/p ada-src/2ataspri.adb /^ procedure Exit_LL_Task is$/ | ||
| 592 | Exit_LL_Task/p ada-src/2ataspri.ads /^ procedure Exit_LL_Task;$/ | ||
| 593 | ExtractCommentInfo pas-src/common.pas /^procedure ExtractCommentInfo; (*($/ | ||
| 594 | FASTCFLAGS make-src/Makefile /^FASTCFLAGS=-O3 -finline-functions -ffast-math -fun/ | ||
| 595 | FASTCFLAGSWARN make-src/Makefile /^FASTCFLAGSWARN=${WARNINGS} -Werror ${FASTCFLAGS}$/ | ||
| 596 | FILTER make-src/Makefile /^FILTER=grep -v '\\.[Cchefy][lor]*,[1-9][0-9]*' || t/ | ||
| 597 | FINALIZERP c-src/emacs/src/lisp.h /^FINALIZERP (Lisp_Object x)$/ | ||
| 598 | FINAL_FREE_BLOCKS c-src/emacs/src/gmalloc.c 135 | ||
| 599 | FIXNUM_BITS c-src/emacs/src/lisp.h 252 | ||
| 600 | FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^#define FIXNUM_OVERFLOW_P(i) \\$/ | ||
| 601 | FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (EQ, bool, (Lisp_Object x, Lisp_O/ | ||
| 602 | FLOATP c-src/emacs/src/lisp.h /^# define FLOATP(x) lisp_h_FLOATP (x)$/ | ||
| 603 | FLOAT_TO_STRING_BUFSIZE c-src/emacs/src/lisp.h 3927 | ||
| 604 | FORTHSRC make-src/Makefile /^FORTHSRC=test-forth.fth$/ | ||
| 605 | FOR_EACH_ALIST_VALUE c-src/emacs/src/lisp.h /^#define FOR_EACH_ALIST_VALUE(head_var, list_var, v/ | ||
| 606 | FOR_EACH_TAIL c-src/emacs/src/lisp.h /^#define FOR_EACH_TAIL(hare, list, tortoise, n) \\$/ | ||
| 607 | FRAMEP c-src/emacs/src/lisp.h /^FRAMEP (Lisp_Object a)$/ | ||
| 608 | FRC make-src/Makefile /^FRC:;$/ | ||
| 609 | FREEFLOOD c-src/emacs/src/gmalloc.c 1863 | ||
| 610 | FSRC make-src/Makefile /^FSRC=entry.for entry.strange_suffix entry.strange$/ | ||
| 611 | FUN0 y-src/parse.y /^yylex FUN0()$/ | ||
| 612 | FUN1 y-src/parse.y /^str_to_col FUN1(char **,str)$/ | ||
| 613 | FUN1 y-src/parse.y /^yyerror FUN1(char *, s)$/ | ||
| 614 | FUN2 y-src/parse.y /^make_list FUN2(YYSTYPE, car, YYSTYPE, cdr)$/ | ||
| 615 | FUN2 y-src/parse.y /^parse_cell_or_range FUN2(char **,ptr, struct rng */ | ||
| 616 | FUNCTIONP c-src/emacs/src/lisp.h /^FUNCTIONP (Lisp_Object obj)$/ | ||
| 617 | FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 4766 | ||
| 618 | FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5061 | ||
| 619 | F_getit c-src/etags.c /^F_getit (FILE *inf)$/ | ||
| 620 | F_takeprec c-src/etags.c /^F_takeprec (void)$/ | ||
| 621 | Fabbrev_expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/ | ||
| 622 | Fabbrev_symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/ | ||
| 623 | Fabort_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("abort-recursive-edit", Fabort_recursive_ed/ | ||
| 624 | Fails_t c-src/h.h 5 | ||
| 625 | Fclear_abbrev_table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, / | ||
| 626 | Fclear_this_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/ | ||
| 627 | Fcommand_error_default_function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/ | ||
| 628 | Fcurrent_idle_time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/ | ||
| 629 | Fcurrent_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("current-input-mode", Fcurrent_input_mode, / | ||
| 630 | Fdefine_abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/ | ||
| 631 | Fdefine_abbrev_table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/ | ||
| 632 | Fdefine_global_abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/ | ||
| 633 | Fdefine_mode_abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, / | ||
| 634 | Fdiscard_input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/ | ||
| 635 | Fevent_convert_list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, / | ||
| 636 | Fevent_symbol_parse_modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/ | ||
| 637 | Fexit_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/ | ||
| 638 | Fexpand_abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/ | ||
| 639 | Finalize_Cond/p ada-src/2ataspri.adb /^ procedure Finalize_Cond (Cond : in out Conditio/ | ||
| 640 | Finalize_Cond/p ada-src/2ataspri.ads /^ procedure Finalize_Cond (Cond : in out Conditio/ | ||
| 641 | Finalize_Lock/p ada-src/2ataspri.adb /^ procedure Finalize_Lock (L : in out Lock) is$/ | ||
| 642 | Finalize_Lock/p ada-src/2ataspri.ads /^ procedure Finalize_Lock (L : in out Lock);$/ | ||
| 643 | Finalize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Finalize_TAS_Cell (Cell : in out TAS_/ | ||
| 644 | Finalize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Finalize_TAS_Cell (Cell : in out TA/ | ||
| 645 | Finput_pending_p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/ | ||
| 646 | Finsert_abbrev_table_description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/ | ||
| 647 | First100Chars pas-src/common.pas /^procedure First100Chars; (*($/ | ||
| 648 | Fmake_abbrev_table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/ | ||
| 649 | Foo perl-src/kai-test.pl /^package Foo;$/ | ||
| 650 | Foo::Bar perl-src/kai-test.pl /^package Foo::Bar;$/ | ||
| 651 | Fopen_dribble_file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/ | ||
| 652 | Forth_help c-src/etags.c 573 | ||
| 653 | Forth_suffixes c-src/etags.c 571 | ||
| 654 | Forth_words c-src/etags.c /^Forth_words (FILE *inf)$/ | ||
| 655 | Fortran_functions c-src/etags.c /^Fortran_functions (FILE *inf)$/ | ||
| 656 | Fortran_help c-src/etags.c 579 | ||
| 657 | Fortran_suffixes c-src/etags.c 577 | ||
| 658 | Fposn_at_point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/ | ||
| 659 | Fposn_at_x_y c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, / | ||
| 660 | Fread_key_sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/ | ||
| 661 | Fread_key_sequence_vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/ | ||
| 662 | Frecent_keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, / | ||
| 663 | Frecursion_depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/ | ||
| 664 | Frecursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/ | ||
| 665 | Freset_this_command_lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/ | ||
| 666 | Fset_input_interrupt_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/ | ||
| 667 | Fset_input_meta_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/ | ||
| 668 | Fset_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/ | ||
| 669 | Fset_output_flow_control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/ | ||
| 670 | Fset_quit_char c-src/emacs/src/keyboard.c /^DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_/ | ||
| 671 | Fsuspend_emacs c-src/emacs/src/keyboard.c /^DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_e/ | ||
| 672 | Fthis_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/ | ||
| 673 | Fthis_command_keys_vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/ | ||
| 674 | Fthis_single_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/ | ||
| 675 | Fthis_single_command_raw_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-raw-keys", Fthis_singl/ | ||
| 676 | Ftop_level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, / | ||
| 677 | Ftrack_mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/ | ||
| 678 | Funexpand_abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/ | ||
| 679 | Fx_get_selection_internal c.c /^ Fx_get_selection_internal, Sx_get_selection/ | ||
| 680 | Fx_get_selection_internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/ | ||
| 681 | Fy_get_selection_internal c.c /^ Fy_get_selection_internal, Sy_get_selection_/ | ||
| 682 | GCALIGNED c-src/emacs/src/lisp.h 288 | ||
| 683 | GCALIGNED c-src/emacs/src/lisp.h 290 | ||
| 684 | GCALIGNMENT c-src/emacs/src/lisp.h 243 | ||
| 685 | GCPRO1 c-src/emacs/src/lisp.h /^#define GCPRO1(a) \\$/ | ||
| 686 | GCPRO1 c-src/emacs/src/lisp.h /^#define GCPRO1(varname) ((void) gcpro1)$/ | ||
| 687 | GCPRO2 c-src/emacs/src/lisp.h /^#define GCPRO2(a, b) \\$/ | ||
| 688 | GCPRO2 c-src/emacs/src/lisp.h /^#define GCPRO2(varname1, varname2) ((void) gcpro2,/ | ||
| 689 | GCPRO3 c-src/emacs/src/lisp.h /^#define GCPRO3(a, b, c) \\$/ | ||
| 690 | GCPRO3 c-src/emacs/src/lisp.h /^#define GCPRO3(varname1, varname2, varname3) \\$/ | ||
| 691 | GCPRO4 c-src/emacs/src/lisp.h /^#define GCPRO4(a, b, c, d) \\$/ | ||
| 692 | GCPRO4 c-src/emacs/src/lisp.h /^#define GCPRO4(varname1, varname2, varname3, varna/ | ||
| 693 | GCPRO5 c-src/emacs/src/lisp.h /^#define GCPRO5(a, b, c, d, e) \\$/ | ||
| 694 | GCPRO5 c-src/emacs/src/lisp.h /^#define GCPRO5(varname1, varname2, varname3, varna/ | ||
| 695 | GCPRO6 c-src/emacs/src/lisp.h /^#define GCPRO6(a, b, c, d, e, f) \\$/ | ||
| 696 | GCPRO6 c-src/emacs/src/lisp.h /^#define GCPRO6(varname1, varname2, varname3, varna/ | ||
| 697 | GCPRO7 c-src/emacs/src/lisp.h /^#define GCPRO7(a, b, c, d, e, f, g) \\$/ | ||
| 698 | GCPRO7 c-src/emacs/src/lisp.h /^#define GCPRO7(a, b, c, d, e, f, g) (GCPRO6 (a, b,/ | ||
| 699 | GCTYPEBITS c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (int, GCTYPEBITS)$/ | ||
| 700 | GCTYPEBITS c-src/emacs/src/lisp.h 67 | ||
| 701 | GC_MAKE_GCPROS_NOOPS c-src/emacs/src/lisp.h 3172 | ||
| 702 | GC_MARK_STACK c-src/emacs/src/lisp.h 3177 | ||
| 703 | GC_MARK_STACK_CHECK_GCPROS c-src/emacs/src/lisp.h 3173 | ||
| 704 | GC_USE_GCPROS_AS_BEFORE c-src/emacs/src/lisp.h 3171 | ||
| 705 | GC_USE_GCPROS_CHECK_ZOMBIES c-src/emacs/src/lisp.h 3174 | ||
| 706 | GE y-src/parse.c 8 | ||
| 707 | GENERIC_PTR y-src/cccp.y 56 | ||
| 708 | GENERIC_PTR y-src/cccp.y 58 | ||
| 709 | GEQ y-src/cccp.c 15 | ||
| 710 | GETOPTOBJS make-src/Makefile /^GETOPTOBJS= #getopt.o getopt1.o$/ | ||
| 711 | GREEN cp-src/screen.hpp 14 | ||
| 712 | GROW_RAW_KEYBUF c-src/emacs/src/keyboard.c 119 | ||
| 713 | GatherControls pyt-src/server.py /^ def GatherControls(self):$/ | ||
| 714 | GetLayerByName lua-src/allegro.lua /^function GetLayerByName (name)$/ | ||
| 715 | GetNameList pas-src/common.pas /^function GetNameList; (* : BinNodePointer;*)$/ | ||
| 716 | GetNewNameListNode pas-src/common.pas /^function GetNewNameListNode;(*($/ | ||
| 717 | GetTextRef pas-src/common.pas /^function GetTextRef;(*($/ | ||
| 718 | GetUniqueLayerName lua-src/allegro.lua /^function GetUniqueLayerName ()$/ | ||
| 719 | Get_Own_Priority/f ada-src/2ataspri.adb /^ function Get_Own_Priority return System.Any_Pri/ | ||
| 720 | Get_Own_Priority/f ada-src/2ataspri.ads /^ function Get_Own_Priority return System.Any_Pri/ | ||
| 721 | Get_Priority/f ada-src/2ataspri.adb /^ function Get_Priority (T : TCB_Ptr) return Syst/ | ||
| 722 | Get_Priority/f ada-src/2ataspri.ads /^ function Get_Priority (T : TCB_Ptr) return Syst/ | ||
| 723 | HASH_HASH c-src/emacs/src/lisp.h /^HASH_HASH (struct Lisp_Hash_Table *h, ptrdiff_t id/ | ||
| 724 | HASH_INDEX c-src/emacs/src/lisp.h /^HASH_INDEX (struct Lisp_Hash_Table *h, ptrdiff_t i/ | ||
| 725 | HASH_KEY c-src/emacs/src/lisp.h /^HASH_KEY (struct Lisp_Hash_Table *h, ptrdiff_t idx/ | ||
| 726 | HASH_NEXT c-src/emacs/src/lisp.h /^HASH_NEXT (struct Lisp_Hash_Table *h, ptrdiff_t id/ | ||
| 727 | HASH_TABLE_P c-src/emacs/src/lisp.h /^HASH_TABLE_P (Lisp_Object a)$/ | ||
| 728 | HASH_TABLE_SIZE c-src/emacs/src/lisp.h /^HASH_TABLE_SIZE (struct Lisp_Hash_Table *h)$/ | ||
| 729 | HASH_VALUE c-src/emacs/src/lisp.h /^HASH_VALUE (struct Lisp_Hash_Table *h, ptrdiff_t i/ | ||
| 730 | HAVE_NTGUI c-src/etags.c 116 | ||
| 731 | HEADINGSafter tex-src/texinfo.tex /^\\def\\HEADINGSafter{\\let\\HEADINGShook=\\HEADINGSdoub/ | ||
| 732 | HEADINGSdouble tex-src/texinfo.tex /^\\def\\HEADINGSdouble{$/ | ||
| 733 | HEADINGSdoubleafter tex-src/texinfo.tex /^\\let\\HEADINGSdoubleafter=\\HEADINGSafter$/ | ||
| 734 | HEADINGSdoublex tex-src/texinfo.tex /^\\def\\HEADINGSdoublex{%$/ | ||
| 735 | HEADINGShook tex-src/texinfo.tex /^\\def\\HEADINGSafter{\\let\\HEADINGShook=\\HEADINGSdoub/ | ||
| 736 | HEADINGShook tex-src/texinfo.tex /^\\def\\HEADINGSsingleafter{\\let\\HEADINGShook=\\HEADIN/ | ||
| 737 | HEADINGShook tex-src/texinfo.tex /^\\let\\HEADINGShook=\\relax$/ | ||
| 738 | HEADINGSoff tex-src/texinfo.tex /^\\def\\HEADINGSoff{$/ | ||
| 739 | HEADINGSon tex-src/texinfo.tex /^\\def\\HEADINGSon{\\HEADINGSdouble}$/ | ||
| 740 | HEADINGSon tex-src/texinfo.tex /^\\global\\def\\HEADINGSon{\\HEADINGSdouble}}$/ | ||
| 741 | HEADINGSon tex-src/texinfo.tex /^\\global\\def\\HEADINGSon{\\HEADINGSsingle}}$/ | ||
| 742 | HEADINGSsingle tex-src/texinfo.tex /^\\def\\HEADINGSsingle{$/ | ||
| 743 | HEADINGSsingleafter tex-src/texinfo.tex /^\\def\\HEADINGSsingleafter{\\let\\HEADINGShook=\\HEADIN/ | ||
| 744 | HEADINGSsinglex tex-src/texinfo.tex /^\\def\\HEADINGSsinglex{%$/ | ||
| 745 | HEAP c-src/emacs/src/gmalloc.c 131 | ||
| 746 | HTMLSRC make-src/Makefile /^HTMLSRC=softwarelibero.html index.shtml algrthms.h/ | ||
| 747 | HTML_help c-src/etags.c 584 | ||
| 748 | HTML_labels c-src/etags.c /^HTML_labels (FILE *inf)$/ | ||
| 749 | HTML_suffixes c-src/etags.c 582 | ||
| 750 | IEEE_FLOATING_POINT c-src/emacs/src/lisp.h 2415 | ||
| 751 | IMAGEP c-src/emacs/src/lisp.h /^IMAGEP (Lisp_Object x)$/ | ||
| 752 | INPUT_EVENT_POS_MAX c-src/emacs/src/keyboard.c 3698 | ||
| 753 | INPUT_EVENT_POS_MIN c-src/emacs/src/keyboard.c 3701 | ||
| 754 | INSERT_TREE_NODE pas-src/common.pas /^procedure INSERT_TREE_NODE;(*( $/ | ||
| 755 | INSTANTIATE_MDIAGARRAY_FRIENDS cp-src/MDiagArray2.h /^#define INSTANTIATE_MDIAGARRAY_FRIENDS(T) \\$/ | ||
| 756 | INT c-src/h.h 32 | ||
| 757 | INT y-src/cccp.c 6 | ||
| 758 | INTEGERP c-src/emacs/src/lisp.h /^# define INTEGERP(x) lisp_h_INTEGERP (x)$/ | ||
| 759 | INTEGER_TO_CONS c-src/emacs/src/lisp.h /^#define INTEGER_TO_CONS(i) \\$/ | ||
| 760 | INTERVAL c-src/emacs/src/lisp.h 1149 | ||
| 761 | INTMASK c-src/emacs/src/lisp.h 437 | ||
| 762 | INTTYPEBITS c-src/emacs/src/lisp.h 249 | ||
| 763 | INT_BIT c-src/emacs/src/gmalloc.c 124 | ||
| 764 | INT_TYPE_SIZE y-src/cccp.y 91 | ||
| 765 | ISALNUM c-src/etags.c /^#define ISALNUM(c) isalnum (CHAR (c))$/ | ||
| 766 | ISALPHA c-src/etags.c /^#define ISALPHA(c) isalpha (CHAR (c))$/ | ||
| 767 | ISDIGIT c-src/etags.c /^#define ISDIGIT(c) isdigit (CHAR (c))$/ | ||
| 768 | ISLOWER c-src/etags.c /^#define ISLOWER(c) islower (CHAR (c))$/ | ||
| 769 | ISO_FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5149 | ||
| 770 | ISUPPER c-src/etags.c /^# define ISUPPER(c) isupper (CHAR (c))$/ | ||
| 771 | IS_DAEMON c-src/emacs/src/lisp.h 4257 | ||
| 772 | IS_DAEMON c-src/emacs/src/lisp.h 4261 | ||
| 773 | InitNameList pas-src/common.pas /^procedure InitNameList;$/ | ||
| 774 | InitNameStringPool pas-src/common.pas /^procedure InitNameStringPool;$/ | ||
| 775 | InitializeStringPackage pas-src/common.pas /^procedure InitializeStringPackage;$/ | ||
| 776 | Initialize_Cond/p ada-src/2ataspri.adb /^ procedure Initialize_Cond (Cond : in out Condit/ | ||
| 777 | Initialize_Cond/p ada-src/2ataspri.ads /^ procedure Initialize_Cond (Cond : in out Condit/ | ||
| 778 | Initialize_LL_Tasks/p ada-src/2ataspri.adb /^ procedure Initialize_LL_Tasks (T : TCB_Ptr) is$/ | ||
| 779 | Initialize_LL_Tasks/p ada-src/2ataspri.ads /^ procedure Initialize_LL_Tasks (T : TCB_Ptr);$/ | ||
| 780 | Initialize_Lock/p ada-src/2ataspri.adb /^ procedure Initialize_Lock$/ | ||
| 781 | Initialize_Lock/p ada-src/2ataspri.ads /^ procedure Initialize_Lock (Prio : System.Any_Pr/ | ||
| 782 | Initialize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Initialize_TAS_Cell (Cell : out TAS_C/ | ||
| 783 | Initialize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Initialize_TAS_Cell (Cell : out TA/ | ||
| 784 | Inner1/b ada-src/etags-test-for.ada /^ package body Inner1 is$/ | ||
| 785 | Inner1/b ada-src/waroquiers.ada /^ package body Inner1 is$/ | ||
| 786 | Inner1/s ada-src/etags-test-for.ada /^ package Inner1 is$/ | ||
| 787 | Inner1/s ada-src/waroquiers.ada /^ package Inner1 is$/ | ||
| 788 | Inner2/b ada-src/etags-test-for.ada /^ package body Inner2 is$/ | ||
| 789 | Inner2/b ada-src/waroquiers.ada /^ package body Inner2 is$/ | ||
| 790 | Inner2/s ada-src/etags-test-for.ada /^ package Inner2 is$/ | ||
| 791 | Inner2/s ada-src/waroquiers.ada /^ package Inner2 is$/ | ||
| 792 | Install_Abort_Handler/p ada-src/2ataspri.adb /^ procedure Install_Abort_Handler (Handler : Abor/ | ||
| 793 | Install_Abort_Handler/p ada-src/2ataspri.ads /^ procedure Install_Abort_Handler (Handler : Abor/ | ||
| 794 | Install_Error_Handler/p ada-src/2ataspri.adb /^ procedure Install_Error_Handler (Handler : Syst/ | ||
| 795 | Install_Error_Handler/p ada-src/2ataspri.ads /^ procedure Install_Error_Handler (Handler : Syst/ | ||
| 796 | Invoking gzip tex-src/gzip.texi /^@node Invoking gzip, Advanced usage, Sample, Top$/ | ||
| 797 | IpAddrKind rs-src/test.rs 3 | ||
| 798 | IsControlChar pas-src/common.pas /^function IsControlChar; (*($/ | ||
| 799 | IsControlCharName pas-src/common.pas /^function IsControlCharName($/ | ||
| 800 | Is_Set/f ada-src/2ataspri.adb /^ function Is_Set (Cell : in TAS_Cell) return Bo/ | ||
| 801 | Is_Set/f ada-src/2ataspri.ads /^ function Is_Set (Cell : in TAS_Cell)/ | ||
| 802 | JAVASRC make-src/Makefile /^JAVASRC=AWTEMul.java KeyEve.java SMan.java SysCol./ | ||
| 803 | KBD_BUFFER_SIZE c-src/emacs/src/keyboard.c 82 | ||
| 804 | KBYTES objc-src/PackInsp.m 58 | ||
| 805 | KEY_TO_CHAR c-src/emacs/src/keyboard.c /^#define KEY_TO_CHAR(k) (XINT (k) & ((1 << CHARACTE/ | ||
| 806 | L tex-src/texinfo.tex /^\\let\\L=\\ptexL$/ | ||
| 807 | LATEST make-src/Makefile /^LATEST=17$/ | ||
| 808 | LCE_COMMENT php-src/lce_functions.php 13 | ||
| 809 | LCE_COMMENT_TOOL php-src/lce_functions.php 17 | ||
| 810 | LCE_COMMENT_USER php-src/lce_functions.php 15 | ||
| 811 | LCE_FUNCTIONS php-src/lce_functions.php 4 | ||
| 812 | LCE_MSGID php-src/lce_functions.php 19 | ||
| 813 | LCE_MSGSTR php-src/lce_functions.php 21 | ||
| 814 | LCE_TEXT php-src/lce_functions.php 23 | ||
| 815 | LCE_UNKNOWN php-src/lce_functions.php 9 | ||
| 816 | LCE_WS php-src/lce_functions.php 11 | ||
| 817 | LDFLAGS make-src/Makefile /^LDFLAGS=#-static -lc_p$/ | ||
| 818 | LE y-src/parse.c 7 | ||
| 819 | LEQ y-src/cccp.c 14 | ||
| 820 | LIGHTBLUE cp-src/screen.hpp 21 | ||
| 821 | LIGHTCYAN cp-src/screen.hpp 23 | ||
| 822 | LIGHTGRAY cp-src/screen.hpp 19 | ||
| 823 | LIGHTGREEN cp-src/screen.hpp 22 | ||
| 824 | LIGHTMAGENTA cp-src/screen.hpp 25 | ||
| 825 | LIGHTRED cp-src/screen.hpp 24 | ||
| 826 | LISP_INITIALLY c-src/emacs/src/lisp.h /^#define LISP_INITIALLY(i) (i)$/ | ||
| 827 | LISP_INITIALLY c-src/emacs/src/lisp.h /^#define LISP_INITIALLY(i) {i}$/ | ||
| 828 | LISP_INITIALLY_ZERO c-src/emacs/src/lisp.h 582 | ||
| 829 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^#define LISP_MACRO_DEFUN(name, type, argdecls, arg/ | ||
| 830 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (CONSP, bool, (Lisp_Object x), (x/ | ||
| 831 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (NILP, bool, (Lisp_Object x), (x)/ | ||
| 832 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (SYMBOL_VAL, Lisp_Object, (struct/ | ||
| 833 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XCAR, Lisp_Object, (Lisp_Object / | ||
| 834 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XCONS, struct Lisp_Cons *, (Lisp/ | ||
| 835 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XHASH, EMACS_INT, (Lisp_Object a/ | ||
| 836 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XLI, EMACS_INT, (Lisp_Object o),/ | ||
| 837 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XPNTR, void *, (Lisp_Object a), / | ||
| 838 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^#define LISP_MACRO_DEFUN_VOID(name, argdecls, args/ | ||
| 839 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (CHECK_LIST_CONS, (Lisp_Obje/ | ||
| 840 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (CHECK_TYPE,$/ | ||
| 841 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (SET_SYMBOL_VAL,$/ | ||
| 842 | LISTCONTENTS objc-src/PackInsp.m 39 | ||
| 843 | LISTCONTENTSBUTTON objc-src/PackInsp.m 48 | ||
| 844 | LISTDESCRIPTIONBUTTON objc-src/PackInsp.m 49 | ||
| 845 | LL_Assert/p ada-src/2ataspri.adb /^ procedure LL_Assert (B : Boolean; M : String) i/ | ||
| 846 | LL_Assert/p ada-src/2ataspri.ads /^ procedure LL_Assert (B : Boolean; M : String);$/ | ||
| 847 | LL_Task_Procedure_Access/t ada-src/2ataspri.ads /^ type LL_Task_Procedure_Access is access procedu/ | ||
| 848 | LL_Task_Procedure_Access/t ada-src/etags-test-for.ada /^ type LL_Task_Procedure_Access is access procedu/ | ||
| 849 | LL_Wrapper/p ada-src/2ataspri.adb /^ procedure LL_Wrapper (T : TCB_Ptr) is$/ | ||
| 850 | LL_Wrapper/p ada-src/2ataspri.adb /^ procedure LL_Wrapper (T : TCB_Ptr);$/ | ||
| 851 | LL_Wrapper/p ada-src/etags-test-for.ada /^ procedure LL_Wrapper (T : TCB_Ptr);$/ | ||
| 852 | LOCALIZE objc-src/PackInsp.m /^#define LOCALIZE(s) NXLoadLocalizedStringFromTabl/ | ||
| 853 | LOCALIZE_ARCH objc-src/PackInsp.m /^#define LOCALIZE_ARCH(s) NXLoadLocalizedStringFrom/ | ||
| 854 | LOCK c-src/emacs/src/gmalloc.c /^#define LOCK() \\$/ | ||
| 855 | LOCK c-src/emacs/src/gmalloc.c /^#define LOCK()$/ | ||
| 856 | LOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define LOCK_ALIGNED_BLOCKS() \\$/ | ||
| 857 | LOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define LOCK_ALIGNED_BLOCKS()$/ | ||
| 858 | LONG_TYPE_SIZE y-src/cccp.y 95 | ||
| 859 | LOOKING_AT c-src/etags.c /^#define LOOKING_AT(cp, kw) \/* kw is the keyword, / | ||
| 860 | LOOKING_AT_NOCASE c-src/etags.c /^#define LOOKING_AT_NOCASE(cp, kw) \/* the keyword i/ | ||
| 861 | LOOKUP objc-src/PackInsp.m /^#define LOOKUP(key, notfound) ([table isKey:key] ?/ | ||
| 862 | LOOKUP objc-src/PackInsp.m 176 | ||
| 863 | LOOP_ON_INPUT_LINES c-src/etags.c /^#define LOOP_ON_INPUT_LINES(file_pointer, line_buf/ | ||
| 864 | LSH y-src/cccp.c 16 | ||
| 865 | LTGT cp-src/MDiagArray2.h 144 | ||
| 866 | LTGT cp-src/MDiagArray2.h 35 | ||
| 867 | LTGT cp-src/MDiagArray2.h 39 | ||
| 868 | LTGT cp-src/MDiagArray2.h 42 | ||
| 869 | LUASRC make-src/Makefile /^LUASRC=allegro.lua$/ | ||
| 870 | L_CELL y-src/parse.c 10 | ||
| 871 | L_CONST y-src/parse.c 13 | ||
| 872 | L_FN0 y-src/parse.c 14 | ||
| 873 | L_FN1 y-src/parse.c 15 | ||
| 874 | L_FN1R y-src/parse.c 20 | ||
| 875 | L_FN2 y-src/parse.c 16 | ||
| 876 | L_FN2R y-src/parse.c 21 | ||
| 877 | L_FN3 y-src/parse.c 17 | ||
| 878 | L_FN3R y-src/parse.c 22 | ||
| 879 | L_FN4 y-src/parse.c 18 | ||
| 880 | L_FN4R y-src/parse.c 23 | ||
| 881 | L_FNN y-src/parse.c 19 | ||
| 882 | L_FNNR y-src/parse.c 24 | ||
| 883 | L_GE y-src/parse.c 27 | ||
| 884 | L_LE y-src/parse.c 25 | ||
| 885 | L_NE y-src/parse.c 26 | ||
| 886 | L_RANGE y-src/parse.c 11 | ||
| 887 | L_VAR y-src/parse.c 12 | ||
| 888 | L_getit c-src/etags.c /^L_getit (void)$/ | ||
| 889 | LabeledEntry pyt-src/server.py /^class LabeledEntry(Frame):$/ | ||
| 890 | Lang_function c-src/etags.c 182 | ||
| 891 | Lang_function c-src/h.h 6 | ||
| 892 | Lisp_Bits c-src/emacs/src/lisp.h 239 | ||
| 893 | Lisp_Bool_Vector c-src/emacs/src/lisp.h 1384 | ||
| 894 | Lisp_Boolfwd c-src/emacs/src/lisp.h 2284 | ||
| 895 | Lisp_Buffer_Local_Value c-src/emacs/src/lisp.h 2334 | ||
| 896 | Lisp_Buffer_Objfwd c-src/emacs/src/lisp.h 2302 | ||
| 897 | Lisp_Char_Table c-src/emacs/src/lisp.h 1575 | ||
| 898 | Lisp_Compiled c-src/emacs/src/lisp.h 2429 | ||
| 899 | Lisp_Cons c-src/emacs/src/lisp.h 475 | ||
| 900 | Lisp_Finalizer c-src/emacs/src/lisp.h 2186 | ||
| 901 | Lisp_Float c-src/emacs/src/lisp.h 2391 | ||
| 902 | Lisp_Float c-src/emacs/src/lisp.h 477 | ||
| 903 | Lisp_Free c-src/emacs/src/lisp.h 2201 | ||
| 904 | Lisp_Fwd c-src/emacs/src/lisp.h 2368 | ||
| 905 | Lisp_Fwd_Bool c-src/emacs/src/lisp.h 505 | ||
| 906 | Lisp_Fwd_Buffer_Obj c-src/emacs/src/lisp.h 507 | ||
| 907 | Lisp_Fwd_Int c-src/emacs/src/lisp.h 504 | ||
| 908 | Lisp_Fwd_Kboard_Obj c-src/emacs/src/lisp.h 508 | ||
| 909 | Lisp_Fwd_Obj c-src/emacs/src/lisp.h 506 | ||
| 910 | Lisp_Fwd_Type c-src/emacs/src/lisp.h 502 | ||
| 911 | Lisp_Hash_Table c-src/emacs/src/lisp.h 1823 | ||
| 912 | Lisp_Int0 c-src/emacs/src/lisp.h 461 | ||
| 913 | Lisp_Int1 c-src/emacs/src/lisp.h 462 | ||
| 914 | Lisp_Intfwd c-src/emacs/src/lisp.h 2274 | ||
| 915 | Lisp_Kboard_Objfwd c-src/emacs/src/lisp.h 2362 | ||
| 916 | Lisp_Marker c-src/emacs/src/lisp.h 1978 | ||
| 917 | Lisp_Misc c-src/emacs/src/lisp.h 2212 | ||
| 918 | Lisp_Misc c-src/emacs/src/lisp.h 458 | ||
| 919 | Lisp_Misc_Any c-src/emacs/src/lisp.h 1971 | ||
| 920 | Lisp_Misc_Finalizer c-src/emacs/src/lisp.h 491 | ||
| 921 | Lisp_Misc_Float c-src/emacs/src/lisp.h 494 | ||
| 922 | Lisp_Misc_Free c-src/emacs/src/lisp.h 487 | ||
| 923 | Lisp_Misc_Limit c-src/emacs/src/lisp.h 496 | ||
| 924 | Lisp_Misc_Marker c-src/emacs/src/lisp.h 488 | ||
| 925 | Lisp_Misc_Overlay c-src/emacs/src/lisp.h 489 | ||
| 926 | Lisp_Misc_Save_Value c-src/emacs/src/lisp.h 490 | ||
| 927 | Lisp_Misc_Type c-src/emacs/src/lisp.h 485 | ||
| 928 | Lisp_Object c-src/emacs/src/lisp.h 567 | ||
| 929 | Lisp_Object c-src/emacs/src/lisp.h 577 | ||
| 930 | Lisp_Objfwd c-src/emacs/src/lisp.h 2294 | ||
| 931 | Lisp_Overlay c-src/emacs/src/lisp.h 2021 | ||
| 932 | Lisp_Save_Type c-src/emacs/src/lisp.h 2064 | ||
| 933 | Lisp_Save_Value c-src/emacs/src/lisp.h 2110 | ||
| 934 | Lisp_String c-src/emacs/src/lisp.h 466 | ||
| 935 | Lisp_Sub_Char_Table c-src/emacs/src/lisp.h 1606 | ||
| 936 | Lisp_Subr c-src/emacs/src/lisp.h 1670 | ||
| 937 | Lisp_Symbol c-src/emacs/src/lisp.h 454 | ||
| 938 | Lisp_Symbol c-src/emacs/src/lisp.h 654 | ||
| 939 | Lisp_Type c-src/emacs/src/lisp.h 451 | ||
| 940 | Lisp_Vector c-src/emacs/src/lisp.h 1369 | ||
| 941 | Lisp_Vectorlike c-src/emacs/src/lisp.h 472 | ||
| 942 | Lisp_functions c-src/etags.c /^Lisp_functions (FILE *inf)$/ | ||
| 943 | Lisp_help c-src/etags.c 591 | ||
| 944 | Lisp_suffixes c-src/etags.c 589 | ||
| 945 | ListEdit pyt-src/server.py /^class ListEdit(Frame):$/ | ||
| 946 | Locate pas-src/common.pas /^function Locate; (*($/ | ||
| 947 | Lock/t ada-src/2ataspri.ads /^ type Lock is private;$/ | ||
| 948 | Lock/t ada-src/2ataspri.ads /^ type Lock is$/ | ||
| 949 | LowerCaseNmStr pas-src/common.pas /^function LowerCaseNmStr; (*($/ | ||
| 950 | Lua_functions c-src/etags.c /^Lua_functions (FILE *inf)$/ | ||
| 951 | Lua_help c-src/etags.c 600 | ||
| 952 | Lua_suffixes c-src/etags.c 598 | ||
| 953 | M ruby-src/test1.ru /^module A::M; end$/ | ||
| 954 | MAGENTA cp-src/screen.hpp 17 | ||
| 955 | MAGICBYTE c-src/emacs/src/gmalloc.c 1861 | ||
| 956 | MAGICFREE c-src/emacs/src/gmalloc.c 1860 | ||
| 957 | MAGICWORD c-src/emacs/src/gmalloc.c 1859 | ||
| 958 | MAKE make-src/Makefile /^MAKE:=$(MAKE) --no-print-directory$/ | ||
| 959 | MAKESRC make-src/Makefile /^MAKESRC=Makefile$/ | ||
| 960 | MALLOCFLOOD c-src/emacs/src/gmalloc.c 1862 | ||
| 961 | MANY c-src/emacs/src/lisp.h 2833 | ||
| 962 | MARKERP c-src/emacs/src/lisp.h /^# define MARKERP(x) lisp_h_MARKERP (x)$/ | ||
| 963 | MAXPATHLEN c-src/etags.c 115 | ||
| 964 | MAX_ALLOCA c-src/emacs/src/lisp.h 4556 | ||
| 965 | MAX_ENCODED_BYTES c-src/emacs/src/keyboard.c 2254 | ||
| 966 | MAX_HASH_VALUE c-src/etags.c 2329 | ||
| 967 | MAX_WORD_LENGTH c-src/etags.c 2327 | ||
| 968 | MAYBEREL y-src/parse.y /^#define MAYBEREL(p) (*(p)=='[' && (isdigit((p)[1])/ | ||
| 969 | MBYTES objc-src/PackInsp.m 59 | ||
| 970 | MCHECK_DISABLED c-src/emacs/src/gmalloc.c 285 | ||
| 971 | MCHECK_FREE c-src/emacs/src/gmalloc.c 287 | ||
| 972 | MCHECK_HEAD c-src/emacs/src/gmalloc.c 288 | ||
| 973 | MCHECK_OK c-src/emacs/src/gmalloc.c 286 | ||
| 974 | MCHECK_TAIL c-src/emacs/src/gmalloc.c 289 | ||
| 975 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (T *d, int r, int c) : DiagArray2<T>/ | ||
| 976 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const Array<T>& a) : DiagArray2<T> / | ||
| 977 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const DiagArray2<T>& a) : DiagArray/ | ||
| 978 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const MDiagArray2<T>& a) : DiagArra/ | ||
| 979 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (int r, int c) : DiagArray2<T> (r, c/ | ||
| 980 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (int r, int c, const T& val) : DiagA/ | ||
| 981 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (void) : DiagArray2<T> () { }$/ | ||
| 982 | MDiagArray2 cp-src/MDiagArray2.h 78 | ||
| 983 | MIN_HASH_VALUE c-src/etags.c 2328 | ||
| 984 | MIN_WORD_LENGTH c-src/etags.c 2326 | ||
| 985 | MISCP c-src/emacs/src/lisp.h /^# define MISCP(x) lisp_h_MISCP (x)$/ | ||
| 986 | MOST_NEGATIVE_FIXNUM c-src/emacs/src/lisp.h 835 | ||
| 987 | MOST_POSITIVE_FIXNUM c-src/emacs/src/lisp.h 834 | ||
| 988 | MOVE c-src/sysdep.h /^#define MOVE(x,y) movl x, y$/ | ||
| 989 | MSDOS c-src/etags.c 100 | ||
| 990 | MSDOS c-src/etags.c 106 | ||
| 991 | MSDOS c-src/etags.c 107 | ||
| 992 | MSDOS c-src/etags.c 110 | ||
| 993 | MSGSEL f-src/entry.for /^ ENTRY MSGSEL ( TYPE )$/ | ||
| 994 | MSGSEL f-src/entry.strange /^ ENTRY MSGSEL ( TYPE )$/ | ||
| 995 | MSGSEL f-src/entry.strange_suffix /^ ENTRY MSGSEL ( TYPE )$/ | ||
| 996 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c /^#define MULTI_LETTER_MOD(BIT, NAME, LEN) \\$/ | ||
| 997 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c /^#define MULTI_LETTER_MOD(BIT, NAME, LEN) \\$/ | ||
| 998 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c 6231 | ||
| 999 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c 6764 | ||
| 1000 | Machin_T/b ada-src/waroquiers.ada /^ protected body Machin_T is$/ | ||
| 1001 | Machin_T/t ada-src/etags-test-for.ada /^ protected Machin_T is$/ | ||
| 1002 | Machin_T/t ada-src/etags-test-for.ada /^ protected type Machin_T is$/ | ||
| 1003 | Machin_T/t ada-src/waroquiers.ada /^ protected type Machin_T is$/ | ||
| 1004 | Machine_Exceptions/t ada-src/2ataspri.ads /^ type Machine_Exceptions is new Interfaces.C.POS/ | ||
| 1005 | MakeDispose pyt-src/server.py /^ def MakeDispose(self):$/ | ||
| 1006 | MakeSitelist pyt-src/server.py /^ def MakeSitelist(self, master):$/ | ||
| 1007 | Makefile_filenames c-src/etags.c 603 | ||
| 1008 | Makefile_help c-src/etags.c 605 | ||
| 1009 | Makefile_targets c-src/etags.c /^Makefile_targets (FILE *inf)$/ | ||
| 1010 | Mc cp-src/c.C /^int main (void) { my_function0(0); my_function1(1)/ | ||
| 1011 | Mcccp y-src/cccp.y /^main ()$/ | ||
| 1012 | Mconway.cpp cp-src/conway.cpp /^void main(void)$/ | ||
| 1013 | Metags c-src/etags.c /^main (int argc, char **argv)$/ | ||
| 1014 | Mfail cp-src/fail.C /^main()$/ | ||
| 1015 | Mkai-test.pl perl-src/kai-test.pl /^package main;$/ | ||
| 1016 | ModuleExample ruby-src/test.rb /^module ModuleExample$/ | ||
| 1017 | More_Lisp_Bits c-src/emacs/src/lisp.h 801 | ||
| 1018 | MoveLayerAfter lua-src/allegro.lua /^function MoveLayerAfter (this_one)$/ | ||
| 1019 | MoveLayerBefore lua-src/allegro.lua /^function MoveLayerBefore (this_one)$/ | ||
| 1020 | MoveLayerBottom lua-src/allegro.lua /^function MoveLayerBottom ()$/ | ||
| 1021 | MoveLayerTop lua-src/allegro.lua /^function MoveLayerTop ()$/ | ||
| 1022 | Mtest.go go-src/test.go /^func main() {$/ | ||
| 1023 | Mtest.go go-src/test.go 1 | ||
| 1024 | Mtest.rs rs-src/test.rs /^fn main() {$/ | ||
| 1025 | Mtest1.go go-src/test1.go /^func main() {$/ | ||
| 1026 | Mtest1.go go-src/test1.go 1 | ||
| 1027 | Mx.cc cp-src/x.cc /^main(int argc, char *argv[])$/ | ||
| 1028 | NAME y-src/cccp.c 8 | ||
| 1029 | NATNUMP c-src/emacs/src/lisp.h /^NATNUMP (Lisp_Object x)$/ | ||
| 1030 | NDEBUG c-src/etags.c 88 | ||
| 1031 | NE y-src/parse.c 6 | ||
| 1032 | NEG y-src/parse.c 9 | ||
| 1033 | NEXT_ALMOST_PRIME_LIMIT c-src/emacs/src/lisp.h 3573 | ||
| 1034 | NILP c-src/emacs/src/lisp.h /^# define NILP(x) lisp_h_NILP (x)$/ | ||
| 1035 | NIL_IS_ZERO c-src/emacs/src/lisp.h 1515 | ||
| 1036 | NONPOINTER_BITS c-src/emacs/src/lisp.h 78 | ||
| 1037 | NONPOINTER_BITS c-src/emacs/src/lisp.h 80 | ||
| 1038 | NONSRCS make-src/Makefile /^NONSRCS=entry.strange lists.erl clheir.hpp.gz$/ | ||
| 1039 | NOTEQUAL y-src/cccp.c 13 | ||
| 1040 | NULL y-src/cccp.y 51 | ||
| 1041 | NULL_PTR y-src/cccp.y 63 | ||
| 1042 | NUMSTATS objc-src/PackInsp.h 36 | ||
| 1043 | NUM_MOD_NAMES c-src/emacs/src/keyboard.c 6325 | ||
| 1044 | NUM_RECENT_KEYS c-src/emacs/src/keyboard.c 91 | ||
| 1045 | NameHasChar pas-src/common.pas /^function NameHasChar; (* (TheName : NameString; Th/ | ||
| 1046 | NameStringLess pas-src/common.pas /^function NameStringLess;(*(var Name1,Name2 : NameS/ | ||
| 1047 | NewLayer lua-src/allegro.lua /^function NewLayer (name, x, y, w, h)$/ | ||
| 1048 | NewLayerSet lua-src/allegro.lua /^function NewLayerSet (name)$/ | ||
| 1049 | NewNameString pas-src/common.pas /^procedure NewNameString; (* (var NSP: NameStringPo/ | ||
| 1050 | NmStrToErrStr pas-src/common.pas /^function NmStrToErrStr;(*($/ | ||
| 1051 | NmStrToInteger pas-src/common.pas /^function NmStrToInteger; (* (Str : NameString) : i/ | ||
| 1052 | OBJCPPSRC make-src/Makefile /^OBJCPPSRC=SimpleCalc.H SimpleCalc.M$/ | ||
| 1053 | OBJCSRC make-src/Makefile /^OBJCSRC=Subprocess.h Subprocess.m PackInsp.h PackI/ | ||
| 1054 | OBJS make-src/Makefile /^OBJS=${GETOPTOBJS} ${REGEXOBJS} ${CHECKOBJS}$/ | ||
| 1055 | OPENBUTTON objc-src/PackInsp.m 47 | ||
| 1056 | OPTIONS make-src/Makefile /^OPTIONS=--members --declarations --regex=@regexfil/ | ||
| 1057 | OR y-src/cccp.c 10 | ||
| 1058 | OTAGS make-src/Makefile /^OTAGS: oetags ${SRCS} srclist$/ | ||
| 1059 | OVERLAYP c-src/emacs/src/lisp.h /^OVERLAYP (Lisp_Object x)$/ | ||
| 1060 | Objc_help c-src/etags.c 613 | ||
| 1061 | Objc_suffixes c-src/etags.c 609 | ||
| 1062 | OperatorFun c-src/h.h 88 | ||
| 1063 | Overview tex-src/gzip.texi /^@node Overview, Sample, Copying, Top$/ | ||
| 1064 | PASSRC make-src/Makefile /^PASSRC=common.pas$/ | ||
| 1065 | PDT c-src/h.h /^ Date 04 May 87 235311 PDT (Mon)$/ | ||
| 1066 | PERLSRC make-src/Makefile /^PERLSRC=htlmify-cystic yagrip.pl kai-test.pl mirro/ | ||
| 1067 | PHPSRC make-src/Makefile /^PHPSRC=lce_functions.php ptest.php sendmail.php$/ | ||
| 1068 | PHP_functions c-src/etags.c /^PHP_functions (FILE *inf)$/ | ||
| 1069 | PHP_help c-src/etags.c 639 | ||
| 1070 | PHP_suffixes c-src/etags.c 637 | ||
| 1071 | POEntry php-src/lce_functions.php /^ function POEntry()$/ | ||
| 1072 | POEntry php-src/lce_functions.php 105 | ||
| 1073 | POEntryAD php-src/lce_functions.php 29 | ||
| 1074 | PORManager php-src/lce_functions.php /^ function PORManager()$/ | ||
| 1075 | PORManager php-src/lce_functions.php 498 | ||
| 1076 | POReader php-src/lce_functions.php /^ function POReader($domain, $filename)$/ | ||
| 1077 | POReader php-src/lce_functions.php 163 | ||
| 1078 | POSTSCRIPTFLAGS make-src/Makefile /^POSTSCRIPTFLAGS=--language=none --regex='#\/[^ \\t{]/ | ||
| 1079 | PRINT_UNDOCUMENTED_OPTIONS_HELP c-src/etags.c 804 | ||
| 1080 | PROCESSP c-src/emacs/src/lisp.h /^PROCESSP (Lisp_Object a)$/ | ||
| 1081 | PROLSRC make-src/Makefile /^PROLSRC=ordsets.prolog natded.prolog$/ | ||
| 1082 | PROP c-src/emacs/src/keyboard.c /^#define PROP(IDX) AREF (tool_bar_item_properties, / | ||
| 1083 | PROP c-src/emacs/src/keyboard.c 8379 | ||
| 1084 | PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) \/* empty *\/$/ | ||
| 1085 | PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) protect_malloc_/ | ||
| 1086 | PRTPKG f-src/entry.for /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/ | ||
| 1087 | PRTPKG f-src/entry.strange /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/ | ||
| 1088 | PRTPKG f-src/entry.strange_suffix /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/ | ||
| 1089 | PSEUDO c-src/sysdep.h /^#define PSEUDO(name, syscall_name, args) / | ||
| 1090 | PSEUDOVECSIZE c-src/emacs/src/lisp.h /^#define PSEUDOVECSIZE(type, nonlispfield) \\$/ | ||
| 1091 | PSEUDOVECTORP c-src/emacs/src/lisp.h /^PSEUDOVECTORP (Lisp_Object a, int code)$/ | ||
| 1092 | PSEUDOVECTOR_AREA_BITS c-src/emacs/src/lisp.h 818 | ||
| 1093 | PSEUDOVECTOR_FLAG c-src/emacs/src/lisp.h 774 | ||
| 1094 | PSEUDOVECTOR_REST_BITS c-src/emacs/src/lisp.h 813 | ||
| 1095 | PSEUDOVECTOR_REST_MASK c-src/emacs/src/lisp.h 814 | ||
| 1096 | PSEUDOVECTOR_SIZE_BITS c-src/emacs/src/lisp.h 808 | ||
| 1097 | PSEUDOVECTOR_SIZE_MASK c-src/emacs/src/lisp.h 809 | ||
| 1098 | PSEUDOVECTOR_TYPEP c-src/emacs/src/lisp.h /^PSEUDOVECTOR_TYPEP (struct vectorlike_header *a, i/ | ||
| 1099 | PSSRC make-src/Makefile /^PSSRC=rfc1245.ps$/ | ||
| 1100 | PS_functions c-src/etags.c /^PS_functions (FILE *inf)$/ | ||
| 1101 | PS_help c-src/etags.c 649 | ||
| 1102 | PS_suffixes c-src/etags.c 647 | ||
| 1103 | PTY_LENGTH objc-src/Subprocess.m 21 | ||
| 1104 | PTY_TEMPLATE objc-src/Subprocess.m 20 | ||
| 1105 | PUSH_C_STR c-src/emacs/src/keyboard.c /^#define PUSH_C_STR(str, listvar) \\$/ | ||
| 1106 | PUSH_HANDLER c-src/emacs/src/lisp.h /^#define PUSH_HANDLER(c, tag_ch_val, handlertype) \\/ | ||
| 1107 | PVEC_BOOL_VECTOR c-src/emacs/src/lisp.h 787 | ||
| 1108 | PVEC_BUFFER c-src/emacs/src/lisp.h 788 | ||
| 1109 | PVEC_CHAR_TABLE c-src/emacs/src/lisp.h 796 | ||
| 1110 | PVEC_COMPILED c-src/emacs/src/lisp.h 795 | ||
| 1111 | PVEC_FONT c-src/emacs/src/lisp.h 798 | ||
| 1112 | PVEC_FRAME c-src/emacs/src/lisp.h 785 | ||
| 1113 | PVEC_FREE c-src/emacs/src/lisp.h 783 | ||
| 1114 | PVEC_HASH_TABLE c-src/emacs/src/lisp.h 789 | ||
| 1115 | PVEC_NORMAL_VECTOR c-src/emacs/src/lisp.h 782 | ||
| 1116 | PVEC_OTHER c-src/emacs/src/lisp.h 793 | ||
| 1117 | PVEC_PROCESS c-src/emacs/src/lisp.h 784 | ||
| 1118 | PVEC_SUBR c-src/emacs/src/lisp.h 792 | ||
| 1119 | PVEC_SUB_CHAR_TABLE c-src/emacs/src/lisp.h 797 | ||
| 1120 | PVEC_TERMINAL c-src/emacs/src/lisp.h 790 | ||
| 1121 | PVEC_TYPE_MASK c-src/emacs/src/lisp.h 819 | ||
| 1122 | PVEC_WINDOW c-src/emacs/src/lisp.h 786 | ||
| 1123 | PVEC_WINDOW_CONFIGURATION c-src/emacs/src/lisp.h 791 | ||
| 1124 | PYTSRC make-src/Makefile /^PYTSRC=server.py$/ | ||
| 1125 | PackageInspector objc-src/PackInsp.h /^@interface PackageInspector:WMInspector$/ | ||
| 1126 | Pascal_functions c-src/etags.c /^Pascal_functions (FILE *inf)$/ | ||
| 1127 | Pascal_help c-src/etags.c 621 | ||
| 1128 | Pascal_suffixes c-src/etags.c 619 | ||
| 1129 | Perl_functions c-src/etags.c /^Perl_functions (FILE *inf)$/ | ||
| 1130 | Perl_help c-src/etags.c 630 | ||
| 1131 | Perl_interpreters c-src/etags.c 628 | ||
| 1132 | Perl_suffixes c-src/etags.c 626 | ||
| 1133 | Pkg1/b ada-src/etags-test-for.ada /^package body Pkg1 is$/ | ||
| 1134 | Pkg1/b ada-src/waroquiers.ada /^package body Pkg1 is$/ | ||
| 1135 | Pkg1/s ada-src/etags-test-for.ada /^package Pkg1 is$/ | ||
| 1136 | Pkg1/s ada-src/waroquiers.ada /^package Pkg1 is$/ | ||
| 1137 | Pkg1_Func1/f ada-src/etags-test-for.ada /^ function Pkg1_Func1 return Boolean is separate;$/ | ||
| 1138 | Pkg1_Func1/f ada-src/etags-test-for.ada /^ function Pkg1_Func1 return Boolean;$/ | ||
| 1139 | Pkg1_Func1/f ada-src/etags-test-for.ada /^function Pkg1_Func1 return Boolean is$/ | ||
| 1140 | Pkg1_Func1/f ada-src/waroquiers.ada /^ function Pkg1_Func1 return Boolean is separate;$/ | ||
| 1141 | Pkg1_Func1/f ada-src/waroquiers.ada /^ function Pkg1_Func1 return Boolean;$/ | ||
| 1142 | Pkg1_Func1/f ada-src/waroquiers.ada /^function Pkg1_Func1 return Boolean is$/ | ||
| 1143 | Pkg1_Func2/f ada-src/etags-test-for.ada /^ function Pkg1_Func2 (Ijk : Integer; Z : Integer)/ | ||
| 1144 | Pkg1_Func2/f ada-src/waroquiers.ada /^ function Pkg1_Func2 (Ijk : Integer; Z : Integer)/ | ||
| 1145 | Pkg1_Pkg1/b ada-src/etags-test-for.ada /^ package body Pkg1_Pkg1 is separate;$/ | ||
| 1146 | Pkg1_Pkg1/b ada-src/etags-test-for.ada /^package body Pkg1_Pkg1 is$/ | ||
| 1147 | Pkg1_Pkg1/b ada-src/waroquiers.ada /^ package body Pkg1_Pkg1 is separate;$/ | ||
| 1148 | Pkg1_Pkg1/b ada-src/waroquiers.ada /^package body Pkg1_Pkg1 is$/ | ||
| 1149 | Pkg1_Pkg1/s ada-src/etags-test-for.ada /^ package Pkg1_Pkg1 is$/ | ||
| 1150 | Pkg1_Pkg1/s ada-src/waroquiers.ada /^ package Pkg1_Pkg1 is$/ | ||
| 1151 | Pkg1_Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Pkg1_Proc1;$/ | ||
| 1152 | Pkg1_Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Pkg1_Proc1 is$/ | ||
| 1153 | Pkg1_Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Pkg1_Proc1;$/ | ||
| 1154 | Pkg1_Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Pkg1_Proc1 is$/ | ||
| 1155 | Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc1 is$/ | ||
| 1156 | Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc1;$/ | ||
| 1157 | Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc1 is$/ | ||
| 1158 | Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc1;$/ | ||
| 1159 | Pkg1_Proc2/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc2 (I : Integer) is$/ | ||
| 1160 | Pkg1_Proc2/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc2 (I : Integer);$/ | ||
| 1161 | Pkg1_Proc2/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc2 (I : Integer) is$/ | ||
| 1162 | Pkg1_Proc2/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc2 (I : Integer);$/ | ||
| 1163 | PostControls pyt-src/server.py /^ def PostControls(self):$/ | ||
| 1164 | Pre_Call_State/t ada-src/2ataspri.ads /^ type Pre_Call_State is new System.Address;$/ | ||
| 1165 | PrintAdd go-src/test1.go /^func (n intNumber) PrintAdd() {$/ | ||
| 1166 | PrintAdd go-src/test1.go /^func (s str) PrintAdd() {$/ | ||
| 1167 | Private objc-src/Subprocess.m /^@interface Subprocess(Private)$/ | ||
| 1168 | Private_T/b ada-src/etags-test-for.ada /^ task body Private_T is$/ | ||
| 1169 | Private_T/b ada-src/waroquiers.ada /^ task body Private_T is$/ | ||
| 1170 | Private_T/k ada-src/etags-test-for.ada /^ task Private_T;$/ | ||
| 1171 | Private_T/k ada-src/waroquiers.ada /^ task Private_T;$/ | ||
| 1172 | Private_T/p ada-src/etags-test-for.ada /^ procedure Private_T is$/ | ||
| 1173 | Private_T/p ada-src/etags-test-for.ada /^ procedure Private_T;$/ | ||
| 1174 | Private_T/p ada-src/waroquiers.ada /^ procedure Private_T is$/ | ||
| 1175 | Private_T/p ada-src/waroquiers.ada /^ procedure Private_T;$/ | ||
| 1176 | Private_T/t ada-src/etags-test-for.ada /^ type Private_T is private;$/ | ||
| 1177 | Private_T/t ada-src/etags-test-for.ada /^ type Private_T is$/ | ||
| 1178 | Private_T/t ada-src/waroquiers.ada /^ type Private_T is private;$/ | ||
| 1179 | Private_T/t ada-src/waroquiers.ada /^ type Private_T is$/ | ||
| 1180 | Problems tex-src/gzip.texi /^@node Problems, Concept Index, Tapes, Top$/ | ||
| 1181 | Proc/t ada-src/2ataspri.ads /^ type Proc is access procedure (Addr : System.Ad/ | ||
| 1182 | Prolog_functions c-src/etags.c /^Prolog_functions (FILE *inf)$/ | ||
| 1183 | Prolog_help c-src/etags.c 654 | ||
| 1184 | Prolog_suffixes c-src/etags.c 652 | ||
| 1185 | Public_T/t ada-src/etags-test-for.ada /^ type Public_T is$/ | ||
| 1186 | Public_T/t ada-src/waroquiers.ada /^ type Public_T is$/ | ||
| 1187 | Python_functions c-src/etags.c /^Python_functions (FILE *inf)$/ | ||
| 1188 | Python_help c-src/etags.c 660 | ||
| 1189 | Python_suffixes c-src/etags.c 658 | ||
| 1190 | QUIT c-src/emacs/src/lisp.h 3101 | ||
| 1191 | QUITP c-src/emacs/src/lisp.h 3112 | ||
| 1192 | RANGED_INTEGERP c-src/emacs/src/lisp.h /^RANGED_INTEGERP (intmax_t lo, Lisp_Object x, intma/ | ||
| 1193 | RCSid objc-src/PackInsp.m 30 | ||
| 1194 | READABLE_EVENTS_DO_TIMERS_NOW c-src/emacs/src/keyboard.c 346 | ||
| 1195 | READABLE_EVENTS_FILTER_EVENTS c-src/emacs/src/keyboard.c 347 | ||
| 1196 | READABLE_EVENTS_IGNORE_SQUEEZABLES c-src/emacs/src/keyboard.c 348 | ||
| 1197 | RECC_ALNUM c-src/emacs/src/regex.h 610 | ||
| 1198 | RECC_ALPHA c-src/emacs/src/regex.h 610 | ||
| 1199 | RECC_ASCII c-src/emacs/src/regex.h 617 | ||
| 1200 | RECC_BLANK c-src/emacs/src/regex.h 615 | ||
| 1201 | RECC_CNTRL c-src/emacs/src/regex.h 613 | ||
| 1202 | RECC_DIGIT c-src/emacs/src/regex.h 614 | ||
| 1203 | RECC_ERROR c-src/emacs/src/regex.h 609 | ||
| 1204 | RECC_GRAPH c-src/emacs/src/regex.h 611 | ||
| 1205 | RECC_LOWER c-src/emacs/src/regex.h 612 | ||
| 1206 | RECC_MULTIBYTE c-src/emacs/src/regex.h 616 | ||
| 1207 | RECC_NONASCII c-src/emacs/src/regex.h 616 | ||
| 1208 | RECC_PRINT c-src/emacs/src/regex.h 611 | ||
| 1209 | RECC_PUNCT c-src/emacs/src/regex.h 613 | ||
| 1210 | RECC_SPACE c-src/emacs/src/regex.h 615 | ||
| 1211 | RECC_UNIBYTE c-src/emacs/src/regex.h 617 | ||
| 1212 | RECC_UPPER c-src/emacs/src/regex.h 612 | ||
| 1213 | RECC_WORD c-src/emacs/src/regex.h 610 | ||
| 1214 | RECC_XDIGIT c-src/emacs/src/regex.h 614 | ||
| 1215 | RED cp-src/screen.hpp 16 | ||
| 1216 | REGEX make-src/Makefile /^REGEX=\/[ \\t]*DEFVAR_[A-Z_ \\t\\n(]+"\\([^"]+\\)"\/$/ | ||
| 1217 | REGEXOBJS make-src/Makefile /^REGEXOBJS=regex.o$/ | ||
| 1218 | REGS_FIXED c-src/emacs/src/regex.h 378 | ||
| 1219 | REGS_REALLOCATE c-src/emacs/src/regex.h 377 | ||
| 1220 | REGS_UNALLOCATED c-src/emacs/src/regex.h 376 | ||
| 1221 | REG_BADBR c-src/emacs/src/regex.h 313 | ||
| 1222 | REG_BADPAT c-src/emacs/src/regex.h 305 | ||
| 1223 | REG_BADRPT c-src/emacs/src/regex.h 316 | ||
| 1224 | REG_EBRACE c-src/emacs/src/regex.h 312 | ||
| 1225 | REG_EBRACK c-src/emacs/src/regex.h 310 | ||
| 1226 | REG_ECOLLATE c-src/emacs/src/regex.h 306 | ||
| 1227 | REG_ECTYPE c-src/emacs/src/regex.h 307 | ||
| 1228 | REG_EEND c-src/emacs/src/regex.h 319 | ||
| 1229 | REG_EESCAPE c-src/emacs/src/regex.h 308 | ||
| 1230 | REG_ENOSYS c-src/emacs/src/regex.h 297 | ||
| 1231 | REG_ENOSYS c.c 279 | ||
| 1232 | REG_EPAREN c-src/emacs/src/regex.h 311 | ||
| 1233 | REG_ERANGE c-src/emacs/src/regex.h 314 | ||
| 1234 | REG_ERANGEX c-src/emacs/src/regex.h 322 | ||
| 1235 | REG_ERPAREN c-src/emacs/src/regex.h 321 | ||
| 1236 | REG_ESIZE c-src/emacs/src/regex.h 320 | ||
| 1237 | REG_ESPACE c-src/emacs/src/regex.h 315 | ||
| 1238 | REG_ESUBREG c-src/emacs/src/regex.h 309 | ||
| 1239 | REG_EXTENDED c-src/emacs/src/regex.h 263 | ||
| 1240 | REG_ICASE c-src/emacs/src/regex.h 267 | ||
| 1241 | REG_NEWLINE c-src/emacs/src/regex.h 272 | ||
| 1242 | REG_NOERROR c-src/emacs/src/regex.h 300 | ||
| 1243 | REG_NOMATCH c-src/emacs/src/regex.h 301 | ||
| 1244 | REG_NOSUB c-src/emacs/src/regex.h 276 | ||
| 1245 | REG_NOTBOL c-src/emacs/src/regex.h 286 | ||
| 1246 | REG_NOTEOL c-src/emacs/src/regex.h 289 | ||
| 1247 | RELEASELIST make-src/Makefile /^RELEASELIST=pot@gnu.org xemacs-review@xemacs.org j/ | ||
| 1248 | RESUME_POLLING c-src/emacs/src/keyboard.c 2170 | ||
| 1249 | RETURN_UNGCPRO c-src/emacs/src/lisp.h /^#define RETURN_UNGCPRO(expr) \\$/ | ||
| 1250 | RE_BACKSLASH_ESCAPE_IN_LISTS c-src/emacs/src/regex.h 47 | ||
| 1251 | RE_BK_PLUS_QM c-src/emacs/src/regex.h 52 | ||
| 1252 | RE_CHAR_CLASSES c-src/emacs/src/regex.h 58 | ||
| 1253 | RE_CONTEXT_INDEP_ANCHORS c-src/emacs/src/regex.h 72 | ||
| 1254 | RE_CONTEXT_INDEP_OPS c-src/emacs/src/regex.h 80 | ||
| 1255 | RE_CONTEXT_INVALID_OPS c-src/emacs/src/regex.h 84 | ||
| 1256 | RE_DEBUG c-src/emacs/src/regex.h 161 | ||
| 1257 | RE_DOT_NEWLINE c-src/emacs/src/regex.h 88 | ||
| 1258 | RE_DOT_NOT_NULL c-src/emacs/src/regex.h 92 | ||
| 1259 | RE_DUP_MAX c-src/emacs/src/regex.h 253 | ||
| 1260 | RE_DUP_MAX c-src/emacs/src/regex.h 256 | ||
| 1261 | RE_FRUGAL c-src/emacs/src/regex.h 147 | ||
| 1262 | RE_HAT_LISTS_NOT_NEWLINE c-src/emacs/src/regex.h 96 | ||
| 1263 | RE_INTERVALS c-src/emacs/src/regex.h 101 | ||
| 1264 | RE_LIMITED_OPS c-src/emacs/src/regex.h 105 | ||
| 1265 | RE_NEWLINE_ALT c-src/emacs/src/regex.h 109 | ||
| 1266 | RE_NO_BK_BRACES c-src/emacs/src/regex.h 114 | ||
| 1267 | RE_NO_BK_PARENS c-src/emacs/src/regex.h 118 | ||
| 1268 | RE_NO_BK_REFS c-src/emacs/src/regex.h 122 | ||
| 1269 | RE_NO_BK_VBAR c-src/emacs/src/regex.h 126 | ||
| 1270 | RE_NO_EMPTY_RANGES c-src/emacs/src/regex.h 132 | ||
| 1271 | RE_NO_GNU_OPS c-src/emacs/src/regex.h 144 | ||
| 1272 | RE_NO_NEWLINE_ANCHOR c-src/emacs/src/regex.h 153 | ||
| 1273 | RE_NO_POSIX_BACKTRACKING c-src/emacs/src/regex.h 140 | ||
| 1274 | RE_NREGS c-src/emacs/src/regex.h 440 | ||
| 1275 | RE_SHY_GROUPS c-src/emacs/src/regex.h 150 | ||
| 1276 | RE_SYNTAX_AWK c-src/emacs/src/regex.h 186 | ||
| 1277 | RE_SYNTAX_ED c-src/emacs/src/regex.h 216 | ||
| 1278 | RE_SYNTAX_EGREP c-src/emacs/src/regex.h 206 | ||
| 1279 | RE_SYNTAX_EMACS c-src/emacs/src/regex.h 183 | ||
| 1280 | RE_SYNTAX_GNU_AWK c-src/emacs/src/regex.h 193 | ||
| 1281 | RE_SYNTAX_GREP c-src/emacs/src/regex.h 201 | ||
| 1282 | RE_SYNTAX_POSIX_AWK c-src/emacs/src/regex.h 197 | ||
| 1283 | RE_SYNTAX_POSIX_BASIC c-src/emacs/src/regex.h 225 | ||
| 1284 | RE_SYNTAX_POSIX_EGREP c-src/emacs/src/regex.h 212 | ||
| 1285 | RE_SYNTAX_POSIX_EXTENDED c-src/emacs/src/regex.h 234 | ||
| 1286 | RE_SYNTAX_POSIX_MINIMAL_BASIC c-src/emacs/src/regex.h 231 | ||
| 1287 | RE_SYNTAX_POSIX_MINIMAL_EXTENDED c-src/emacs/src/regex.h 242 | ||
| 1288 | RE_SYNTAX_SED c-src/emacs/src/regex.h 218 | ||
| 1289 | RE_TRANSLATE_TYPE c-src/emacs/src/regex.h 332 | ||
| 1290 | RE_UNMATCHED_RIGHT_PAREN_ORD c-src/emacs/src/regex.h 136 | ||
| 1291 | RSH y-src/cccp.c 17 | ||
| 1292 | RTE/s ada-src/2ataspri.adb /^ package RTE renames Interfaces.C.POSIX_RTE;$/ | ||
| 1293 | RUN make-src/Makefile /^RUN=$/ | ||
| 1294 | RUN make-src/Makefile /^RUN=time --quiet --format '%U + %S: %E'$/ | ||
| 1295 | RXINCLUDE make-src/Makefile /^RXINCLUDE=-Iemacs\/src$/ | ||
| 1296 | Range cp-src/Range.h /^ Range (const Range& r)$/ | ||
| 1297 | Range cp-src/Range.h /^ Range (double b, double l)$/ | ||
| 1298 | Range cp-src/Range.h /^ Range (double b, double l, double i)$/ | ||
| 1299 | Range cp-src/Range.h /^ Range (void)$/ | ||
| 1300 | Range cp-src/Range.h 35 | ||
| 1301 | ReadVacation cp-src/functions.cpp /^void ReadVacation ( char *filename ) {$/ | ||
| 1302 | Read_Lock/p ada-src/2ataspri.adb /^ procedure Read_Lock (L : in out Lock; Ceiling_V/ | ||
| 1303 | Read_Lock/p ada-src/2ataspri.ads /^ procedure Read_Lock (L : in out Lock; Ceiling_V/ | ||
| 1304 | Rectangle.getPos lua-src/test.lua /^function Rectangle.getPos ()$/ | ||
| 1305 | ReleaseNameString pas-src/common.pas /^procedure ReleaseNameString; (* (var NSP: NameStri/ | ||
| 1306 | RemoveLayer lua-src/allegro.lua /^function RemoveLayer ()$/ | ||
| 1307 | RemoveUnderlineControl pas-src/common.pas /^function RemoveUnderlineControl; (*($/ | ||
| 1308 | ReprOfChar pas-src/common.pas /^function ReprOfChar; (*( ch : char) : NameString;*/ | ||
| 1309 | S c.c 156 | ||
| 1310 | SAFE_ALLOCA c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA(size) ((size) <= sa_avail \\/ | ||
| 1311 | SAFE_ALLOCA_LISP c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA_LISP(buf, nelt) \\$/ | ||
| 1312 | SAFE_ALLOCA_STRING c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA_STRING(ptr, string) \\$/ | ||
| 1313 | SAFE_FREE c-src/emacs/src/lisp.h /^#define SAFE_FREE() \\$/ | ||
| 1314 | SAFE_NALLOCA c-src/emacs/src/lisp.h /^#define SAFE_NALLOCA(buf, multiplier, nitems) \\/ | ||
| 1315 | SAVE_FUNCPOINTER c-src/emacs/src/lisp.h 2049 | ||
| 1316 | SAVE_INTEGER c-src/emacs/src/lisp.h 2048 | ||
| 1317 | SAVE_OBJECT c-src/emacs/src/lisp.h 2051 | ||
| 1318 | SAVE_POINTER c-src/emacs/src/lisp.h 2050 | ||
| 1319 | SAVE_SLOT_BITS c-src/emacs/src/lisp.h 2055 | ||
| 1320 | SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2062 | ||
| 1321 | SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2114 | ||
| 1322 | SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2123 | ||
| 1323 | SAVE_TYPE_FUNCPTR_PTR_OBJ c-src/emacs/src/lisp.h 2076 | ||
| 1324 | SAVE_TYPE_INT_INT c-src/emacs/src/lisp.h 2066 | ||
| 1325 | SAVE_TYPE_INT_INT_INT c-src/emacs/src/lisp.h 2067 | ||
| 1326 | SAVE_TYPE_MEMORY c-src/emacs/src/lisp.h 2080 | ||
| 1327 | SAVE_TYPE_OBJ_OBJ c-src/emacs/src/lisp.h 2069 | ||
| 1328 | SAVE_TYPE_OBJ_OBJ_OBJ c-src/emacs/src/lisp.h 2070 | ||
| 1329 | SAVE_TYPE_OBJ_OBJ_OBJ_OBJ c-src/emacs/src/lisp.h 2071 | ||
| 1330 | SAVE_TYPE_PTR_INT c-src/emacs/src/lisp.h 2073 | ||
| 1331 | SAVE_TYPE_PTR_OBJ c-src/emacs/src/lisp.h 2074 | ||
| 1332 | SAVE_TYPE_PTR_PTR c-src/emacs/src/lisp.h 2075 | ||
| 1333 | SAVE_UNUSED c-src/emacs/src/lisp.h 2047 | ||
| 1334 | SAVE_VALUEP c-src/emacs/src/lisp.h /^SAVE_VALUEP (Lisp_Object x)$/ | ||
| 1335 | SAVE_VALUE_SLOTS c-src/emacs/src/lisp.h 2058 | ||
| 1336 | SBYTES c-src/emacs/src/lisp.h /^SBYTES (Lisp_Object string)$/ | ||
| 1337 | SCHARS c-src/emacs/src/lisp.h /^SCHARS (Lisp_Object string)$/ | ||
| 1338 | SCREEN_FP cp-src/screen.hpp /^#define SCREEN_FP(x,y) \\$/ | ||
| 1339 | SCREEN_START cp-src/screen.hpp 33 | ||
| 1340 | SDATA c-src/emacs/src/lisp.h /^SDATA (Lisp_Object string)$/ | ||
| 1341 | SDTrefGetInteger pas-src/common.pas /^function SDTrefGetInteger : integer;$/ | ||
| 1342 | SDTrefIsEnd pas-src/common.pas /^function SDTrefIsEnd : Boolean;$/ | ||
| 1343 | SDTrefRecToString pas-src/common.pas /^procedure SDTrefRecToString (* ($/ | ||
| 1344 | SDTrefSkipSpaces pas-src/common.pas /^procedure SDTrefSkipSpaces;$/ | ||
| 1345 | SDTrefStringToRec pas-src/common.pas /^procedure SDTrefStringToRec (* ($/ | ||
| 1346 | SETPRT f-src/entry.for /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/ | ||
| 1347 | SETPRT f-src/entry.strange /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/ | ||
| 1348 | SETPRT f-src/entry.strange_suffix /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/ | ||
| 1349 | SET_SYMBOL_BLV c-src/emacs/src/lisp.h /^SET_SYMBOL_BLV (struct Lisp_Symbol *sym, struct Li/ | ||
| 1350 | SET_SYMBOL_FWD c-src/emacs/src/lisp.h /^SET_SYMBOL_FWD (struct Lisp_Symbol *sym, union Lis/ | ||
| 1351 | SET_SYMBOL_VAL c-src/emacs/src/lisp.h /^# define SET_SYMBOL_VAL(sym, v) lisp_h_SET_SYMBOL_/ | ||
| 1352 | SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c /^#define SINGLE_LETTER_MOD(BIT) \\$/ | ||
| 1353 | SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c 6212 | ||
| 1354 | SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c 6763 | ||
| 1355 | SIZEFORMAT objc-src/PackInsp.m 57 | ||
| 1356 | SPECPDL_BACKTRACE c-src/emacs/src/lisp.h 2948 | ||
| 1357 | SPECPDL_INDEX c-src/emacs/src/lisp.h /^SPECPDL_INDEX (void)$/ | ||
| 1358 | SPECPDL_LET c-src/emacs/src/lisp.h 2949 | ||
| 1359 | SPECPDL_LET_DEFAULT c-src/emacs/src/lisp.h 2952 | ||
| 1360 | SPECPDL_LET_LOCAL c-src/emacs/src/lisp.h 2951 | ||
| 1361 | SPECPDL_UNWIND c-src/emacs/src/lisp.h 2944 | ||
| 1362 | SPECPDL_UNWIND_INT c-src/emacs/src/lisp.h 2946 | ||
| 1363 | SPECPDL_UNWIND_PTR c-src/emacs/src/lisp.h 2945 | ||
| 1364 | SPECPDL_UNWIND_VOID c-src/emacs/src/lisp.h 2947 | ||
| 1365 | SRCS make-src/Makefile /^SRCS=Makefile ${ADASRC} ${ASRC} ${CSRC} ${CPSRC} $/ | ||
| 1366 | SREF c-src/emacs/src/lisp.h /^SREF (Lisp_Object string, ptrdiff_t index)$/ | ||
| 1367 | SSDATA c-src/emacs/src/lisp.h /^SSDATA (Lisp_Object string)$/ | ||
| 1368 | SSET c-src/emacs/src/lisp.h /^SSET (Lisp_Object string, ptrdiff_t index, unsigne/ | ||
| 1369 | STACK_CONS c-src/emacs/src/lisp.h /^#define STACK_CONS(a, b) \\$/ | ||
| 1370 | STATE_ABORT php-src/lce_functions.php 25 | ||
| 1371 | STATE_COMPRESSD objc-src/PackInsp.m 54 | ||
| 1372 | STATE_INSTALLED objc-src/PackInsp.m 53 | ||
| 1373 | STATE_LOOP php-src/lce_functions.php 27 | ||
| 1374 | STATE_OK php-src/lce_functions.php 26 | ||
| 1375 | STATE_UNINSTALLED objc-src/PackInsp.m 52 | ||
| 1376 | STAT_EQ objc-src/PackInsp.m /^#define STAT_EQ(s1, s2) ((s1)->st_ino == (s2)->st_/ | ||
| 1377 | STDIN c-src/etags.c 408 | ||
| 1378 | STDIN c-src/etags.c 411 | ||
| 1379 | STOP_POLLING c-src/emacs/src/keyboard.c 2166 | ||
| 1380 | STRING_BYTES c-src/emacs/src/lisp.h /^STRING_BYTES (struct Lisp_String *s)$/ | ||
| 1381 | STRING_BYTES_BOUND c-src/emacs/src/lisp.h 1261 | ||
| 1382 | STRING_MULTIBYTE c-src/emacs/src/lisp.h /^STRING_MULTIBYTE (Lisp_Object str)$/ | ||
| 1383 | STRING_SET_CHARS c-src/emacs/src/lisp.h /^STRING_SET_CHARS (Lisp_Object string, ptrdiff_t ne/ | ||
| 1384 | STRING_SET_MULTIBYTE c-src/emacs/src/lisp.h /^#define STRING_SET_MULTIBYTE(STR) \\$/ | ||
| 1385 | STRING_SET_UNIBYTE c-src/emacs/src/lisp.h /^#define STRING_SET_UNIBYTE(STR) \\$/ | ||
| 1386 | SUBRP c-src/emacs/src/lisp.h /^SUBRP (Lisp_Object a)$/ | ||
| 1387 | SUB_CHAR_TABLE_OFFSET c-src/emacs/src/lisp.h 1701 | ||
| 1388 | SUB_CHAR_TABLE_P c-src/emacs/src/lisp.h /^SUB_CHAR_TABLE_P (Lisp_Object a)$/ | ||
| 1389 | SXHASH_REDUCE c-src/emacs/src/lisp.h /^SXHASH_REDUCE (EMACS_UINT x)$/ | ||
| 1390 | SYMBOLP c-src/emacs/src/lisp.h /^# define SYMBOLP(x) lisp_h_SYMBOLP (x)$/ | ||
| 1391 | SYMBOL_BLV c-src/emacs/src/lisp.h /^SYMBOL_BLV (struct Lisp_Symbol *sym)$/ | ||
| 1392 | SYMBOL_CONSTANT_P c-src/emacs/src/lisp.h /^# define SYMBOL_CONSTANT_P(sym) lisp_h_SYMBOL_CONS/ | ||
| 1393 | SYMBOL_FORWARDED c-src/emacs/src/lisp.h 651 | ||
| 1394 | SYMBOL_FWD c-src/emacs/src/lisp.h /^SYMBOL_FWD (struct Lisp_Symbol *sym)$/ | ||
| 1395 | SYMBOL_INDEX c-src/emacs/src/lisp.h /^#define SYMBOL_INDEX(sym) i##sym$/ | ||
| 1396 | SYMBOL_INTERNED c-src/emacs/src/lisp.h 642 | ||
| 1397 | SYMBOL_INTERNED_IN_INITIAL_OBARRAY c-src/emacs/src/lisp.h 643 | ||
| 1398 | SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P c-src/emacs/src/lisp.h /^SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P (Lisp_Object / | ||
| 1399 | SYMBOL_INTERNED_P c-src/emacs/src/lisp.h /^SYMBOL_INTERNED_P (Lisp_Object sym)$/ | ||
| 1400 | SYMBOL_LOCALIZED c-src/emacs/src/lisp.h 650 | ||
| 1401 | SYMBOL_NAME c-src/emacs/src/lisp.h /^SYMBOL_NAME (Lisp_Object sym)$/ | ||
| 1402 | SYMBOL_PLAINVAL c-src/emacs/src/lisp.h 648 | ||
| 1403 | SYMBOL_UNINTERNED c-src/emacs/src/lisp.h 641 | ||
| 1404 | SYMBOL_VAL c-src/emacs/src/lisp.h /^# define SYMBOL_VAL(sym) lisp_h_SYMBOL_VAL (sym)$/ | ||
| 1405 | SYMBOL_VARALIAS c-src/emacs/src/lisp.h 649 | ||
| 1406 | SYSCALL c-src/machsyscalls.c /^#define SYSCALL(name, number, type, args, typed_ar/ | ||
| 1407 | Sample tex-src/gzip.texi /^@node Sample, Invoking gzip, Overview, Top$/ | ||
| 1408 | Scheme_functions c-src/etags.c /^Scheme_functions (FILE *inf)$/ | ||
| 1409 | Scheme_help c-src/etags.c 667 | ||
| 1410 | Scheme_suffixes c-src/etags.c 665 | ||
| 1411 | SelectLayer lua-src/allegro.lua /^function SelectLayer (layer)$/ | ||
| 1412 | Self/f ada-src/2ataspri.adb /^ function Self return TCB_Ptr is$/ | ||
| 1413 | Self/f ada-src/2ataspri.ads /^ function Self return TCB_Ptr;$/ | ||
| 1414 | Server pyt-src/server.py /^class Server:$/ | ||
| 1415 | ServerEdit pyt-src/server.py /^class ServerEdit(Frame):$/ | ||
| 1416 | Set_Own_Priority/p ada-src/2ataspri.adb /^ procedure Set_Own_Priority (Prio : System.Any_P/ | ||
| 1417 | Set_Own_Priority/p ada-src/2ataspri.ads /^ procedure Set_Own_Priority (Prio : System.Any_P/ | ||
| 1418 | Set_Priority/p ada-src/2ataspri.adb /^ procedure Set_Priority$/ | ||
| 1419 | Set_Priority/p ada-src/2ataspri.ads /^ procedure Set_Priority (T : TCB_Ptr; Prio : Sys/ | ||
| 1420 | SimpleCalc objcpp-src/SimpleCalc.H /^@interface SimpleCalc:Object$/ | ||
| 1421 | SkipBlanks pas-src/common.pas /^function SkipBlanks; (*($/ | ||
| 1422 | SkipChars pas-src/common.pas /^function SkipChars; (*($/ | ||
| 1423 | SkipSpaces pas-src/common.pas /^procedure SkipSpaces; (* (Str : NameString; var I / | ||
| 1424 | Square.something:Bar lua-src/test.lua /^function Square.something:Bar ()$/ | ||
| 1425 | StartDay cp-src/functions.cpp /^Date StartDay(Date a,int days){\/\/Function to calcu/ | ||
| 1426 | StripPath pas-src/common.pas /^function StripPath; (*($/ | ||
| 1427 | SubString pas-src/common.pas /^function SubString; (*($/ | ||
| 1428 | Subprocess objc-src/Subprocess.h /^@interface Subprocess:Object$/ | ||
| 1429 | Subprocess objc-src/Subprocess.h 41 | ||
| 1430 | System.Task_Primitives/b ada-src/2ataspri.adb /^package body System.Task_Primitives is$/ | ||
| 1431 | System.Task_Primitives/s ada-src/2ataspri.ads /^package System.Task_Primitives is$/ | ||
| 1432 | T cp-src/fail.C 14 | ||
| 1433 | T2 cp-src/fail.C 16 | ||
| 1434 | T3 c.c 163 | ||
| 1435 | TAGS make-src/Makefile /^TAGS: etags.c$/ | ||
| 1436 | TAG_PTR c-src/emacs/src/lisp.h /^#define TAG_PTR(tag, ptr) \\$/ | ||
| 1437 | TAG_SYMOFFSET c-src/emacs/src/lisp.h /^#define TAG_SYMOFFSET(offset) \\$/ | ||
| 1438 | TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is private;$/ | ||
| 1439 | TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is$/ | ||
| 1440 | TCB_Ptr/t ada-src/2ataspri.ads /^ type TCB_Ptr is access all Task_Control_Block;$/ | ||
| 1441 | TCLFLAGS make-src/Makefile /^TCLFLAGS=--lang=none --regex='\/proc[ \\t]+\\([^ \\t]+/ | ||
| 1442 | TERMINALP c-src/emacs/src/lisp.h /^TERMINALP (Lisp_Object a)$/ | ||
| 1443 | TEST php-src/ptest.php 1 | ||
| 1444 | TEXSRC make-src/Makefile /^TEXSRC=testenv.tex gzip.texi texinfo.tex nonewline/ | ||
| 1445 | TEX_LESC c-src/etags.c 4986 | ||
| 1446 | TEX_SESC c-src/etags.c 4987 | ||
| 1447 | TEX_clgrp c-src/etags.c 4922 | ||
| 1448 | TEX_decode_env c-src/etags.c /^TEX_decode_env (const char *evarname, const char */ | ||
| 1449 | TEX_defenv c-src/etags.c 4912 | ||
| 1450 | TEX_esc c-src/etags.c 4920 | ||
| 1451 | TEX_mode c-src/etags.c /^TEX_mode (FILE *inf)$/ | ||
| 1452 | TEX_opgrp c-src/etags.c 4921 | ||
| 1453 | TEX_toktab c-src/etags.c 4908 | ||
| 1454 | TOTAL_KEYWORDS c-src/etags.c 2325 | ||
| 1455 | TSL/s ada-src/2ataspri.adb /^ package TSL renames System.Tasking_Soft_Links;$/ | ||
| 1456 | TYPESTOSTAT objc-src/PackInsp.h 37 | ||
| 1457 | TYPE_RANGED_INTEGERP c-src/emacs/src/lisp.h /^#define TYPE_RANGED_INTEGERP(type, x) \\$/ | ||
| 1458 | Tapes tex-src/gzip.texi /^@node Tapes, Problems, Environment, Top$/ | ||
| 1459 | Task_Control_Block/t ada-src/2ataspri.ads /^ type Task_Control_Block is record$/ | ||
| 1460 | Task_Storage_Size/t ada-src/2ataspri.ads /^ type Task_Storage_Size is new Interfaces.C.size/ | ||
| 1461 | Task_Type/b ada-src/etags-test-for.ada /^ task body Task_Type is$/ | ||
| 1462 | Task_Type/b ada-src/waroquiers.ada /^ task body Task_Type is$/ | ||
| 1463 | Task_Type/k ada-src/etags-test-for.ada /^ task type Task_Type is$/ | ||
| 1464 | Task_Type/k ada-src/waroquiers.ada /^ task type Task_Type is$/ | ||
| 1465 | TeX tex-src/texinfo.tex /^\\def\\TeX{\\realbackslash TeX}$/ | ||
| 1466 | TeX tex-src/texinfo.tex /^\\def\\TeX{\\realbackslash TeX}%$/ | ||
| 1467 | TeX tex-src/texinfo.tex /^\\let\\TeX=\\indexdummytex$/ | ||
| 1468 | TeX_commands c-src/etags.c /^TeX_commands (FILE *inf)$/ | ||
| 1469 | TeX_help c-src/etags.c 674 | ||
| 1470 | TeX_suffixes c-src/etags.c 672 | ||
| 1471 | Test_Abort/p ada-src/2ataspri.adb /^ procedure Test_Abort is$/ | ||
| 1472 | Test_Abort/p ada-src/2ataspri.ads /^ procedure Test_Abort;$/ | ||
| 1473 | Test_And_Set/p ada-src/2ataspri.adb /^ procedure Test_And_Set (Cell : in out TAS_Cell;/ | ||
| 1474 | Test_And_Set/p ada-src/2ataspri.ads /^ procedure Test_And_Set (Cell : in out TAS_Cell;/ | ||
| 1475 | Texinfo_help c-src/etags.c 688 | ||
| 1476 | Texinfo_nodes c-src/etags.c /^Texinfo_nodes (FILE *inf)$/ | ||
| 1477 | Texinfo_suffixes c-src/etags.c 686 | ||
| 1478 | Time_to_position c-src/emacs/src/keyboard.c /^Time_to_position (Time encoded_pos)$/ | ||
| 1479 | To_Lower pas-src/common.pas /^function To_Lower;(*(ch:char) : char;*)$/ | ||
| 1480 | To_Start_Addr/f ada-src/2ataspri.adb /^ function To_Start_Addr is new$/ | ||
| 1481 | To_TCB_Ptr/f ada-src/2ataspri.adb /^ function To_TCB_Ptr is new$/ | ||
| 1482 | To_Upper pas-src/common.pas /^function To_Upper;(*(ch:char) : char;*)$/ | ||
| 1483 | To_void_ptr/f ada-src/2ataspri.adb /^ function To_void_ptr is new$/ | ||
| 1484 | Top tex-src/gzip.texi /^@node Top, , , (dir)$/ | ||
| 1485 | Truc.Bidule/b ada-src/etags-test-for.ada /^package body Truc.Bidule is$/ | ||
| 1486 | Truc.Bidule/b ada-src/waroquiers.ada /^package body Truc.Bidule is$/ | ||
| 1487 | Truc.Bidule/s ada-src/etags-test-for.ada /^package Truc.Bidule is$/ | ||
| 1488 | Truc.Bidule/s ada-src/waroquiers.ada /^package Truc.Bidule is$/ | ||
| 1489 | Truc/s ada-src/etags-test-for.ada /^package Truc is$/ | ||
| 1490 | Truc/s ada-src/waroquiers.ada /^package Truc is$/ | ||
| 1491 | Type_Specific_Data/t ada-src/etags-test-for.ada /^ type Type_Specific_Data is record$/ | ||
| 1492 | UCHAR c-src/emacs/src/lisp.h 2424 | ||
| 1493 | UNARY y-src/cccp.c 18 | ||
| 1494 | UNDEFINED c-src/h.h 118 | ||
| 1495 | UNEVALLED c-src/emacs/src/lisp.h 2834 | ||
| 1496 | UNGCPRO c-src/emacs/src/lisp.h 3202 | ||
| 1497 | UNGCPRO c-src/emacs/src/lisp.h 3257 | ||
| 1498 | UNGCPRO c-src/emacs/src/lisp.h 3353 | ||
| 1499 | UNLOCK c-src/emacs/src/gmalloc.c /^#define UNLOCK() \\$/ | ||
| 1500 | UNLOCK c-src/emacs/src/gmalloc.c /^#define UNLOCK()$/ | ||
| 1501 | UNLOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define UNLOCK_ALIGNED_BLOCKS() \\$/ | ||
| 1502 | UNLOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define UNLOCK_ALIGNED_BLOCKS()$/ | ||
| 1503 | UNSIGNED_CMP c-src/emacs/src/lisp.h /^#define UNSIGNED_CMP(a, op, b) \\$/ | ||
| 1504 | USE_LSB_TAG c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (bool, USE_LSB_TAG)$/ | ||
| 1505 | USE_LSB_TAG c-src/emacs/src/lisp.h 271 | ||
| 1506 | USE_PTHREAD c-src/emacs/src/gmalloc.c 25 | ||
| 1507 | USE_SAFE_ALLOCA c-src/emacs/src/lisp.h 4560 | ||
| 1508 | USE_STACK_CONS c-src/emacs/src/lisp.h 4689 | ||
| 1509 | USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4652 | ||
| 1510 | USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4658 | ||
| 1511 | USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4659 | ||
| 1512 | USE_STACK_STRING c-src/emacs/src/lisp.h 4691 | ||
| 1513 | U_CHAR y-src/cccp.y 38 | ||
| 1514 | Unlock/p ada-src/2ataspri.adb /^ procedure Unlock (L : in out Lock) is$/ | ||
| 1515 | Unlock/p ada-src/2ataspri.ads /^ procedure Unlock (L : in out Lock);$/ | ||
| 1516 | User pyt-src/server.py /^class User:$/ | ||
| 1517 | UserEdit pyt-src/server.py /^class UserEdit(Frame):$/ | ||
| 1518 | VALBITS c-src/emacs/src/lisp.h 246 | ||
| 1519 | VALMASK c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (EMACS_INT, VALMASK)$/ | ||
| 1520 | VALMASK c-src/emacs/src/lisp.h 829 | ||
| 1521 | VAL_MAX c-src/emacs/src/lisp.h 263 | ||
| 1522 | VECSIZE c-src/emacs/src/lisp.h /^#define VECSIZE(type) \\$/ | ||
| 1523 | VECTORLIKEP c-src/emacs/src/lisp.h /^# define VECTORLIKEP(x) lisp_h_VECTORLIKEP (x)$/ | ||
| 1524 | VECTORP c-src/emacs/src/lisp.h /^VECTORP (Lisp_Object x)$/ | ||
| 1525 | VERSION c-src/etags.c 789 | ||
| 1526 | VERSION erl-src/gs_dialog.erl /^-define(VERSION, '2001.1101').$/ | ||
| 1527 | VERSION objc-src/PackInsp.m 34 | ||
| 1528 | VHDLFLAGS make-src/Makefile /^VHDLFLAGS=--language=none --regex='\/[ \\t]*\\(ARCHIT/ | ||
| 1529 | Vabbrev_start_location c-src/abbrev.c 63 | ||
| 1530 | Vabbrev_start_location_buffer c-src/abbrev.c 66 | ||
| 1531 | Vabbrev_table_name_list c-src/abbrev.c 43 | ||
| 1532 | ValToNmStr pas-src/common.pas /^function ValToNmStr; (*($/ | ||
| 1533 | Vfundamental_mode_abbrev_table c-src/abbrev.c 52 | ||
| 1534 | Vglobal_abbrev_table c-src/abbrev.c 48 | ||
| 1535 | Vlast_abbrev c-src/abbrev.c 70 | ||
| 1536 | Vlast_abbrev_text c-src/abbrev.c 75 | ||
| 1537 | Vlispy_mouse_stem c-src/emacs/src/keyboard.c 5172 | ||
| 1538 | WAIT_READING_MAX c-src/emacs/src/lisp.h 4281 | ||
| 1539 | WAIT_READING_MAX c-src/emacs/src/lisp.h 4283 | ||
| 1540 | WARNINGS make-src/Makefile /^WARNINGS=-pedantic -Wall -Wpointer-arith -Winline / | ||
| 1541 | WCHAR_TYPE_SIZE y-src/cccp.y 99 | ||
| 1542 | WHITE cp-src/screen.hpp 27 | ||
| 1543 | WINDOWP c-src/emacs/src/lisp.h /^WINDOWP (Lisp_Object a)$/ | ||
| 1544 | WINDOWSNT c-src/etags.c 101 | ||
| 1545 | WINDOWSNT c-src/etags.c 102 | ||
| 1546 | WINDOW_CONFIGURATIONP c-src/emacs/src/lisp.h /^WINDOW_CONFIGURATIONP (Lisp_Object a)$/ | ||
| 1547 | WORKING objc-src/PackInsp.m 368 | ||
| 1548 | WorkingDays cp-src/functions.cpp /^int WorkingDays(Date a, Date b){$/ | ||
| 1549 | Write_Lock/p ada-src/2ataspri.adb /^ procedure Write_Lock (L : in out Lock; Ceiling_/ | ||
| 1550 | Write_Lock/p ada-src/2ataspri.ads /^ procedure Write_Lock (L : in out Lock; Ceiling_/ | ||
| 1551 | X c-src/h.h 100 | ||
| 1552 | XBOOL_VECTOR c-src/emacs/src/lisp.h /^XBOOL_VECTOR (Lisp_Object a)$/ | ||
| 1553 | XBUFFER c-src/emacs/src/lisp.h /^XBUFFER (Lisp_Object a)$/ | ||
| 1554 | XBUFFER_OBJFWD c-src/emacs/src/lisp.h /^XBUFFER_OBJFWD (union Lisp_Fwd *a)$/ | ||
| 1555 | XCAR c-src/emacs/src/lisp.h /^# define XCAR(c) lisp_h_XCAR (c)$/ | ||
| 1556 | XCDR c-src/emacs/src/lisp.h /^# define XCDR(c) lisp_h_XCDR (c)$/ | ||
| 1557 | XCHAR_TABLE c-src/emacs/src/lisp.h /^XCHAR_TABLE (Lisp_Object a)$/ | ||
| 1558 | XCHG_0 c-src/sysdep.h 47 | ||
| 1559 | XCHG_1 c-src/sysdep.h 48 | ||
| 1560 | XCHG_2 c-src/sysdep.h 49 | ||
| 1561 | XCHG_3 c-src/sysdep.h 50 | ||
| 1562 | XCHG_4 c-src/sysdep.h 51 | ||
| 1563 | XCHG_5 c-src/sysdep.h 52 | ||
| 1564 | XCONS c-src/emacs/src/lisp.h /^# define XCONS(a) lisp_h_XCONS (a)$/ | ||
| 1565 | XDEFUN c.c /^XDEFUN ("x-get-selection-internal", Fx_get_selecti/ | ||
| 1566 | XFASTINT c-src/emacs/src/lisp.h /^# define XFASTINT(a) lisp_h_XFASTINT (a)$/ | ||
| 1567 | XFASTINT c-src/emacs/src/lisp.h /^XFASTINT (Lisp_Object a)$/ | ||
| 1568 | XFINALIZER c-src/emacs/src/lisp.h /^XFINALIZER (Lisp_Object a)$/ | ||
| 1569 | XFLOAT c-src/emacs/src/lisp.h /^XFLOAT (Lisp_Object a)$/ | ||
| 1570 | XFLOATINT c-src/emacs/src/lisp.h /^XFLOATINT (Lisp_Object n)$/ | ||
| 1571 | XFLOAT_DATA c-src/emacs/src/lisp.h /^XFLOAT_DATA (Lisp_Object f)$/ | ||
| 1572 | XFWDTYPE c-src/emacs/src/lisp.h /^XFWDTYPE (union Lisp_Fwd *a)$/ | ||
| 1573 | XHASH c-src/emacs/src/lisp.h /^# define XHASH(a) lisp_h_XHASH (a)$/ | ||
| 1574 | XHASH_TABLE c-src/emacs/src/lisp.h /^XHASH_TABLE (Lisp_Object a)$/ | ||
| 1575 | XIL c-src/emacs/src/lisp.h /^# define XIL(i) lisp_h_XIL (i)$/ | ||
| 1576 | XINT c-src/emacs/src/lisp.h /^# define XINT(a) lisp_h_XINT (a)$/ | ||
| 1577 | XINT c-src/emacs/src/lisp.h /^XINT (Lisp_Object a)$/ | ||
| 1578 | XINTPTR c-src/emacs/src/lisp.h /^XINTPTR (Lisp_Object a)$/ | ||
| 1579 | XLI c-src/emacs/src/lisp.h /^# define XLI(o) lisp_h_XLI (o)$/ | ||
| 1580 | XLI_BUILTIN_LISPSYM c-src/emacs/src/lisp.h /^#define XLI_BUILTIN_LISPSYM(iname) TAG_SYMOFFSET (/ | ||
| 1581 | XMARKER c-src/emacs/src/lisp.h /^XMARKER (Lisp_Object a)$/ | ||
| 1582 | XMISC c-src/emacs/src/lisp.h /^XMISC (Lisp_Object a)$/ | ||
| 1583 | XMISCANY c-src/emacs/src/lisp.h /^XMISCANY (Lisp_Object a)$/ | ||
| 1584 | XMISCTYPE c-src/emacs/src/lisp.h /^XMISCTYPE (Lisp_Object a)$/ | ||
| 1585 | XOVERLAY c-src/emacs/src/lisp.h /^XOVERLAY (Lisp_Object a)$/ | ||
| 1586 | XPNTR c-src/emacs/src/lisp.h /^# define XPNTR(a) lisp_h_XPNTR (a)$/ | ||
| 1587 | XPROCESS c-src/emacs/src/lisp.h /^XPROCESS (Lisp_Object a)$/ | ||
| 1588 | XSAVE_FUNCPOINTER c-src/emacs/src/lisp.h /^XSAVE_FUNCPOINTER (Lisp_Object obj, int n)$/ | ||
| 1589 | XSAVE_INTEGER c-src/emacs/src/lisp.h /^XSAVE_INTEGER (Lisp_Object obj, int n)$/ | ||
| 1590 | XSAVE_OBJECT c-src/emacs/src/lisp.h /^XSAVE_OBJECT (Lisp_Object obj, int n)$/ | ||
| 1591 | XSAVE_POINTER c-src/emacs/src/lisp.h /^XSAVE_POINTER (Lisp_Object obj, int n)$/ | ||
| 1592 | XSAVE_VALUE c-src/emacs/src/lisp.h /^XSAVE_VALUE (Lisp_Object a)$/ | ||
| 1593 | XSETBOOL_VECTOR c-src/emacs/src/lisp.h /^#define XSETBOOL_VECTOR(a, b) (XSETPSEUDOVECTOR (a/ | ||
| 1594 | XSETBUFFER c-src/emacs/src/lisp.h /^#define XSETBUFFER(a, b) (XSETPSEUDOVECTOR (a, b, / | ||
| 1595 | XSETCDR c-src/emacs/src/lisp.h /^XSETCDR (Lisp_Object c, Lisp_Object n)$/ | ||
| 1596 | XSETCHAR_TABLE c-src/emacs/src/lisp.h /^#define XSETCHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a,/ | ||
| 1597 | XSETCOMPILED c-src/emacs/src/lisp.h /^#define XSETCOMPILED(a, b) (XSETPSEUDOVECTOR (a, b/ | ||
| 1598 | XSETCONS c-src/emacs/src/lisp.h /^#define XSETCONS(a, b) ((a) = make_lisp_ptr (b, Li/ | ||
| 1599 | XSETFASTINT c-src/emacs/src/lisp.h /^#define XSETFASTINT(a, b) ((a) = make_natnum (b))$/ | ||
| 1600 | XSETFLOAT c-src/emacs/src/lisp.h /^#define XSETFLOAT(a, b) ((a) = make_lisp_ptr (b, L/ | ||
| 1601 | XSETINT c-src/emacs/src/lisp.h /^#define XSETINT(a, b) ((a) = make_number (b))$/ | ||
| 1602 | XSETMISC c-src/emacs/src/lisp.h /^#define XSETMISC(a, b) ((a) = make_lisp_ptr (b, Li/ | ||
| 1603 | XSETPROCESS c-src/emacs/src/lisp.h /^#define XSETPROCESS(a, b) (XSETPSEUDOVECTOR (a, b,/ | ||
| 1604 | XSETPSEUDOVECTOR c-src/emacs/src/lisp.h /^#define XSETPSEUDOVECTOR(a, b, code) \\$/ | ||
| 1605 | XSETPVECTYPE c-src/emacs/src/lisp.h /^#define XSETPVECTYPE(v, code) \\$/ | ||
| 1606 | XSETPVECTYPESIZE c-src/emacs/src/lisp.h /^#define XSETPVECTYPESIZE(v, code, lispsize, restsi/ | ||
| 1607 | XSETSTRING c-src/emacs/src/lisp.h /^#define XSETSTRING(a, b) ((a) = make_lisp_ptr (b, / | ||
| 1608 | XSETSUBR c-src/emacs/src/lisp.h /^#define XSETSUBR(a, b) (XSETPSEUDOVECTOR (a, b, PV/ | ||
| 1609 | XSETSUB_CHAR_TABLE c-src/emacs/src/lisp.h /^#define XSETSUB_CHAR_TABLE(a, b) (XSETPSEUDOVECTOR/ | ||
| 1610 | XSETSYMBOL c-src/emacs/src/lisp.h /^#define XSETSYMBOL(a, b) ((a) = make_lisp_symbol (/ | ||
| 1611 | XSETTERMINAL c-src/emacs/src/lisp.h /^#define XSETTERMINAL(a, b) (XSETPSEUDOVECTOR (a, b/ | ||
| 1612 | XSETTYPED_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define XSETTYPED_PSEUDOVECTOR(a, b, size, code) / | ||
| 1613 | XSETVECTOR c-src/emacs/src/lisp.h /^#define XSETVECTOR(a, b) ((a) = make_lisp_ptr (b, / | ||
| 1614 | XSETWINDOW c-src/emacs/src/lisp.h /^#define XSETWINDOW(a, b) (XSETPSEUDOVECTOR (a, b, / | ||
| 1615 | XSETWINDOW_CONFIGURATION c-src/emacs/src/lisp.h /^#define XSETWINDOW_CONFIGURATION(a, b) \\$/ | ||
| 1616 | XSET_HASH_TABLE c-src/emacs/src/lisp.h /^#define XSET_HASH_TABLE(VAR, PTR) \\$/ | ||
| 1617 | XSTRING c-src/emacs/src/lisp.h /^XSTRING (Lisp_Object a)$/ | ||
| 1618 | XSUBR c-src/emacs/src/lisp.h /^XSUBR (Lisp_Object a)$/ | ||
| 1619 | XSUB_CHAR_TABLE c-src/emacs/src/lisp.h /^XSUB_CHAR_TABLE (Lisp_Object a)$/ | ||
| 1620 | XSYMBOL c-src/emacs/src/lisp.h /^# define XSYMBOL(a) lisp_h_XSYMBOL (a)$/ | ||
| 1621 | XSYMBOL c-src/emacs/src/lisp.h /^XSYMBOL (Lisp_Object a)$/ | ||
| 1622 | XTERMINAL c-src/emacs/src/lisp.h /^XTERMINAL (Lisp_Object a)$/ | ||
| 1623 | XTYPE c-src/emacs/src/lisp.h /^# define XTYPE(a) lisp_h_XTYPE (a)$/ | ||
| 1624 | XTYPE c-src/emacs/src/lisp.h /^XTYPE (Lisp_Object a)$/ | ||
| 1625 | XUNTAG c-src/emacs/src/lisp.h /^# define XUNTAG(a, type) lisp_h_XUNTAG (a, type)$/ | ||
| 1626 | XUNTAG c-src/emacs/src/lisp.h /^XUNTAG (Lisp_Object a, int type)$/ | ||
| 1627 | XWINDOW c-src/emacs/src/lisp.h /^XWINDOW (Lisp_Object a)$/ | ||
| 1628 | XX cp-src/x.cc 1 | ||
| 1629 | Xyzzy ruby-src/test1.ru 13 | ||
| 1630 | Y c-src/h.h 100 | ||
| 1631 | YACC c-src/etags.c 2199 | ||
| 1632 | YELLOW cp-src/screen.hpp 26 | ||
| 1633 | YSRC make-src/Makefile /^YSRC=parse.y parse.c atest.y cccp.c cccp.y$/ | ||
| 1634 | YYABORT /usr/share/bison/bison.simple 154 | ||
| 1635 | YYACCEPT /usr/share/bison/bison.simple 153 | ||
| 1636 | YYBACKUP /usr/share/bison/bison.simple /^#define YYBACKUP(Token, Value) \\$/ | ||
| 1637 | YYBISON y-src/cccp.c 4 | ||
| 1638 | YYBISON y-src/parse.c 4 | ||
| 1639 | YYDPRINTF /usr/share/bison/bison.simple /^# define YYDPRINTF(Args) \\$/ | ||
| 1640 | YYDPRINTF /usr/share/bison/bison.simple /^# define YYDPRINTF(Args)$/ | ||
| 1641 | YYEMPTY /usr/share/bison/bison.simple 151 | ||
| 1642 | YYEOF /usr/share/bison/bison.simple 152 | ||
| 1643 | YYERRCODE /usr/share/bison/bison.simple 179 | ||
| 1644 | YYERROR /usr/share/bison/bison.simple 155 | ||
| 1645 | YYFAIL /usr/share/bison/bison.simple 159 | ||
| 1646 | YYFPRINTF /usr/share/bison/bison.simple 226 | ||
| 1647 | YYINITDEPTH /usr/share/bison/bison.simple 245 | ||
| 1648 | YYLEX /usr/share/bison/bison.simple 201 | ||
| 1649 | YYLEX /usr/share/bison/bison.simple 203 | ||
| 1650 | YYLEX /usr/share/bison/bison.simple 207 | ||
| 1651 | YYLEX /usr/share/bison/bison.simple 209 | ||
| 1652 | YYLEX /usr/share/bison/bison.simple 213 | ||
| 1653 | YYLLOC_DEFAULT /usr/share/bison/bison.simple /^# define YYLLOC_DEFAULT(Current, Rhs, N) \\$/ | ||
| 1654 | YYMAXDEPTH /usr/share/bison/bison.simple 256 | ||
| 1655 | YYMAXDEPTH /usr/share/bison/bison.simple 260 | ||
| 1656 | YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 351 | ||
| 1657 | YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 354 | ||
| 1658 | YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 358 | ||
| 1659 | YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 352 | ||
| 1660 | YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 355 | ||
| 1661 | YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 359 | ||
| 1662 | YYPOPSTACK /usr/share/bison/bison.simple 445 | ||
| 1663 | YYPOPSTACK /usr/share/bison/bison.simple 447 | ||
| 1664 | YYRECOVERING /usr/share/bison/bison.simple /^#define YYRECOVERING() (!!yyerrstatus)$/ | ||
| 1665 | YYSIZE_T /usr/share/bison/bison.simple 129 | ||
| 1666 | YYSIZE_T /usr/share/bison/bison.simple 132 | ||
| 1667 | YYSIZE_T /usr/share/bison/bison.simple 137 | ||
| 1668 | YYSIZE_T /usr/share/bison/bison.simple 141 | ||
| 1669 | YYSIZE_T /usr/share/bison/bison.simple 146 | ||
| 1670 | YYSIZE_T /usr/share/bison/bison.simple 52 | ||
| 1671 | YYSIZE_T /usr/share/bison/bison.simple 57 | ||
| 1672 | YYSIZE_T /usr/share/bison/bison.simple 72 | ||
| 1673 | YYSIZE_T /usr/share/bison/bison.simple 76 | ||
| 1674 | YYSTACK_ALLOC /usr/share/bison/bison.simple 51 | ||
| 1675 | YYSTACK_ALLOC /usr/share/bison/bison.simple 56 | ||
| 1676 | YYSTACK_ALLOC /usr/share/bison/bison.simple 60 | ||
| 1677 | YYSTACK_ALLOC /usr/share/bison/bison.simple 79 | ||
| 1678 | YYSTACK_BYTES /usr/share/bison/bison.simple /^# define YYSTACK_BYTES(N) \\$/ | ||
| 1679 | YYSTACK_FREE /usr/share/bison/bison.simple /^# define YYSTACK_FREE(Ptr) do { \/* empty *\/; } wh/ | ||
| 1680 | YYSTACK_FREE /usr/share/bison/bison.simple 80 | ||
| 1681 | YYSTACK_GAP_MAX /usr/share/bison/bison.simple 94 | ||
| 1682 | YYSTACK_RELOCATE /usr/share/bison/bison.simple /^# define YYSTACK_RELOCATE(Type, Stack) \\$/ | ||
| 1683 | YYSTACK_RELOCATE /usr/share/bison/bison.simple 548 | ||
| 1684 | YYSTD /usr/share/bison/bison.simple /^# define YYSTD(x) std::x$/ | ||
| 1685 | YYSTD /usr/share/bison/bison.simple /^# define YYSTD(x) x$/ | ||
| 1686 | YYSTYPE y-src/parse.y 72 | ||
| 1687 | YYSTYPE y-src/parse.y 73 | ||
| 1688 | YYTERROR /usr/share/bison/bison.simple 178 | ||
| 1689 | YY_DECL_NON_LSP_VARIABLES /usr/share/bison/bison.simple 374 | ||
| 1690 | YY_DECL_VARIABLES /usr/share/bison/bison.simple 385 | ||
| 1691 | YY_DECL_VARIABLES /usr/share/bison/bison.simple 391 | ||
| 1692 | Yacc_entries c-src/etags.c /^Yacc_entries (FILE *inf)$/ | ||
| 1693 | Yacc_help c-src/etags.c 693 | ||
| 1694 | Yacc_suffixes c-src/etags.c 691 | ||
| 1695 | Yappendixletterandtype tex-src/texinfo.tex /^\\def\\Yappendixletterandtype{%$/ | ||
| 1696 | Ynothing tex-src/texinfo.tex /^\\def\\Ynothing{}$/ | ||
| 1697 | Ypagenumber tex-src/texinfo.tex /^\\def\\Ypagenumber{\\folio}$/ | ||
| 1698 | Ysectionnumberandtype tex-src/texinfo.tex /^\\def\\Ysectionnumberandtype{%$/ | ||
| 1699 | Ytitle tex-src/texinfo.tex /^\\def\\Ytitle{\\thischapter}$/ | ||
| 1700 | Z c-src/h.h 100 | ||
| 1701 | [ tex-src/texinfo.tex /^\\gdef\\boldbrax{\\let(=\\opnr\\let)=\\clnr\\let[=\\lbrb\\l/ | ||
| 1702 | [] ruby-src/test.rb /^ def [](y)$/ | ||
| 1703 | []= ruby-src/test.rb /^ def []=(y, val)$/ | ||
| 1704 | ] tex-src/texinfo.tex /^\\gdef\\boldbrax{\\let(=\\opnr\\let)=\\clnr\\let[=\\lbrb\\l/ | ||
| 1705 | ^ tex-src/texinfo.tex /^\\def^{{\\tt \\hat}}$/ | ||
| 1706 | ^ tex-src/texinfo.tex /^\\let^=\\normalcaret$/ | ||
| 1707 | _ tex-src/texinfo.tex /^\\def\\_{\\lvvmode \\kern.06em \\vbox{\\hrule width.3em / | ||
| 1708 | _ tex-src/texinfo.tex /^\\def\\_{{\\realbackslash _}}%$/ | ||
| 1709 | _ tex-src/texinfo.tex /^\\def_{\\ifusingtt\\normalunderscore\\_}$/ | ||
| 1710 | _ tex-src/texinfo.tex /^\\let_=\\normalunderscore$/ | ||
| 1711 | _GETOPT_H c-src/getopt.h 19 | ||
| 1712 | _GNU_SOURCE c-src/etags.c 94 | ||
| 1713 | _REGEX_H c-src/emacs/src/regex.h 21 | ||
| 1714 | _RE_SYNTAX_POSIX_COMMON c-src/emacs/src/regex.h 221 | ||
| 1715 | _Restrict_ c-src/emacs/src/regex.h 540 | ||
| 1716 | _Restrict_ c-src/emacs/src/regex.h 542 | ||
| 1717 | _Restrict_ c-src/emacs/src/regex.h 544 | ||
| 1718 | _Restrict_arr_ c-src/emacs/src/regex.h 555 | ||
| 1719 | _Restrict_arr_ c-src/emacs/src/regex.h 557 | ||
| 1720 | _UCHAR_T c-src/emacs/src/lisp.h 2423 | ||
| 1721 | __COLORS cp-src/screen.hpp 9 | ||
| 1722 | __default_morecore c-src/emacs/src/gmalloc.c /^__default_morecore (ptrdiff_t increment)$/ | ||
| 1723 | __init__ pyt-src/server.py /^ def __init__(self):$/ | ||
| 1724 | __init__ pyt-src/server.py /^ def __init__(self, Master, text, textvar, widt/ | ||
| 1725 | __init__ pyt-src/server.py /^ def __init__(self, host, sitelist, master=None/ | ||
| 1726 | __init__ pyt-src/server.py /^ def __init__(self, master=None):$/ | ||
| 1727 | __init__ pyt-src/server.py /^ def __init__(self, newlegend, list, editor, ma/ | ||
| 1728 | __init__ pyt-src/server.py /^ def __init__(self, user, userlist, master=None/ | ||
| 1729 | __ip c.c 159 | ||
| 1730 | __libc_atexit c-src/exit.c 30 | ||
| 1731 | __libc_atexit c-src/exit.strange_suffix 30 | ||
| 1732 | __malloc_extra_blocks c-src/emacs/src/gmalloc.c 382 | ||
| 1733 | __malloc_initialize c-src/emacs/src/gmalloc.c /^__malloc_initialize (void)$/ | ||
| 1734 | __malloc_initialized c-src/emacs/src/gmalloc.c 380 | ||
| 1735 | __repr__ pyt-src/server.py /^ def __repr__(self):$/ | ||
| 1736 | __sbrk c-src/emacs/src/gmalloc.c 1516 | ||
| 1737 | __str__ pyt-src/server.py /^ def __str__(self):$/ | ||
| 1738 | __up c.c 160 | ||
| 1739 | _aligned_blocks c-src/emacs/src/gmalloc.c 1006 | ||
| 1740 | _aligned_blocks_mutex c-src/emacs/src/gmalloc.c 519 | ||
| 1741 | _bar? ruby-src/test1.ru /^ def self._bar?(abc)$/ | ||
| 1742 | _bytes_free c-src/emacs/src/gmalloc.c 377 | ||
| 1743 | _bytes_used c-src/emacs/src/gmalloc.c 375 | ||
| 1744 | _chunks_free c-src/emacs/src/gmalloc.c 376 | ||
| 1745 | _chunks_used c-src/emacs/src/gmalloc.c 374 | ||
| 1746 | _fraghead c-src/emacs/src/gmalloc.c 371 | ||
| 1747 | _free c-src/emacs/src/gmalloc.c /^_free (void *ptr)$/ | ||
| 1748 | _free_internal c-src/emacs/src/gmalloc.c /^_free_internal (void *ptr)$/ | ||
| 1749 | _free_internal_nolock c-src/emacs/src/gmalloc.c /^_free_internal_nolock (void *ptr)$/ | ||
| 1750 | _heapbase c-src/emacs/src/gmalloc.c 356 | ||
| 1751 | _heapindex c-src/emacs/src/gmalloc.c 365 | ||
| 1752 | _heapinfo c-src/emacs/src/gmalloc.c 359 | ||
| 1753 | _heaplimit c-src/emacs/src/gmalloc.c 368 | ||
| 1754 | _malloc c-src/emacs/src/gmalloc.c /^_malloc (size_t size)$/ | ||
| 1755 | _malloc_internal c-src/emacs/src/gmalloc.c /^_malloc_internal (size_t size)$/ | ||
| 1756 | _malloc_internal_nolock c-src/emacs/src/gmalloc.c /^_malloc_internal_nolock (size_t size)$/ | ||
| 1757 | _malloc_mutex c-src/emacs/src/gmalloc.c 518 | ||
| 1758 | _malloc_thread_enabled_p c-src/emacs/src/gmalloc.c 520 | ||
| 1759 | _realloc c-src/emacs/src/gmalloc.c /^_realloc (void *ptr, size_t size)$/ | ||
| 1760 | _realloc_internal c-src/emacs/src/gmalloc.c /^_realloc_internal (void *ptr, size_t size)$/ | ||
| 1761 | _realloc_internal_nolock c-src/emacs/src/gmalloc.c /^_realloc_internal_nolock (void *ptr, size_t size)$/ | ||
| 1762 | ` ruby-src/test.rb /^ def `(command)$/ | ||
| 1763 | ` tex-src/texinfo.tex /^\\def\\`{{`}}$/ | ||
| 1764 | a c-src/h.h 103 | ||
| 1765 | a c-src/h.h 40 | ||
| 1766 | a c.c /^a ()$/ | ||
| 1767 | a c.c /^a()$/ | ||
| 1768 | a c.c 152 | ||
| 1769 | a c.c 180 | ||
| 1770 | a cp-src/c.C 132 | ||
| 1771 | a ruby-src/test1.ru /^ def a()$/ | ||
| 1772 | a-forth-constant! forth-src/test-forth.fth /^99 constant a-forth-constant!$/ | ||
| 1773 | a-forth-value? forth-src/test-forth.fth /^55 value a-forth-value?$/ | ||
| 1774 | a-forth-word forth-src/test-forth.fth /^: a-forth-word ( a b c -- )$/ | ||
| 1775 | a-forth-word forth-src/test-forth.fth /^: a-forth-word ( a b c -- a*b+c ) + * ;$/ | ||
| 1776 | a0 c-src/emacs/src/lisp.h /^ Lisp_Object (*a0) (void);$/ | 37 | a0 c-src/emacs/src/lisp.h /^ Lisp_Object (*a0) (void);$/ |
| 1777 | a1 c-src/emacs/src/lisp.h /^ Lisp_Object (*a1) (Lisp_Object);$/ | 38 | a1 c-src/emacs/src/lisp.h /^ Lisp_Object (*a1) (Lisp_Object);$/ |
| 1778 | a2 c-src/emacs/src/lisp.h /^ Lisp_Object (*a2) (Lisp_Object, Lisp_Object)/ | 39 | a2 c-src/emacs/src/lisp.h /^ Lisp_Object (*a2) (Lisp_Object, Lisp_Object)/ |
| @@ -1782,38 +43,44 @@ a5 c-src/emacs/src/lisp.h /^ Lisp_Object (*a5) (Lisp_Object, Lisp_Object,/ | |||
| 1782 | a6 c-src/emacs/src/lisp.h /^ Lisp_Object (*a6) (Lisp_Object, Lisp_Object,/ | 43 | a6 c-src/emacs/src/lisp.h /^ Lisp_Object (*a6) (Lisp_Object, Lisp_Object,/ |
| 1783 | a7 c-src/emacs/src/lisp.h /^ Lisp_Object (*a7) (Lisp_Object, Lisp_Object,/ | 44 | a7 c-src/emacs/src/lisp.h /^ Lisp_Object (*a7) (Lisp_Object, Lisp_Object,/ |
| 1784 | a8 c-src/emacs/src/lisp.h /^ Lisp_Object (*a8) (Lisp_Object, Lisp_Object,/ | 45 | a8 c-src/emacs/src/lisp.h /^ Lisp_Object (*a8) (Lisp_Object, Lisp_Object,/ |
| 1785 | aMANY c-src/emacs/src/lisp.h /^ Lisp_Object (*aMANY) (ptrdiff_t, Lisp_Object/ | 46 | aaaaaa c-src/h.h 111 |
| 1786 | aUNEVALLED c-src/emacs/src/lisp.h /^ Lisp_Object (*aUNEVALLED) (Lisp_Object args)/ | ||
| 1787 | aa c.c 269 | ||
| 1788 | aa c.c 279 | ||
| 1789 | aaa c.c 249 | 47 | aaa c.c 249 |
| 1790 | aaa c.c 269 | 48 | aaa c.c 269 |
| 1791 | aaaaaa c-src/h.h 111 | 49 | aa c.c 269 |
| 1792 | abbrev-expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/ | 50 | aa c.c 279 |
| 1793 | abbrev-symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/ | ||
| 1794 | abbrev_all_caps c-src/abbrev.c 58 | 51 | abbrev_all_caps c-src/abbrev.c 58 |
| 52 | abbrev-expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/ | ||
| 1795 | abbrevs_changed c-src/abbrev.c 56 | 53 | abbrevs_changed c-src/abbrev.c 56 |
| 54 | abbrev-symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/ | ||
| 1796 | abc c-src/h.h 33 | 55 | abc c-src/h.h 33 |
| 1797 | abc c-src/h.h 37 | 56 | abc c-src/h.h 37 |
| 57 | ABC ruby-src/test1.ru 11 | ||
| 58 | Abort_Handler_Pointer/t ada-src/2ataspri.ads /^ type Abort_Handler_Pointer is access procedure / | ||
| 1798 | abort-recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("abort-recursive-edit", Fabort_recursive_ed/ | 59 | abort-recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("abort-recursive-edit", Fabort_recursive_ed/ |
| 60 | Abort_Task/p ada-src/2ataspri.adb /^ procedure Abort_Task (T : TCB_Ptr) is$/ | ||
| 61 | Abort_Task/p ada-src/2ataspri.ads /^ procedure Abort_Task (T : TCB_Ptr);$/ | ||
| 62 | Abort_Wrapper/p ada-src/2ataspri.adb /^ procedure Abort_Wrapper$/ | ||
| 1799 | aboveenvbreak tex-src/texinfo.tex /^\\def\\aboveenvbreak{{\\advance\\aboveenvskipamount by/ | 63 | aboveenvbreak tex-src/texinfo.tex /^\\def\\aboveenvbreak{{\\advance\\aboveenvskipamount by/ |
| 1800 | abs/f ada-src/etags-test-for.ada /^ function "abs" (Right : Complex) return Real'/ | 64 | abs/f ada-src/etags-test-for.ada /^ function "abs" (Right : Complex) return Real'/ |
| 1801 | absolute_dirname c-src/etags.c /^absolute_dirname (char *file, char *dir)$/ | 65 | absolute_dirname c-src/etags.c /^absolute_dirname (char *file, char *dir)$/ |
| 1802 | absolute_filename c-src/etags.c /^absolute_filename (char *file, char *dir)$/ | 66 | absolute_filename c-src/etags.c /^absolute_filename (char *file, char *dir)$/ |
| 1803 | abt cp-src/c.C 55 | 67 | abt cp-src/c.C 55 |
| 1804 | acc_pred_info merc-src/accumulator.m /^:- pred acc_pred_info(list(mer_type)::in, list(pro/ | 68 | a c.c 152 |
| 1805 | acc_proc_info merc-src/accumulator.m /^:- pred acc_proc_info(list(prog_var)::in, prog_var/ | 69 | A c.c 162 |
| 1806 | acc_unification merc-src/accumulator.m /^:- pred acc_unification(pair(prog_var)::in, hlds_g/ | 70 | a c.c 180 |
| 1807 | acc_var_subst_init merc-src/accumulator.m /^:- pred acc_var_subst_init(list(prog_var)::in,$/ | 71 | a c.c /^a ()$/ |
| 72 | a c.c /^a()$/ | ||
| 1808 | accent_key_syms c-src/emacs/src/keyboard.c 4625 | 73 | accent_key_syms c-src/emacs/src/keyboard.c 4625 |
| 1809 | access_keymap_keyremap c-src/emacs/src/keyboard.c /^access_keymap_keyremap (Lisp_Object map, Lisp_Obje/ | 74 | access_keymap_keyremap c-src/emacs/src/keyboard.c /^access_keymap_keyremap (Lisp_Object map, Lisp_Obje/ |
| 75 | acc_pred_info merc-src/accumulator.m /^:- pred acc_pred_info(list(mer_type)::in, list(pro/ | ||
| 76 | acc_proc_info merc-src/accumulator.m /^:- pred acc_proc_info(list(prog_var)::in, prog_var/ | ||
| 1810 | accu_assoc merc-src/accumulator.m /^:- pred accu_assoc(module_info::in, vartypes::in, / | 77 | accu_assoc merc-src/accumulator.m /^:- pred accu_assoc(module_info::in, vartypes::in, / |
| 1811 | accu_assoc merc-src/accumulator.m /^:- type accu_assoc$/ | 78 | accu_assoc merc-src/accumulator.m /^:- type accu_assoc$/ |
| 1812 | accu_base merc-src/accumulator.m /^:- type accu_base$/ | 79 | accu_base merc-src/accumulator.m /^:- type accu_base$/ |
| 1813 | accu_before merc-src/accumulator.m /^:- pred accu_before(module_info::in, vartypes::in,/ | 80 | accu_before merc-src/accumulator.m /^:- pred accu_before(module_info::in, vartypes::in,/ |
| 1814 | accu_case merc-src/accumulator.m /^:- type accu_case$/ | 81 | accu_case merc-src/accumulator.m /^:- type accu_case$/ |
| 1815 | accu_construct merc-src/accumulator.m /^:- pred accu_construct(module_info::in, vartypes::/ | ||
| 1816 | accu_construct_assoc merc-src/accumulator.m /^:- pred accu_construct_assoc(module_info::in, vart/ | 82 | accu_construct_assoc merc-src/accumulator.m /^:- pred accu_construct_assoc(module_info::in, vart/ |
| 83 | accu_construct merc-src/accumulator.m /^:- pred accu_construct(module_info::in, vartypes::/ | ||
| 1817 | accu_create_goal merc-src/accumulator.m /^:- pred accu_create_goal(accu_goal_id::in, list(pr/ | 84 | accu_create_goal merc-src/accumulator.m /^:- pred accu_create_goal(accu_goal_id::in, list(pr/ |
| 1818 | accu_divide_base_case merc-src/accumulator.m /^:- pred accu_divide_base_case(module_info::in, var/ | 85 | accu_divide_base_case merc-src/accumulator.m /^:- pred accu_divide_base_case(module_info::in, var/ |
| 1819 | accu_goal_id merc-src/accumulator.m /^:- type accu_goal_id$/ | 86 | accu_goal_id merc-src/accumulator.m /^:- type accu_goal_id$/ |
| @@ -1823,83 +90,120 @@ accu_has_heuristic merc-src/accumulator.m /^:- pred accu_has_heuristic(module_na | |||
| 1823 | accu_heuristic merc-src/accumulator.m /^:- pred accu_heuristic(module_name::in, string::in/ | 90 | accu_heuristic merc-src/accumulator.m /^:- pred accu_heuristic(module_name::in, string::in/ |
| 1824 | accu_is_associative merc-src/accumulator.m /^:- pred accu_is_associative(module_info::in, pred_/ | 91 | accu_is_associative merc-src/accumulator.m /^:- pred accu_is_associative(module_info::in, pred_/ |
| 1825 | accu_is_update merc-src/accumulator.m /^:- pred accu_is_update(module_info::in, pred_id::i/ | 92 | accu_is_update merc-src/accumulator.m /^:- pred accu_is_update(module_info::in, pred_id::i/ |
| 93 | acc_unification merc-src/accumulator.m /^:- pred acc_unification(pair(prog_var)::in, hlds_g/ | ||
| 1826 | accu_process_assoc_set merc-src/accumulator.m /^:- pred accu_process_assoc_set(module_info::in, ac/ | 94 | accu_process_assoc_set merc-src/accumulator.m /^:- pred accu_process_assoc_set(module_info::in, ac/ |
| 1827 | accu_process_update_set merc-src/accumulator.m /^:- pred accu_process_update_set(module_info::in, a/ | 95 | accu_process_update_set merc-src/accumulator.m /^:- pred accu_process_update_set(module_info::in, a/ |
| 1828 | accu_related merc-src/accumulator.m /^:- pred accu_related(module_info::in, vartypes::in/ | 96 | accu_related merc-src/accumulator.m /^:- pred accu_related(module_info::in, vartypes::in/ |
| 1829 | accu_rename merc-src/accumulator.m /^:- func accu_rename(list(accu_goal_id), accu_subst/ | 97 | accu_rename merc-src/accumulator.m /^:- func accu_rename(list(accu_goal_id), accu_subst/ |
| 1830 | accu_sets merc-src/accumulator.m /^:- type accu_sets$/ | ||
| 1831 | accu_sets_init merc-src/accumulator.m /^:- pred accu_sets_init(accu_sets::out) is det.$/ | 98 | accu_sets_init merc-src/accumulator.m /^:- pred accu_sets_init(accu_sets::out) is det.$/ |
| 1832 | accu_stage1 merc-src/accumulator.m /^:- pred accu_stage1(module_info::in, vartypes::in,/ | 99 | accu_sets merc-src/accumulator.m /^:- type accu_sets$/ |
| 1833 | accu_stage1_2 merc-src/accumulator.m /^:- pred accu_stage1_2(module_info::in, vartypes::i/ | 100 | accu_stage1_2 merc-src/accumulator.m /^:- pred accu_stage1_2(module_info::in, vartypes::i/ |
| 101 | accu_stage1 merc-src/accumulator.m /^:- pred accu_stage1(module_info::in, vartypes::in,/ | ||
| 1834 | accu_stage2 merc-src/accumulator.m /^:- pred accu_stage2(module_info::in, proc_info::in/ | 102 | accu_stage2 merc-src/accumulator.m /^:- pred accu_stage2(module_info::in, proc_info::in/ |
| 1835 | accu_stage3 merc-src/accumulator.m /^:- pred accu_stage3(accu_goal_id::in, list(prog_va/ | 103 | accu_stage3 merc-src/accumulator.m /^:- pred accu_stage3(accu_goal_id::in, list(prog_va/ |
| 1836 | accu_standardize merc-src/accumulator.m /^:- pred accu_standardize(hlds_goal::in, hlds_goal:/ | 104 | accu_standardize merc-src/accumulator.m /^:- pred accu_standardize(hlds_goal::in, hlds_goal:/ |
| 1837 | accu_store merc-src/accumulator.m /^:- pred accu_store(accu_case::in, hlds_goal::in,$/ | 105 | accu_store merc-src/accumulator.m /^:- pred accu_store(accu_case::in, hlds_goal::in,$/ |
| 1838 | accu_subst merc-src/accumulator.m /^:- type accu_subst == map(prog_var, prog_var).$/ | 106 | accu_subst merc-src/accumulator.m /^:- type accu_subst == map(prog_var, prog_var).$/ |
| 1839 | accu_substs merc-src/accumulator.m /^:- type accu_substs$/ | ||
| 1840 | accu_substs_init merc-src/accumulator.m /^:- pred accu_substs_init(list(prog_var)::in, prog_/ | 107 | accu_substs_init merc-src/accumulator.m /^:- pred accu_substs_init(list(prog_var)::in, prog_/ |
| 108 | accu_substs merc-src/accumulator.m /^:- type accu_substs$/ | ||
| 1841 | accu_top_level merc-src/accumulator.m /^:- pred accu_top_level(top_level::in, hlds_goal::i/ | 109 | accu_top_level merc-src/accumulator.m /^:- pred accu_top_level(top_level::in, hlds_goal::i/ |
| 1842 | accu_transform_proc merc-src/accumulator.m /^:- pred accu_transform_proc(pred_proc_id::in, pred/ | 110 | accu_transform_proc merc-src/accumulator.m /^:- pred accu_transform_proc(pred_proc_id::in, pred/ |
| 1843 | accu_update merc-src/accumulator.m /^:- pred accu_update(module_info::in, vartypes::in,/ | 111 | accu_update merc-src/accumulator.m /^:- pred accu_update(module_info::in, vartypes::in,/ |
| 1844 | accu_warning merc-src/accumulator.m /^:- type accu_warning$/ | 112 | accu_warning merc-src/accumulator.m /^:- type accu_warning$/ |
| 1845 | act prol-src/natded.prolog /^act(OutForm,OutSyn,Ws):-$/ | 113 | acc_var_subst_init merc-src/accumulator.m /^:- pred acc_var_subst_init(list(prog_var)::in,$/ |
| 114 | /Acircumflex ps-src/rfc1245.ps /^\/Acircumflex \/Ecircumflex \/Aacute \/Edieresis \/Egra/ | ||
| 115 | A cp-src/c.C 117 | ||
| 116 | a cp-src/c.C 132 | ||
| 117 | A cp-src/c.C 39 | ||
| 118 | A cp-src/c.C 56 | ||
| 119 | A cp-src/c.C 57 | ||
| 120 | A cp-src/c.C 73 | ||
| 121 | ~A cp-src/c.C /^A::~A() {}$/ | ||
| 122 | A cp-src/c.C /^void A::A() {}$/ | ||
| 123 | A cp-src/fail.C 23 | ||
| 124 | A cp-src/fail.C 7 | ||
| 125 | a c-src/h.h 103 | ||
| 126 | a c-src/h.h 40 | ||
| 1846 | action prol-src/natded.prolog /^action(KeyVals):-$/ | 127 | action prol-src/natded.prolog /^action(KeyVals):-$/ |
| 1847 | active_maps c-src/emacs/src/keyboard.c /^active_maps (Lisp_Object first_event)$/ | ||
| 1848 | activedoublequote tex-src/texinfo.tex /^\\def\\activedoublequote{{\\tt \\char '042}}$/ | 128 | activedoublequote tex-src/texinfo.tex /^\\def\\activedoublequote{{\\tt \\char '042}}$/ |
| 129 | active_maps c-src/emacs/src/keyboard.c /^active_maps (Lisp_Object first_event)$/ | ||
| 1849 | activeparens tex-src/texinfo.tex /^\\def\\activeparens{%$/ | 130 | activeparens tex-src/texinfo.tex /^\\def\\activeparens{%$/ |
| 1850 | actout prol-src/natded.prolog /^actout('Text',Trees):-$/ | 131 | actout prol-src/natded.prolog /^actout('Text',Trees):-$/ |
| 1851 | addArchs objc-src/PackInsp.m /^-(void)addArchs:(const char *)string$/ | 132 | act prol-src/natded.prolog /^act(OutForm,OutSyn,Ws):-$/ |
| 1852 | addPOReader php-src/lce_functions.php /^ function addPOReader($d_name, &$por)$/ | 133 | Ada_funcs c-src/etags.c /^Ada_funcs (FILE *inf)$/ |
| 134 | Ada_getit c-src/etags.c /^Ada_getit (FILE *inf, const char *name_qualifier)$/ | ||
| 135 | Ada_help c-src/etags.c 475 | ||
| 136 | ADASRC make-src/Makefile /^ADASRC=etags-test-for.ada 2ataspri.adb 2ataspri.ad/ | ||
| 137 | Ada_suffixes c-src/etags.c 473 | ||
| 1853 | add_active prol-src/natded.prolog /^add_active([],Cat,Goal):-$/ | 138 | add_active prol-src/natded.prolog /^add_active([],Cat,Goal):-$/ |
| 139 | addArchs objc-src/PackInsp.m /^-(void)addArchs:(const char *)string$/ | ||
| 1854 | add_command_key c-src/emacs/src/keyboard.c /^add_command_key (Lisp_Object key)$/ | 140 | add_command_key c-src/emacs/src/keyboard.c /^add_command_key (Lisp_Object key)$/ |
| 1855 | add_edge prol-src/natded.prolog /^add_edge(Left,Right,Cat):-$/ | 141 | add_edge prol-src/natded.prolog /^add_edge(Left,Right,Cat):-$/ |
| 1856 | add_node c-src/etags.c /^add_node (node *np, node **cur_node_p)$/ | 142 | add_node c-src/etags.c /^add_node (node *np, node **cur_node_p)$/ |
| 1857 | add_regex c-src/etags.c /^add_regex (char *regexp_pattern, language *lang)$/ | ||
| 1858 | add_user_signal c-src/emacs/src/keyboard.c /^add_user_signal (int sig, const char *name)$/ | ||
| 1859 | addnoise html-src/algrthms.html /^Adding Noise to the$/ | 143 | addnoise html-src/algrthms.html /^Adding Noise to the$/ |
| 144 | AddNullToNmStr pas-src/common.pas /^function AddNullToNmStr; (*($/ | ||
| 145 | addPOReader php-src/lce_functions.php /^ function addPOReader($d_name, &$por)$/ | ||
| 146 | add_regex c-src/etags.c /^add_regex (char *regexp_pattern, language *lang)$/ | ||
| 147 | ADDRESS c-src/emacs/src/gmalloc.c /^#define ADDRESS(B) ((void *) (((B) - 1) * BLOCKSIZ/ | ||
| 148 | Address_To_Call_State/f ada-src/2ataspri.adb /^ function Address_To_Call_State is new$/ | ||
| 149 | Address_To_TCB_Ptr/f ada-src/2ataspri.ads /^ function Address_To_TCB_Ptr is new$/ | ||
| 1860 | address y-src/cccp.y 113 | 150 | address y-src/cccp.y 113 |
| 151 | add_user_signal c-src/emacs/src/keyboard.c /^add_user_signal (int sig, const char *name)$/ | ||
| 152 | #a-defer-word forth-src/test-forth.fth /^defer #a-defer-word$/ | ||
| 1861 | adjust_point_for_property c-src/emacs/src/keyboard.c /^adjust_point_for_property (ptrdiff_t last_pt, bool/ | 153 | adjust_point_for_property c-src/emacs/src/keyboard.c /^adjust_point_for_property (ptrdiff_t last_pt, bool/ |
| 154 | Advanced usage tex-src/gzip.texi /^@node Advanced usage, Environment, Invoking gzip, / | ||
| 155 | a-forth-constant! forth-src/test-forth.fth /^99 constant a-forth-constant!$/ | ||
| 156 | (a-forth-constant forth-src/test-forth.fth /^constant (a-forth-constant$/ | ||
| 157 | :a-forth-dictionary-entry forth-src/test-forth.fth /^create :a-forth-dictionary-entry$/ | ||
| 158 | a-forth-value? forth-src/test-forth.fth /^55 value a-forth-value?$/ | ||
| 159 | a-forth-word forth-src/test-forth.fth /^: a-forth-word ( a b c -- )$/ | ||
| 160 | a-forth-word forth-src/test-forth.fth /^: a-forth-word ( a b c -- a*b+c ) + * ;$/ | ||
| 1862 | afourpaper tex-src/texinfo.tex /^\\def\\afourpaper{$/ | 161 | afourpaper tex-src/texinfo.tex /^\\def\\afourpaper{$/ |
| 1863 | afterenvbreak tex-src/texinfo.tex /^\\def\\afterenvbreak{\\endgraf \\ifdim\\lastskip<\\above/ | 162 | afterenvbreak tex-src/texinfo.tex /^\\def\\afterenvbreak{\\endgraf \\ifdim\\lastskip<\\above/ |
| 1864 | agent cp-src/clheir.hpp 75 | 163 | agent cp-src/clheir.hpp 75 |
| 1865 | algorithms html-src/algrthms.html /^Description$/ | 164 | algorithms html-src/algrthms.html /^Description$/ |
| 1866 | alias c-src/emacs/src/lisp.h 688 | 165 | alias c-src/emacs/src/lisp.h 688 |
| 1867 | align c-src/emacs/src/gmalloc.c /^align (size_t size)$/ | ||
| 1868 | alignas c-src/emacs/src/lisp.h /^# define alignas(alignment) \/* empty *\/$/ | 166 | alignas c-src/emacs/src/lisp.h /^# define alignas(alignment) \/* empty *\/$/ |
| 1869 | aligned c-src/emacs/src/gmalloc.c 199 | 167 | align c-src/emacs/src/gmalloc.c /^align (size_t size)$/ |
| 1870 | aligned_alloc c-src/emacs/src/gmalloc.c /^aligned_alloc (size_t alignment, size_t size)$/ | 168 | aligned_alloc c-src/emacs/src/gmalloc.c 1725 |
| 1871 | aligned_alloc c-src/emacs/src/gmalloc.c 1722 | ||
| 1872 | aligned_alloc c-src/emacs/src/gmalloc.c 71 | 169 | aligned_alloc c-src/emacs/src/gmalloc.c 71 |
| 170 | aligned_alloc c-src/emacs/src/gmalloc.c /^aligned_alloc (size_t alignment, size_t size)$/ | ||
| 171 | _aligned_blocks c-src/emacs/src/gmalloc.c 1006 | ||
| 172 | _aligned_blocks_mutex c-src/emacs/src/gmalloc.c 519 | ||
| 173 | Aligned_Cons c-src/emacs/src/lisp.h 4670 | ||
| 174 | aligned c-src/emacs/src/gmalloc.c 199 | ||
| 175 | Aligned_String c-src/emacs/src/lisp.h 4676 | ||
| 1873 | alignlist c-src/emacs/src/gmalloc.c 196 | 176 | alignlist c-src/emacs/src/gmalloc.c 196 |
| 177 | ALIGNOF_STRUCT_LISP_VECTOR c-src/emacs/src/lisp.h 1378 | ||
| 1874 | alive cp-src/conway.hpp 7 | 178 | alive cp-src/conway.hpp 7 |
| 1875 | all_kboards c-src/emacs/src/keyboard.c 86 | 179 | all_kboards c-src/emacs/src/keyboard.c 86 |
| 1876 | allocate_kboard c-src/emacs/src/keyboard.c /^allocate_kboard (Lisp_Object type)$/ | 180 | ALLOCATED_BEFORE_DUMPING c-src/emacs/src/gmalloc.c /^#define ALLOCATED_BEFORE_DUMPING(P) \\$/ |
| 1877 | allocated c-src/emacs/src/regex.h 344 | 181 | allocated c-src/emacs/src/regex.h 344 |
| 182 | allocate_kboard c-src/emacs/src/keyboard.c /^allocate_kboard (Lisp_Object type)$/ | ||
| 183 | ALLOCATE_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define ALLOCATE_PSEUDOVECTOR(type, field, tag) / | ||
| 184 | ALLOCATE_ZEROED_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define ALLOCATE_ZEROED_PSEUDOVECTOR(type, field, / | ||
| 1878 | alphaenumerate tex-src/texinfo.tex /^\\def\\alphaenumerate{\\enumerate{a}}$/ | 185 | alphaenumerate tex-src/texinfo.tex /^\\def\\alphaenumerate{\\enumerate{a}}$/ |
| 186 | aMANY c-src/emacs/src/lisp.h /^ Lisp_Object (*aMANY) (ptrdiff_t, Lisp_Object/ | ||
| 1879 | ampnr tex-src/texinfo.tex /^\\def\\opnr{{\\sf\\char`\\(}} \\def\\clnr{{\\sf\\char`\\)}} / | 187 | ampnr tex-src/texinfo.tex /^\\def\\opnr{{\\sf\\char`\\(}} \\def\\clnr{{\\sf\\char`\\)}} / |
| 1880 | amprm tex-src/texinfo.tex /^\\gdef\\amprm#1 {{\\rm\\}\\let(=\\oprm \\let)=\\clrm\\ }/ | 188 | amprm tex-src/texinfo.tex /^\\gdef\\amprm#1 {{\\rm\\}\\let(=\\oprm \\let)=\\clrm\\ }/ |
| 189 | analyze_regex c-src/etags.c /^analyze_regex (char *regex_arg)$/ | ||
| 190 | andkeyvalseq prol-src/natded.prolog /^andkeyvalseq(KeyVals) --> ['&'], keyvalseq(KeyVals/ | ||
| 191 | AND y-src/cccp.c 11 | ||
| 1881 | an_extern_linkage c-src/h.h 44 | 192 | an_extern_linkage c-src/h.h 44 |
| 1882 | an_extern_linkage c-src/h.h 56 | 193 | an_extern_linkage c-src/h.h 56 |
| 1883 | an_extern_linkage_ptr c-src/h.h 43 | 194 | an_extern_linkage_ptr c-src/h.h 43 |
| 1884 | analyze_regex c-src/etags.c /^analyze_regex (char *regex_arg)$/ | ||
| 1885 | andkeyvalseq prol-src/natded.prolog /^andkeyvalseq(KeyVals) --> ['&'], keyvalseq(KeyVals/ | ||
| 1886 | animals c-src/h.h 81 | ||
| 1887 | animals cp-src/c.C 126 | 195 | animals cp-src/c.C 126 |
| 1888 | animals cp-src/c.C 130 | 196 | animals cp-src/c.C 130 |
| 197 | animals c-src/h.h 81 | ||
| 198 | (another-forth-word) forth-src/test-forth.fth /^: (another-forth-word) ( -- )$/ | ||
| 199 | ANSIC c-src/h.h 84 | ||
| 200 | ANSIC c-src/h.h 85 | ||
| 1889 | any_kboard_state c-src/emacs/src/keyboard.c /^any_kboard_state ()$/ | 201 | any_kboard_state c-src/emacs/src/keyboard.c /^any_kboard_state ()$/ |
| 1890 | appDidInit objcpp-src/SimpleCalc.M /^- appDidInit:sender$/ | 202 | appDidInit objcpp-src/SimpleCalc.M /^- appDidInit:sender$/ |
| 1891 | append prol-src/natded.prolog /^append([],Xs,Xs).$/ | ||
| 1892 | appendToDisplay objcpp-src/SimpleCalc.M /^- appendToDisplay:(const char *)theDigit$/ | ||
| 1893 | append_list prol-src/natded.prolog /^append_list([],[]).$/ | ||
| 1894 | append_string pas-src/common.pas /^procedure append_string;(*($/ | ||
| 1895 | append_tool_bar_item c-src/emacs/src/keyboard.c /^append_tool_bar_item (void)$/ | ||
| 1896 | appendix perl-src/htlmify-cystic 24 | ||
| 1897 | appendix tex-src/texinfo.tex /^\\let\\appendix=\\relax$/ | ||
| 1898 | appendix tex-src/texinfo.tex /^\\outer\\def\\appendix{\\parsearg\\appendixzzz}$/ | ||
| 1899 | appendix_name perl-src/htlmify-cystic 13 | ||
| 1900 | appendix_toc perl-src/htlmify-cystic 16 | ||
| 1901 | appendixletter tex-src/texinfo.tex /^\\def\\appendixletter{\\char\\the\\appendixno}$/ | 203 | appendixletter tex-src/texinfo.tex /^\\def\\appendixletter{\\char\\the\\appendixno}$/ |
| 204 | appendix_name perl-src/htlmify-cystic 13 | ||
| 1902 | appendixnoderef tex-src/texinfo.tex /^\\def\\appendixnoderef{\\ifx\\lastnode\\relax\\else$/ | 205 | appendixnoderef tex-src/texinfo.tex /^\\def\\appendixnoderef{\\ifx\\lastnode\\relax\\else$/ |
| 206 | appendix perl-src/htlmify-cystic 24 | ||
| 1903 | appendixsec tex-src/texinfo.tex /^\\let\\appendixsec=\\relax$/ | 207 | appendixsec tex-src/texinfo.tex /^\\let\\appendixsec=\\relax$/ |
| 1904 | appendixsec tex-src/texinfo.tex /^\\outer\\def\\appendixsec{\\parsearg\\appendixsectionzz/ | 208 | appendixsec tex-src/texinfo.tex /^\\outer\\def\\appendixsec{\\parsearg\\appendixsectionzz/ |
| 1905 | appendixsection tex-src/texinfo.tex /^\\let\\appendixsection=\\relax$/ | 209 | appendixsection tex-src/texinfo.tex /^\\let\\appendixsection=\\relax$/ |
| @@ -1914,15 +218,25 @@ appendixsubsubsec tex-src/texinfo.tex /^\\let\\appendixsubsubsec=\\relax$/ | |||
| 1914 | appendixsubsubsec tex-src/texinfo.tex /^\\outer\\def\\appendixsubsubsec{\\parsearg\\appendixsub/ | 218 | appendixsubsubsec tex-src/texinfo.tex /^\\outer\\def\\appendixsubsubsec{\\parsearg\\appendixsub/ |
| 1915 | appendixsubsubsection tex-src/texinfo.tex /^\\let\\appendixsubsubsection=\\relax$/ | 219 | appendixsubsubsection tex-src/texinfo.tex /^\\let\\appendixsubsubsection=\\relax$/ |
| 1916 | appendixsubsubseczzz tex-src/texinfo.tex /^\\def\\appendixsubsubseczzz #1{\\seccheck{appendixsub/ | 220 | appendixsubsubseczzz tex-src/texinfo.tex /^\\def\\appendixsubsubseczzz #1{\\seccheck{appendixsub/ |
| 221 | appendix tex-src/texinfo.tex /^\\let\\appendix=\\relax$/ | ||
| 222 | appendix tex-src/texinfo.tex /^\\outer\\def\\appendix{\\parsearg\\appendixzzz}$/ | ||
| 223 | appendix_toc perl-src/htlmify-cystic 16 | ||
| 1917 | appendixzzz tex-src/texinfo.tex /^\\def\\appendixzzz #1{\\seccheck{appendix}%$/ | 224 | appendixzzz tex-src/texinfo.tex /^\\def\\appendixzzz #1{\\seccheck{appendix}%$/ |
| 225 | append_list prol-src/natded.prolog /^append_list([],[]).$/ | ||
| 226 | append prol-src/natded.prolog /^append([],Xs,Xs).$/ | ||
| 227 | append_string pas-src/common.pas /^procedure append_string;(*($/ | ||
| 228 | AppendTextString pas-src/common.pas /^function AppendTextString;(*($/ | ||
| 229 | appendToDisplay objcpp-src/SimpleCalc.M /^- appendToDisplay:(const char *)theDigit$/ | ||
| 230 | append_tool_bar_item c-src/emacs/src/keyboard.c /^append_tool_bar_item (void)$/ | ||
| 1918 | apply_modifiers c-src/emacs/src/keyboard.c /^apply_modifiers (int modifiers, Lisp_Object base)$/ | 231 | apply_modifiers c-src/emacs/src/keyboard.c /^apply_modifiers (int modifiers, Lisp_Object base)$/ |
| 1919 | apply_modifiers_uncached c-src/emacs/src/keyboard.c /^apply_modifiers_uncached (int modifiers, char *bas/ | 232 | apply_modifiers_uncached c-src/emacs/src/keyboard.c /^apply_modifiers_uncached (int modifiers, char *bas/ |
| 233 | /A ps-src/rfc1245.ps /^\/A { $/ | ||
| 1920 | aref_addr c-src/emacs/src/lisp.h /^aref_addr (Lisp_Object array, ptrdiff_t idx)$/ | 234 | aref_addr c-src/emacs/src/lisp.h /^aref_addr (Lisp_Object array, ptrdiff_t idx)$/ |
| 235 | AREF c-src/emacs/src/lisp.h /^AREF (Lisp_Object array, ptrdiff_t idx)$/ | ||
| 1921 | arg c-src/emacs/src/lisp.h 2961 | 236 | arg c-src/emacs/src/lisp.h 2961 |
| 1922 | arg c-src/emacs/src/lisp.h 2966 | 237 | arg c-src/emacs/src/lisp.h 2966 |
| 1923 | arg c-src/emacs/src/lisp.h 2971 | 238 | arg c-src/emacs/src/lisp.h 2971 |
| 1924 | arg c-src/h.h 13 | 239 | arg c-src/h.h 13 |
| 1925 | arg_type c-src/etags.c 250 | ||
| 1926 | arglist y-src/cccp.y 41 | 240 | arglist y-src/cccp.y 41 |
| 1927 | argno y-src/cccp.y 45 | 241 | argno y-src/cccp.y 45 |
| 1928 | args c-src/emacs/src/lisp.h 2986 | 242 | args c-src/emacs/src/lisp.h 2986 |
| @@ -1930,88 +244,165 @@ args c-src/h.h 30 | |||
| 1930 | argsindent tex-src/texinfo.tex /^\\dimen1=\\hsize \\advance \\dimen1 by -\\defargsindent/ | 244 | argsindent tex-src/texinfo.tex /^\\dimen1=\\hsize \\advance \\dimen1 by -\\defargsindent/ |
| 1931 | argsindent tex-src/texinfo.tex /^\\newskip\\defargsindent \\defargsindent=50pt$/ | 245 | argsindent tex-src/texinfo.tex /^\\newskip\\defargsindent \\defargsindent=50pt$/ |
| 1932 | argsindent tex-src/texinfo.tex /^\\parshape 2 0in \\dimen0 \\defargsindent \\dimen1 / | 246 | argsindent tex-src/texinfo.tex /^\\parshape 2 0in \\dimen0 \\defargsindent \\dimen1 / |
| 247 | ARGS make-src/Makefile /^ARGS=- < srclist$/ | ||
| 248 | arg_type c-src/etags.c 250 | ||
| 1933 | argument c-src/etags.c 253 | 249 | argument c-src/etags.c 253 |
| 1934 | argvals prol-src/natded.prolog /^argvals([]) --> [].$/ | 250 | argvals prol-src/natded.prolog /^argvals([]) --> [].$/ |
| 251 | Arith_Comparison c-src/emacs/src/lisp.h 3497 | ||
| 252 | ARITH_EQUAL c-src/emacs/src/lisp.h 3498 | ||
| 253 | ARITH_GRTR c-src/emacs/src/lisp.h 3501 | ||
| 254 | ARITH_GRTR_OR_EQUAL c-src/emacs/src/lisp.h 3503 | ||
| 255 | ARITH_LESS c-src/emacs/src/lisp.h 3500 | ||
| 256 | ARITH_LESS_OR_EQUAL c-src/emacs/src/lisp.h 3502 | ||
| 257 | ARITH_NOTEQUAL c-src/emacs/src/lisp.h 3499 | ||
| 1935 | array c.c 190 | 258 | array c.c 190 |
| 259 | ARRAYELTS c-src/emacs/src/lisp.h /^#define ARRAYELTS(arr) (sizeof (arr) \/ sizeof (arr/ | ||
| 260 | ARRAY_MARK_FLAG c-src/emacs/src/lisp.h 768 | ||
| 261 | ARRAYP c-src/emacs/src/lisp.h /^ARRAYP (Lisp_Object x)$/ | ||
| 262 | A ruby-src/test1.ru /^class A$/ | ||
| 263 | a ruby-src/test1.ru /^ def a()$/ | ||
| 264 | A ruby-src/test1.ru /^module A$/ | ||
| 265 | ASCII_CHAR_P c-src/emacs/src/lisp.h /^#define ASCII_CHAR_P(c) UNSIGNED_CMP (c, <, 0x80)$/ | ||
| 1936 | ascii c-src/emacs/src/lisp.h 1598 | 266 | ascii c-src/emacs/src/lisp.h 1598 |
| 267 | ASET c-src/emacs/src/lisp.h /^ASET (Lisp_Object array, ptrdiff_t idx, Lisp_Objec/ | ||
| 1937 | asis tex-src/texinfo.tex /^\\def\\asis#1{#1}$/ | 268 | asis tex-src/texinfo.tex /^\\def\\asis#1{#1}$/ |
| 269 | ASIZE c-src/emacs/src/lisp.h /^ASIZE (Lisp_Object array)$/ | ||
| 270 | Asm_help c-src/etags.c 504 | ||
| 271 | Asm_labels c-src/etags.c /^Asm_labels (FILE *inf)$/ | ||
| 272 | Asm_suffixes c-src/etags.c 493 | ||
| 1938 | asort cp-src/functions.cpp /^void asort(int *a, int num){$/ | 273 | asort cp-src/functions.cpp /^void asort(int *a, int num){$/ |
| 274 | ASRC make-src/Makefile /^ASRC=empty.zz empty.zz.gz$/ | ||
| 1939 | assemby-code-word forth-src/test-forth.fth /^code assemby-code-word ( dunno what it does )$/ | 275 | assemby-code-word forth-src/test-forth.fth /^code assemby-code-word ( dunno what it does )$/ |
| 1940 | assert c-src/etags.c /^# define assert(x) ((void) 0)$/ | ||
| 1941 | assert c-src/etags.c 135 | 276 | assert c-src/etags.c 135 |
| 277 | assert c-src/etags.c /^# define assert(x) ((void) 0)$/ | ||
| 1942 | assign_neighbor cp-src/clheir.hpp /^ void assign_neighbor(int direction, location */ | 278 | assign_neighbor cp-src/clheir.hpp /^ void assign_neighbor(int direction, location */ |
| 1943 | assoc_list merc-src/accumulator.m /^:- import_module assoc_list.$/ | ||
| 1944 | associativity_assertion merc-src/accumulator.m /^:- pred associativity_assertion(module_info::in, l/ | 279 | associativity_assertion merc-src/accumulator.m /^:- pred associativity_assertion(module_info::in, l/ |
| 280 | assoc_list merc-src/accumulator.m /^:- import_module assoc_list.$/ | ||
| 281 | AST_Array::AST_Array cp-src/c.C /^AST_Array::AST_Array(UTL_ScopedName *n, unsigned l/ | ||
| 282 | AST_ConcreteType::AST_ConcreteType cp-src/c.C /^AST_ConcreteType::AST_ConcreteType(AST_Decl::NodeT/ | ||
| 283 | AST_Root cp-src/c.C 92 | ||
| 284 | AT cp-src/c.C 52 | ||
| 1945 | at_end c-src/etags.c 249 | 285 | at_end c-src/etags.c 249 |
| 1946 | at_filename c-src/etags.c 247 | 286 | at_filename c-src/etags.c 247 |
| 287 | /atilde ps-src/rfc1245.ps /^\/atilde \/aring \/ccedilla \/eacute \/egrave \/ecircumf/ | ||
| 1947 | at_language c-src/etags.c 245 | 288 | at_language c-src/etags.c 245 |
| 1948 | at_least_one_member prol-src/natded.prolog /^at_least_one_member(X,[X|_]):-!.$/ | 289 | at_least_one_member prol-src/natded.prolog /^at_least_one_member(X,[X|_]):-!.$/ |
| 1949 | at_regexp c-src/etags.c 246 | ||
| 1950 | at_stdin c-src/etags.c 248 | ||
| 1951 | atom prol-src/natded.prolog /^atom(X) --> [X], {atomic(X)}.$/ | 290 | atom prol-src/natded.prolog /^atom(X) --> [X], {atomic(X)}.$/ |
| 1952 | atomval prol-src/natded.prolog /^atomval(X) --> atom(X).$/ | 291 | atomval prol-src/natded.prolog /^atomval(X) --> atom(X).$/ |
| 292 | at_regexp c-src/etags.c 246 | ||
| 293 | at_stdin c-src/etags.c 248 | ||
| 294 | AU cp-src/c.C 53 | ||
| 295 | aultparindent\hang tex-src/texinfo.tex /^\\footstrut\\parindent=\\defaultparindent\\hang\\textin/ | ||
| 1953 | aultparindent tex-src/texinfo.tex /^\\newdimen\\defaultparindent \\defaultparindent = 15p/ | 296 | aultparindent tex-src/texinfo.tex /^\\newdimen\\defaultparindent \\defaultparindent = 15p/ |
| 1954 | aultparindent tex-src/texinfo.tex /^\\parindent = \\defaultparindent$/ | 297 | aultparindent tex-src/texinfo.tex /^\\parindent = \\defaultparindent$/ |
| 1955 | aultparindent\hang tex-src/texinfo.tex /^\\footstrut\\parindent=\\defaultparindent\\hang\\textin/ | 298 | aUNEVALLED c-src/emacs/src/lisp.h /^ Lisp_Object (*aUNEVALLED) (Lisp_Object args)/ |
| 1956 | author tex-src/texinfo.tex /^ \\def\\author{\\parsearg\\authorzzz}%$/ | ||
| 1957 | authorfont tex-src/texinfo.tex /^ \\def\\authorfont{\\authorrm \\normalbaselineskip =/ | 299 | authorfont tex-src/texinfo.tex /^ \\def\\authorfont{\\authorrm \\normalbaselineskip =/ |
| 1958 | authorrm tex-src/texinfo.tex /^\\let\\authorrm = \\secrm$/ | 300 | authorrm tex-src/texinfo.tex /^\\let\\authorrm = \\secrm$/ |
| 301 | author tex-src/texinfo.tex /^ \\def\\author{\\parsearg\\authorzzz}%$/ | ||
| 1959 | authorzzz tex-src/texinfo.tex /^ \\def\\authorzzz##1{\\ifseenauthor\\else\\vskip 0pt / | 302 | authorzzz tex-src/texinfo.tex /^ \\def\\authorzzz##1{\\ifseenauthor\\else\\vskip 0pt / |
| 303 | AUTO_CONS c-src/emacs/src/lisp.h /^#define AUTO_CONS(name, a, b) Lisp_Object name = A/ | ||
| 304 | AUTO_CONS_EXPR c-src/emacs/src/lisp.h /^#define AUTO_CONS_EXPR(a, b) \\$/ | ||
| 1960 | auto_help c-src/etags.c 699 | 305 | auto_help c-src/etags.c 699 |
| 1961 | b c-src/h.h 103 | 306 | AUTO_LIST1 c-src/emacs/src/lisp.h /^#define AUTO_LIST1(name, a) \\$/ |
| 1962 | b c-src/h.h 104 | 307 | AUTO_LIST2 c-src/emacs/src/lisp.h /^#define AUTO_LIST2(name, a, b) \\$/ |
| 1963 | b c-src/h.h 41 | 308 | AUTO_LIST3 c-src/emacs/src/lisp.h /^#define AUTO_LIST3(name, a, b, c) \\$/ |
| 1964 | b c.c /^b ()$/ | 309 | AUTO_LIST4 c-src/emacs/src/lisp.h /^#define AUTO_LIST4(name, a, b, c, d) \\$/ |
| 1965 | b c.c 180 | 310 | AUTOLOADP c-src/emacs/src/lisp.h /^AUTOLOADP (Lisp_Object x)$/ |
| 1966 | b c.c 259 | 311 | AUTO_STRING c-src/emacs/src/lisp.h /^#define AUTO_STRING(name, str) \\$/ |
| 1967 | b c.c 260 | 312 | AVAIL_ALLOCA c-src/emacs/src/lisp.h /^#define AVAIL_ALLOCA(size) (sa_avail -= (size), al/ |
| 1968 | b c.c 262 | ||
| 1969 | b cp-src/c.C 132 | ||
| 1970 | b ruby-src/test1.ru /^ def b()$/ | ||
| 1971 | b tex-src/texinfo.tex /^\\def\\b##1{\\realbackslash b {##1}}$/ | ||
| 1972 | b tex-src/texinfo.tex /^\\def\\b##1{\\realbackslash b {##1}}%$/ | ||
| 1973 | b tex-src/texinfo.tex /^\\def\\b#1{{\\bf #1}}$/ | ||
| 1974 | b tex-src/texinfo.tex /^\\let\\b=\\indexdummyfont$/ | ||
| 1975 | b tex-src/texinfo.tex /^\\let\\b=\\ptexb \\let\\c=\\ptexc \\let\\i=\\ptexi \\let\\t=\\/ | ||
| 1976 | backslash tex-src/texinfo.tex /^\\def\\rawbackslashxx{\\indexbackslash}% \\indexbacksl/ | ||
| 1977 | backslash tex-src/texinfo.tex /^\\def\\rawbackslashxx{\\indexbackslash}%$/ | 313 | backslash tex-src/texinfo.tex /^\\def\\rawbackslashxx{\\indexbackslash}%$/ |
| 314 | backslash tex-src/texinfo.tex /^\\def\\rawbackslashxx{\\indexbackslash}% \\indexbacksl/ | ||
| 1978 | balancecolumns tex-src/texinfo.tex /^\\def\\balancecolumns{%$/ | 315 | balancecolumns tex-src/texinfo.tex /^\\def\\balancecolumns{%$/ |
| 1979 | bar c-src/c.c /^void bar() {while(0) {}}$/ | 316 | bar1 ruby-src/test1.ru /^ attr_reader(:foo1, :bar1, # comment$/ |
| 1980 | bar c-src/h.h 19 | ||
| 1981 | bar c.c 143 | 317 | bar c.c 143 |
| 1982 | bar cp-src/x.cc /^XX::bar()$/ | 318 | bar cp-src/x.cc /^XX::bar()$/ |
| 1983 | bar1 ruby-src/test1.ru /^ attr_reader(:foo1, :bar1, # comment$/ | 319 | bar c-src/c.c /^void bar() {while(0) {}}$/ |
| 320 | bar c-src/h.h 19 | ||
| 321 | Bar lua-src/test.lua /^function Square.something:Bar ()$/ | ||
| 322 | Bar perl-src/kai-test.pl /^package Bar;$/ | ||
| 323 | Barrier_Function_Pointer/t ada-src/etags-test-for.ada /^ type Barrier_Function_Pointer is access$/ | ||
| 1984 | bar= ruby-src/test1.ru /^ attr_writer :bar,$/ | 324 | bar= ruby-src/test1.ru /^ attr_writer :bar,$/ |
| 1985 | bas_syn prol-src/natded.prolog /^bas_syn(n(_)).$/ | 325 | _bar? ruby-src/test1.ru /^ def self._bar?(abc)$/ |
| 1986 | base c-src/emacs/src/lisp.h 2188 | ||
| 1987 | base cp-src/Range.h /^ double base (void) const { return rng_base; }$/ | ||
| 1988 | base cp-src/c.C /^double base (void) const { return rng_base; }$/ | ||
| 1989 | base_case_ids merc-src/accumulator.m /^:- func base_case_ids(accu_goal_store) = list(accu/ | 326 | base_case_ids merc-src/accumulator.m /^:- func base_case_ids(accu_goal_store) = list(accu/ |
| 1990 | base_case_ids_set merc-src/accumulator.m /^:- func base_case_ids_set(accu_goal_store) = set(a/ | 327 | base_case_ids_set merc-src/accumulator.m /^:- func base_case_ids_set(accu_goal_store) = set(a/ |
| 328 | base cp-src/c.C /^double base (void) const { return rng_base; }$/ | ||
| 329 | base cp-src/Range.h /^ double base (void) const { return rng_base; }$/ | ||
| 330 | base c-src/emacs/src/lisp.h 2188 | ||
| 331 | bas_syn prol-src/natded.prolog /^bas_syn(n(_)).$/ | ||
| 1991 | baz= ruby-src/test1.ru /^ :baz,$/ | 332 | baz= ruby-src/test1.ru /^ :baz,$/ |
| 1992 | bb c.c 275 | ||
| 1993 | bbb c.c 251 | ||
| 1994 | bbbbbb c-src/h.h 113 | 333 | bbbbbb c-src/h.h 113 |
| 334 | bbb c.c 251 | ||
| 335 | bb c.c 275 | ||
| 336 | b c.c 180 | ||
| 337 | b c.c 259 | ||
| 338 | b c.c 260 | ||
| 339 | b c.c 262 | ||
| 340 | b c.c /^b ()$/ | ||
| 341 | B cp-src/c.C 122 | ||
| 342 | b cp-src/c.C 132 | ||
| 343 | B cp-src/c.C 54 | ||
| 344 | B cp-src/c.C 56 | ||
| 345 | B cp-src/c.C 74 | ||
| 346 | ~B cp-src/c.C /^ ~B() {};$/ | ||
| 347 | B cp-src/c.C /^void B::B() {}$/ | ||
| 348 | B cp-src/fail.C 24 | ||
| 349 | B cp-src/fail.C 8 | ||
| 350 | b c-src/h.h 103 | ||
| 351 | b c-src/h.h 104 | ||
| 352 | b c-src/h.h 41 | ||
| 1995 | been_warned c-src/etags.c 222 | 353 | been_warned c-src/etags.c 222 |
| 1996 | before_command_echo_length c-src/emacs/src/keyboard.c 130 | 354 | before_command_echo_length c-src/emacs/src/keyboard.c 130 |
| 1997 | before_command_key_count c-src/emacs/src/keyboard.c 129 | 355 | before_command_key_count c-src/emacs/src/keyboard.c 129 |
| 1998 | begin tex-src/texinfo.tex /^\\outer\\def\\begin{\\parsearg\\beginxxx}$/ | 356 | /BEGINBITMAP2BITc ps-src/rfc1245.ps /^\/BEGINBITMAP2BITc { $/ |
| 357 | /BEGINBITMAP2BIT ps-src/rfc1245.ps /^\/BEGINBITMAP2BIT { $/ | ||
| 358 | /BEGINBITMAPBWc ps-src/rfc1245.ps /^\/BEGINBITMAPBWc { $/ | ||
| 359 | /BEGINBITMAPBW ps-src/rfc1245.ps /^\/BEGINBITMAPBW { $/ | ||
| 360 | /BEGINBITMAPGRAYc ps-src/rfc1245.ps /^\/BEGINBITMAPGRAYc { $/ | ||
| 361 | /BEGINBITMAPGRAY ps-src/rfc1245.ps /^\/BEGINBITMAPGRAY { $/ | ||
| 1999 | begindoublecolumns tex-src/texinfo.tex /^\\def\\begindoublecolumns{\\begingroup$/ | 362 | begindoublecolumns tex-src/texinfo.tex /^\\def\\begindoublecolumns{\\begingroup$/ |
| 363 | /BEGINPRINTCODE ps-src/rfc1245.ps /^\/BEGINPRINTCODE { $/ | ||
| 364 | begin tex-src/texinfo.tex /^\\outer\\def\\begin{\\parsearg\\beginxxx}$/ | ||
| 2000 | beginxxx tex-src/texinfo.tex /^\\def\\beginxxx #1{%$/ | 365 | beginxxx tex-src/texinfo.tex /^\\def\\beginxxx #1{%$/ |
| 2001 | begtoken c-src/etags.c /^#define begtoken(c) (_btk[CHAR (c)]) \/* c can star/ | 366 | begtoken c-src/etags.c /^#define begtoken(c) (_btk[CHAR (c)]) \/* c can star/ |
| 2002 | behaviour_info erl-src/gs_dialog.erl /^behaviour_info(callbacks) ->$/ | 367 | behaviour_info erl-src/gs_dialog.erl /^behaviour_info(callbacks) ->$/ |
| 2003 | bf tex-src/texinfo.tex /^ \\let\\rm=\\shortcontrm \\let\\bf=\\shortcontbf \\l/ | 368 | BE_Node cp-src/c.C 77 |
| 2004 | bf tex-src/texinfo.tex /^\\def\\bf{\\realbackslash bf }$/ | 369 | BE_Node cp-src/c.C /^void BE_Node::BE_Node() {}$/ |
| 370 | /BF ps-src/rfc1245.ps /^\/BF { $/ | ||
| 2005 | bf tex-src/texinfo.tex /^\\def\\bf{\\realbackslash bf }%$/ | 371 | bf tex-src/texinfo.tex /^\\def\\bf{\\realbackslash bf }%$/ |
| 372 | bf tex-src/texinfo.tex /^\\def\\bf{\\realbackslash bf }$/ | ||
| 2006 | bf tex-src/texinfo.tex /^\\def\\df{\\let\\tentt=\\deftt \\let\\tenbf = \\defbf \\bf}/ | 373 | bf tex-src/texinfo.tex /^\\def\\df{\\let\\tentt=\\deftt \\let\\tenbf = \\defbf \\bf}/ |
| 2007 | bf tex-src/texinfo.tex /^\\font\\defbf=cmbx10 scaled \\magstep1 %was 1314$/ | 374 | bf tex-src/texinfo.tex /^\\font\\defbf=cmbx10 scaled \\magstep1 %was 1314$/ |
| 2008 | bind pyt-src/server.py /^ def bind(self, key, action):$/ | 375 | bf tex-src/texinfo.tex /^ \\let\\rm=\\shortcontrm \\let\\bf=\\shortcontbf \\l/ |
| 376 | Bidule/b ada-src/etags-test-for.ada /^ protected body Bidule is$/ | ||
| 377 | Bidule/b ada-src/waroquiers.ada /^ protected body Bidule is$/ | ||
| 378 | Bidule/t ada-src/etags-test-for.ada /^ protected Bidule is$/ | ||
| 379 | Bidule/t ada-src/waroquiers.ada /^ protected Bidule is$/ | ||
| 2009 | bind_polling_period c-src/emacs/src/keyboard.c /^bind_polling_period (int n)$/ | 380 | bind_polling_period c-src/emacs/src/keyboard.c /^bind_polling_period (int n)$/ |
| 381 | bind pyt-src/server.py /^ def bind(self, key, action):$/ | ||
| 382 | /BITMAPCOLORc ps-src/rfc1245.ps /^\/BITMAPCOLORc { $/ | ||
| 383 | /BITMAPCOLOR ps-src/rfc1245.ps /^\/BITMAPCOLOR { $/ | ||
| 384 | /BITMAPGRAYc ps-src/rfc1245.ps /^\/BITMAPGRAYc { $/ | ||
| 385 | /BITMAPGRAY ps-src/rfc1245.ps /^\/BITMAPGRAY { $/ | ||
| 386 | BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 125 | ||
| 387 | BITS_PER_BITS_WORD c-src/emacs/src/lisp.h 129 | ||
| 388 | BITS_PER_CHAR c-src/emacs/src/lisp.h 136 | ||
| 389 | BITS_PER_EMACS_INT c-src/emacs/src/lisp.h 139 | ||
| 390 | BITS_PER_LONG c-src/emacs/src/lisp.h 138 | ||
| 391 | BITS_PER_SHORT c-src/emacs/src/lisp.h 137 | ||
| 2010 | bits_word c-src/emacs/src/lisp.h 123 | 392 | bits_word c-src/emacs/src/lisp.h 123 |
| 2011 | bits_word c-src/emacs/src/lisp.h 127 | 393 | bits_word c-src/emacs/src/lisp.h 127 |
| 394 | BITS_WORD_MAX c-src/emacs/src/lisp.h 124 | ||
| 395 | BITS_WORD_MAX c-src/emacs/src/lisp.h 128 | ||
| 2012 | bla c.c /^int bla ()$/ | 396 | bla c.c /^int bla ()$/ |
| 397 | BLACK cp-src/screen.hpp 12 | ||
| 2013 | blah tex-src/testenv.tex /^\\section{blah}$/ | 398 | blah tex-src/testenv.tex /^\\section{blah}$/ |
| 2014 | bletch el-src/TAGTEST.EL /^(foo::defmumble bletch beuarghh)$/ | 399 | bletch el-src/TAGTEST.EL /^(foo::defmumble bletch beuarghh)$/ |
| 400 | BLOCK c-src/emacs/src/gmalloc.c /^#define BLOCK(A) (((char *) (A) - _heapbase) \/ BLO/ | ||
| 401 | BLOCKIFY c-src/emacs/src/gmalloc.c /^#define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) \// | ||
| 402 | BLOCKLOG c-src/emacs/src/gmalloc.c 125 | ||
| 403 | BLOCKSIZE c-src/emacs/src/gmalloc.c 126 | ||
| 404 | /bl ps-src/rfc1245.ps /^\/bl { $/ | ||
| 405 | BLUE cp-src/screen.hpp 13 | ||
| 2015 | blv c-src/emacs/src/lisp.h 689 | 406 | blv c-src/emacs/src/lisp.h 689 |
| 2016 | blv_found c-src/emacs/src/lisp.h /^blv_found (struct Lisp_Buffer_Local_Value *blv)$/ | 407 | blv_found c-src/emacs/src/lisp.h /^blv_found (struct Lisp_Buffer_Local_Value *blv)$/ |
| 2017 | bodyindent tex-src/texinfo.tex /^\\advance\\dimen2 by -\\defbodyindent$/ | 408 | bodyindent tex-src/texinfo.tex /^\\advance\\dimen2 by -\\defbodyindent$/ |
| @@ -2020,141 +411,261 @@ bodyindent tex-src/texinfo.tex /^\\advance\\leftskip by -\\defbodyindent$/ | |||
| 2020 | bodyindent tex-src/texinfo.tex /^\\advance\\leftskip by \\defbodyindent \\advance \\righ/ | 411 | bodyindent tex-src/texinfo.tex /^\\advance\\leftskip by \\defbodyindent \\advance \\righ/ |
| 2021 | bodyindent tex-src/texinfo.tex /^\\exdentamount=\\defbodyindent$/ | 412 | bodyindent tex-src/texinfo.tex /^\\exdentamount=\\defbodyindent$/ |
| 2022 | bodyindent tex-src/texinfo.tex /^\\newskip\\defbodyindent \\defbodyindent=.4in$/ | 413 | bodyindent tex-src/texinfo.tex /^\\newskip\\defbodyindent \\defbodyindent=.4in$/ |
| 414 | Body_Required/f ada-src/etags-test-for.ada /^ function Body_Required$/ | ||
| 2023 | boldbrax tex-src/texinfo.tex /^\\gdef\\boldbrax{\\let(=\\opnr\\let)=\\clnr\\let[=\\lbrb\\l/ | 415 | boldbrax tex-src/texinfo.tex /^\\gdef\\boldbrax{\\let(=\\opnr\\let)=\\clnr\\let[=\\lbrb\\l/ |
| 416 | Boo::Boo cp-src/c.C /^Boo::Boo(Boo) :$/ | ||
| 417 | Boo cp-src/c.C 129 | ||
| 418 | Boo cp-src/c.C /^ Boo(int _i, int _a, int _b) : i(_i), a(_a), b(/ | ||
| 2024 | bool c.c 222 | 419 | bool c.c 222 |
| 2025 | bool merc-src/accumulator.m /^:- import_module bool.$/ | ||
| 2026 | bool_header_size c-src/emacs/src/lisp.h 1472 | 420 | bool_header_size c-src/emacs/src/lisp.h 1472 |
| 421 | bool merc-src/accumulator.m /^:- import_module bool.$/ | ||
| 422 | boolvar c-src/emacs/src/lisp.h 2287 | ||
| 2027 | bool_vector_bitref c-src/emacs/src/lisp.h /^bool_vector_bitref (Lisp_Object a, EMACS_INT i)$/ | 423 | bool_vector_bitref c-src/emacs/src/lisp.h /^bool_vector_bitref (Lisp_Object a, EMACS_INT i)$/ |
| 424 | BOOL_VECTOR_BITS_PER_CHAR c-src/emacs/src/lisp.h 114 | ||
| 425 | BOOL_VECTOR_BITS_PER_CHAR c-src/emacs/src/lisp.h 115 | ||
| 2028 | bool_vector_bytes c-src/emacs/src/lisp.h /^bool_vector_bytes (EMACS_INT size)$/ | 426 | bool_vector_bytes c-src/emacs/src/lisp.h /^bool_vector_bytes (EMACS_INT size)$/ |
| 2029 | bool_vector_data c-src/emacs/src/lisp.h /^bool_vector_data (Lisp_Object a)$/ | 427 | bool_vector_data c-src/emacs/src/lisp.h /^bool_vector_data (Lisp_Object a)$/ |
| 428 | BOOL_VECTOR_P c-src/emacs/src/lisp.h /^BOOL_VECTOR_P (Lisp_Object a)$/ | ||
| 2030 | bool_vector_ref c-src/emacs/src/lisp.h /^bool_vector_ref (Lisp_Object a, EMACS_INT i)$/ | 429 | bool_vector_ref c-src/emacs/src/lisp.h /^bool_vector_ref (Lisp_Object a, EMACS_INT i)$/ |
| 2031 | bool_vector_set c-src/emacs/src/lisp.h /^bool_vector_set (Lisp_Object a, EMACS_INT i, bool / | 430 | bool_vector_set c-src/emacs/src/lisp.h /^bool_vector_set (Lisp_Object a, EMACS_INT i, bool / |
| 2032 | bool_vector_size c-src/emacs/src/lisp.h /^bool_vector_size (Lisp_Object a)$/ | 431 | bool_vector_size c-src/emacs/src/lisp.h /^bool_vector_size (Lisp_Object a)$/ |
| 2033 | bool_vector_uchar_data c-src/emacs/src/lisp.h /^bool_vector_uchar_data (Lisp_Object a)$/ | 432 | bool_vector_uchar_data c-src/emacs/src/lisp.h /^bool_vector_uchar_data (Lisp_Object a)$/ |
| 2034 | bool_vector_words c-src/emacs/src/lisp.h /^bool_vector_words (EMACS_INT size)$/ | 433 | bool_vector_words c-src/emacs/src/lisp.h /^bool_vector_words (EMACS_INT size)$/ |
| 2035 | boolvar c-src/emacs/src/lisp.h 2287 | 434 | /B ps-src/rfc1245.ps /^\/B { $/ |
| 2036 | br tex-src/texinfo.tex /^\\let\\br = \\par$/ | ||
| 2037 | bracelev c-src/etags.c 2520 | 435 | bracelev c-src/etags.c 2520 |
| 436 | /braceright ps-src/rfc1245.ps /^\/braceright \/asciitilde \/.notdef \/Adieresis \/Aring/ | ||
| 437 | /bracketright ps-src/rfc1245.ps /^\/bracketright \/asciicircum \/underscore \/grave \/a \// | ||
| 438 | /breve ps-src/rfc1245.ps /^\/breve \/dotaccent \/ring \/cedilla \/hungarumlaut \/og/ | ||
| 439 | BROWN cp-src/screen.hpp 18 | ||
| 440 | br tex-src/texinfo.tex /^\\let\\br = \\par$/ | ||
| 441 | B ruby-src/test1.ru /^ class B$/ | ||
| 442 | b ruby-src/test1.ru /^ def b()$/ | ||
| 2038 | bsp_DevId c-src/h.h 25 | 443 | bsp_DevId c-src/h.h 25 |
| 2039 | bt c-src/emacs/src/lisp.h 2988 | 444 | bt c-src/emacs/src/lisp.h 2988 |
| 445 | b tex-src/texinfo.tex /^\\def\\b#1{{\\bf #1}}$/ | ||
| 446 | b tex-src/texinfo.tex /^\\def\\b##1{\\realbackslash b {##1}}%$/ | ||
| 447 | b tex-src/texinfo.tex /^\\def\\b##1{\\realbackslash b {##1}}$/ | ||
| 448 | b tex-src/texinfo.tex /^\\let\\b=\\indexdummyfont$/ | ||
| 449 | b tex-src/texinfo.tex /^\\let\\b=\\ptexb \\let\\c=\\ptexc \\let\\i=\\ptexi \\let\\t=\\/ | ||
| 2040 | btowc c-src/emacs/src/regex.h /^# define btowc(c) c$/ | 450 | btowc c-src/emacs/src/regex.h /^# define btowc(c) c$/ |
| 2041 | buffer c-src/emacs/src/lisp.h 2000 | 451 | buffer c-src/emacs/src/lisp.h 2000 |
| 2042 | buffer c-src/emacs/src/regex.h 341 | 452 | buffer c-src/emacs/src/regex.h 341 |
| 2043 | buffer c-src/etags.c 238 | 453 | buffer c-src/etags.c 238 |
| 2044 | buffer c-src/h.h 119 | 454 | buffer c-src/h.h 119 |
| 455 | BUFFER_OBJFWDP c-src/emacs/src/lisp.h /^BUFFER_OBJFWDP (union Lisp_Fwd *a)$/ | ||
| 456 | BUFFERP c-src/emacs/src/lisp.h /^BUFFERP (Lisp_Object a)$/ | ||
| 457 | BUFFERSIZE objc-src/Subprocess.h 43 | ||
| 458 | buildact prol-src/natded.prolog /^buildact([SynIn],Right,RightPlus1):-$/ | ||
| 2045 | build prol-src/natded.prolog /^build([],Left,Left).$/ | 459 | build prol-src/natded.prolog /^build([],Left,Left).$/ |
| 2046 | build_pure_c_string c-src/emacs/src/lisp.h /^build_pure_c_string (const char *str)$/ | 460 | build_pure_c_string c-src/emacs/src/lisp.h /^build_pure_c_string (const char *str)$/ |
| 2047 | build_string c-src/emacs/src/lisp.h /^build_string (const char *str)$/ | 461 | build_string c-src/emacs/src/lisp.h /^build_string (const char *str)$/ |
| 2048 | buildact prol-src/natded.prolog /^buildact([SynIn],Right,RightPlus1):-$/ | ||
| 2049 | builtin_lisp_symbol c-src/emacs/src/lisp.h /^builtin_lisp_symbol (int index)$/ | 462 | builtin_lisp_symbol c-src/emacs/src/lisp.h /^builtin_lisp_symbol (int index)$/ |
| 2050 | bullet tex-src/texinfo.tex /^\\def\\bullet{$\\ptexbullet$}$/ | 463 | bullet tex-src/texinfo.tex /^\\def\\bullet{$\\ptexbullet$}$/ |
| 2051 | bullet tex-src/texinfo.tex /^\\let\\bullet=\\ptexbullet$/ | 464 | bullet tex-src/texinfo.tex /^\\let\\bullet=\\ptexbullet$/ |
| 2052 | burst c-src/h.h 28 | 465 | burst c-src/h.h 28 |
| 2053 | busy c-src/emacs/src/gmalloc.c 158 | 466 | busy c-src/emacs/src/gmalloc.c 158 |
| 467 | ButtonBar pyt-src/server.py /^def ButtonBar(frame, legend, ref, alternatives, co/ | ||
| 2054 | button_down_location c-src/emacs/src/keyboard.c 5210 | 468 | button_down_location c-src/emacs/src/keyboard.c 5210 |
| 2055 | button_down_time c-src/emacs/src/keyboard.c 5218 | 469 | button_down_time c-src/emacs/src/keyboard.c 5218 |
| 2056 | bye tex-src/texinfo.tex /^\\outer\\def\\bye{\\pagealignmacro\\tracingstats=1\\ptex/ | 470 | bye tex-src/texinfo.tex /^\\outer\\def\\bye{\\pagealignmacro\\tracingstats=1\\ptex/ |
| 2057 | byte_stack c-src/emacs/src/lisp.h 3049 | ||
| 2058 | bytecode_dest c-src/emacs/src/lisp.h 3037 | 471 | bytecode_dest c-src/emacs/src/lisp.h 3037 |
| 2059 | bytecode_top c-src/emacs/src/lisp.h 3036 | 472 | bytecode_top c-src/emacs/src/lisp.h 3036 |
| 473 | BYTE_MARK_STACK c-src/emacs/src/lisp.h 3181 | ||
| 2060 | bytepos c-src/emacs/src/lisp.h 2016 | 474 | bytepos c-src/emacs/src/lisp.h 2016 |
| 2061 | bytes_free c-src/emacs/src/gmalloc.c 314 | 475 | bytes_free c-src/emacs/src/gmalloc.c 314 |
| 476 | _bytes_free c-src/emacs/src/gmalloc.c 377 | ||
| 477 | byte_stack c-src/emacs/src/lisp.h 3049 | ||
| 2062 | bytes_total c-src/emacs/src/gmalloc.c 310 | 478 | bytes_total c-src/emacs/src/gmalloc.c 310 |
| 2063 | bytes_used c-src/emacs/src/gmalloc.c 312 | 479 | bytes_used c-src/emacs/src/gmalloc.c 312 |
| 2064 | c c-src/h.h /^#define c() d$/ | 480 | _bytes_used c-src/emacs/src/gmalloc.c 375 |
| 2065 | c c-src/h.h 106 | ||
| 2066 | c c.c 180 | ||
| 2067 | c tex-src/texinfo.tex /^\\let\\b=\\ptexb \\let\\c=\\ptexc \\let\\i=\\ptexi \\let\\t=\\/ | ||
| 2068 | c tex-src/texinfo.tex /^\\let\\c=\\comment$/ | ||
| 2069 | c_ext c-src/etags.c 2271 | ||
| 2070 | caccacacca c.c /^caccacacca (a,b,c,d,e,f,g)$/ | 481 | caccacacca c.c /^caccacacca (a,b,c,d,e,f,g)$/ |
| 2071 | cacheLRUEntry_s c.c 172 | 482 | cacheLRUEntry_s c.c 172 |
| 2072 | cacheLRUEntry_t c.c 177 | 483 | cacheLRUEntry_t c.c 177 |
| 2073 | calculate_goal_info merc-src/accumulator.m /^:- pred calculate_goal_info(hlds_goal_expr::in, hl/ | 484 | calculate_goal_info merc-src/accumulator.m /^:- pred calculate_goal_info(hlds_goal_expr::in, hl/ |
| 2074 | calloc c-src/emacs/src/gmalloc.c /^calloc (size_t nmemb, size_t size)$/ | 485 | CALLMANY c-src/emacs/src/lisp.h /^#define CALLMANY(f, array) (f) (ARRAYELTS (array),/ |
| 2075 | calloc c-src/emacs/src/gmalloc.c 1721 | 486 | CALLN c-src/emacs/src/lisp.h /^#define CALLN(f, ...) CALLMANY (f, ((Lisp_Object [/ |
| 487 | calloc c-src/emacs/src/gmalloc.c 1724 | ||
| 2076 | calloc c-src/emacs/src/gmalloc.c 66 | 488 | calloc c-src/emacs/src/gmalloc.c 66 |
| 2077 | calloc c-src/emacs/src/gmalloc.c 70 | 489 | calloc c-src/emacs/src/gmalloc.c 70 |
| 490 | calloc c-src/emacs/src/gmalloc.c /^calloc (size_t nmemb, size_t size)$/ | ||
| 2078 | can_be_null c-src/emacs/src/regex.h 370 | 491 | can_be_null c-src/emacs/src/regex.h 370 |
| 2079 | cancel_echoing c-src/emacs/src/keyboard.c /^cancel_echoing (void)$/ | 492 | cancel_echoing c-src/emacs/src/keyboard.c /^cancel_echoing (void)$/ |
| 2080 | canonicalize_filename c-src/etags.c /^canonicalize_filename (register char *fn)$/ | 493 | canonicalize_filename c-src/etags.c /^canonicalize_filename (register char *fn)$/ |
| 2081 | capsenumerate tex-src/texinfo.tex /^\\def\\capsenumerate{\\enumerate{A}}$/ | 494 | capsenumerate tex-src/texinfo.tex /^\\def\\capsenumerate{\\enumerate{A}}$/ |
| 495 | CAR c-src/emacs/src/lisp.h /^CAR (Lisp_Object c)$/ | ||
| 496 | CAR_SAFE c-src/emacs/src/lisp.h /^CAR_SAFE (Lisp_Object c)$/ | ||
| 2082 | cartbot tex-src/texinfo.tex /^\\def\\cartbot{\\hbox to \\cartouter{\\hskip\\lskip$/ | 497 | cartbot tex-src/texinfo.tex /^\\def\\cartbot{\\hbox to \\cartouter{\\hskip\\lskip$/ |
| 2083 | cartouche tex-src/texinfo.tex /^\\long\\def\\cartouche{%$/ | 498 | cartouche tex-src/texinfo.tex /^\\long\\def\\cartouche{%$/ |
| 2084 | carttop tex-src/texinfo.tex /^\\def\\carttop{\\hbox to \\cartouter{\\hskip\\lskip$/ | 499 | carttop tex-src/texinfo.tex /^\\def\\carttop{\\hbox to \\cartouter{\\hskip\\lskip$/ |
| 2085 | case_Lisp_Int c-src/emacs/src/lisp.h 438 | 500 | case_Lisp_Int c-src/emacs/src/lisp.h 438 |
| 2086 | cat c-src/h.h 81 | 501 | cat_atoms prol-src/natded.prolog /^cat_atoms(A1,A2,A3):-$/ |
| 502 | CATCHER c-src/emacs/src/lisp.h 3021 | ||
| 2087 | cat cp-src/c.C 126 | 503 | cat cp-src/c.C 126 |
| 2088 | cat cp-src/c.C 130 | 504 | cat cp-src/c.C 130 |
| 505 | cat c-src/h.h 81 | ||
| 2089 | cat prol-src/natded.prolog /^cat(A, Alpha@Beta, Ass3, Qs3, tree(fe,A:Alpha@Beta/ | 506 | cat prol-src/natded.prolog /^cat(A, Alpha@Beta, Ass3, Qs3, tree(fe,A:Alpha@Beta/ |
| 2090 | cat_atoms prol-src/natded.prolog /^cat_atoms(A1,A2,A3):-$/ | 507 | C_AUTO c-src/etags.c 2198 |
| 2091 | cbl tex-src/texinfo.tex /^\\def\\cbl{{\\circle\\char'012\\hskip -6pt}}$/ | 508 | cbl tex-src/texinfo.tex /^\\def\\cbl{{\\circle\\char'012\\hskip -6pt}}$/ |
| 2092 | cbr tex-src/texinfo.tex /^\\def\\cbr{{\\hskip 6pt\\circle\\char'011}}$/ | 509 | cbr tex-src/texinfo.tex /^\\def\\cbr{{\\hskip 6pt\\circle\\char'011}}$/ |
| 510 | c c.c 180 | ||
| 2093 | cccccccccc c-src/h.h 115 | 511 | cccccccccc c-src/h.h 115 |
| 512 | C cp-src/fail.C 25 | ||
| 513 | C cp-src/fail.C 9 | ||
| 514 | C cp-src/fail.C /^ C(int i) {x = i;}$/ | ||
| 515 | c c-src/h.h 106 | ||
| 516 | c c-src/h.h /^#define c() d$/ | ||
| 517 | %cdiff make-src/Makefile /^%cdiff: CTAGS% CTAGS ${infiles}$/ | ||
| 2094 | cdr c-src/emacs/src/lisp.h 1159 | 518 | cdr c-src/emacs/src/lisp.h 1159 |
| 519 | CDR c-src/emacs/src/lisp.h /^CDR (Lisp_Object c)$/ | ||
| 520 | CDR_SAFE c-src/emacs/src/lisp.h /^CDR_SAFE (Lisp_Object c)$/ | ||
| 2095 | cell y-src/parse.y 279 | 521 | cell y-src/parse.y 279 |
| 2096 | center tex-src/texinfo.tex /^\\def\\center{\\parsearg\\centerzzz}$/ | 522 | center tex-src/texinfo.tex /^\\def\\center{\\parsearg\\centerzzz}$/ |
| 2097 | centerzzz tex-src/texinfo.tex /^\\def\\centerzzz #1{{\\advance\\hsize by -\\leftskip$/ | 523 | centerzzz tex-src/texinfo.tex /^\\def\\centerzzz #1{{\\advance\\hsize by -\\leftskip$/ |
| 524 | C_entries c-src/etags.c /^C_entries (int c_ext, FILE *inf)$/ | ||
| 525 | C_EXT c-src/etags.c 2193 | ||
| 526 | c_ext c-src/etags.c 2271 | ||
| 527 | CFLAGS make-src/Makefile /^CFLAGS=${WARNINGS} -ansi -g3 # -pg -O$/ | ||
| 528 | /cfs ps-src/rfc1245.ps /^\/cfs { $/ | ||
| 2098 | cgrep html-src/software.html /^cgrep$/ | 529 | cgrep html-src/software.html /^cgrep$/ |
| 2099 | chain c-src/emacs/src/lisp.h 1162 | 530 | chain c-src/emacs/src/lisp.h 1162 |
| 2100 | chain c-src/emacs/src/lisp.h 2206 | 531 | chain c-src/emacs/src/lisp.h 2206 |
| 2101 | chain c-src/emacs/src/lisp.h 2396 | 532 | chain c-src/emacs/src/lisp.h 2396 |
| 2102 | chain_subst merc-src/accumulator.m /^:- func chain_subst(accu_subst, accu_subst) = accu/ | ||
| 2103 | chain_subst_2 merc-src/accumulator.m /^:- pred chain_subst_2(list(A)::in, map(A, B)::in, / | 533 | chain_subst_2 merc-src/accumulator.m /^:- pred chain_subst_2(list(A)::in, map(A, B)::in, / |
| 534 | chain_subst merc-src/accumulator.m /^:- func chain_subst(accu_subst, accu_subst) = accu/ | ||
| 535 | ChangeFileType pas-src/common.pas /^function ChangeFileType; (*(FileName : NameString;/ | ||
| 2104 | chapbf tex-src/texinfo.tex /^\\let\\chapbf=\\chaprm$/ | 536 | chapbf tex-src/texinfo.tex /^\\let\\chapbf=\\chaprm$/ |
| 2105 | chapbreak tex-src/texinfo.tex /^\\def\\chapbreak{\\dobreak \\chapheadingskip {-4000}}$/ | 537 | chapbreak tex-src/texinfo.tex /^\\def\\chapbreak{\\dobreak \\chapheadingskip {-4000}}$/ |
| 2106 | chapentry tex-src/texinfo.tex /^ \\let\\chapentry = \\shortchapentry$/ | ||
| 2107 | chapentry tex-src/texinfo.tex /^\\def\\chapentry#1#2#3{\\dochapentry{#2\\labelspace#1}/ | ||
| 2108 | chapentryfonts tex-src/texinfo.tex /^\\def\\chapentryfonts{\\secfonts \\rm}$/ | 538 | chapentryfonts tex-src/texinfo.tex /^\\def\\chapentryfonts{\\secfonts \\rm}$/ |
| 539 | chapentry tex-src/texinfo.tex /^\\def\\chapentry#1#2#3{\\dochapentry{#2\\labelspace#1}/ | ||
| 540 | chapentry tex-src/texinfo.tex /^ \\let\\chapentry = \\shortchapentry$/ | ||
| 2109 | chapfonts tex-src/texinfo.tex /^\\def\\chapfonts{%$/ | 541 | chapfonts tex-src/texinfo.tex /^\\def\\chapfonts{%$/ |
| 542 | CHAPFopen tex-src/texinfo.tex /^\\def\\CHAPFopen{$/ | ||
| 543 | CHAPFplain tex-src/texinfo.tex /^\\def\\CHAPFplain{$/ | ||
| 2110 | chapheading tex-src/texinfo.tex /^\\def\\chapheading{\\parsearg\\chapheadingzzz}$/ | 544 | chapheading tex-src/texinfo.tex /^\\def\\chapheading{\\parsearg\\chapheadingzzz}$/ |
| 2111 | chapheadingzzz tex-src/texinfo.tex /^\\def\\chapheadingzzz #1{\\chapbreak %$/ | 545 | chapheadingzzz tex-src/texinfo.tex /^\\def\\chapheadingzzz #1{\\chapbreak %$/ |
| 2112 | chapmacro tex-src/texinfo.tex /^\\global\\let\\chapmacro=\\chfopen$/ | 546 | chapmacro tex-src/texinfo.tex /^\\global\\let\\chapmacro=\\chfopen$/ |
| 2113 | chapmacro tex-src/texinfo.tex /^\\global\\let\\chapmacro=\\chfplain$/ | 547 | chapmacro tex-src/texinfo.tex /^\\global\\let\\chapmacro=\\chfplain$/ |
| 2114 | chapoddpage tex-src/texinfo.tex /^\\def\\chapoddpage{\\chappager \\ifodd\\pageno \\else \\h/ | 548 | chapoddpage tex-src/texinfo.tex /^\\def\\chapoddpage{\\chappager \\ifodd\\pageno \\else \\h/ |
| 2115 | chappager tex-src/texinfo.tex /^\\def\\chappager{\\par\\vfill\\supereject}$/ | 549 | chappager tex-src/texinfo.tex /^\\def\\chappager{\\par\\vfill\\supereject}$/ |
| 550 | CHAPPAGodd tex-src/texinfo.tex /^\\def\\CHAPPAGodd{$/ | ||
| 551 | CHAPPAGoff tex-src/texinfo.tex /^\\def\\CHAPPAGoff{$/ | ||
| 552 | CHAPPAGon tex-src/texinfo.tex /^\\def\\CHAPPAGon{$/ | ||
| 553 | chapternofonts tex-src/texinfo.tex /^\\def\\chapternofonts{%$/ | ||
| 2116 | chapter tex-src/texinfo.tex /^\\let\\chapter=\\relax$/ | 554 | chapter tex-src/texinfo.tex /^\\let\\chapter=\\relax$/ |
| 2117 | chapter tex-src/texinfo.tex /^\\outer\\def\\chapter{\\parsearg\\chapterzzz}$/ | 555 | chapter tex-src/texinfo.tex /^\\outer\\def\\chapter{\\parsearg\\chapterzzz}$/ |
| 2118 | chapternofonts tex-src/texinfo.tex /^\\def\\chapternofonts{%$/ | ||
| 2119 | chapterzzz tex-src/texinfo.tex /^\\def\\chapterzzz #1{\\seccheck{chapter}%$/ | 556 | chapterzzz tex-src/texinfo.tex /^\\def\\chapterzzz #1{\\seccheck{chapter}%$/ |
| 2120 | char tex-src/texinfo.tex /^\\def\\char{\\realbackslash char}$/ | 557 | CHARACTERBITS c-src/emacs/src/lisp.h 2457 |
| 2121 | char tex-src/texinfo.tex /^\\def\\char{\\realbackslash char}%$/ | 558 | CHAR_ALT c-src/emacs/src/lisp.h 2445 |
| 559 | CHAR_BIT c-src/emacs/src/lisp.h 2957 | ||
| 560 | CHAR_BIT c-src/emacs/src/lisp.h 2959 | ||
| 561 | CHAR_BIT c-src/emacs/src/lisp.h 2964 | ||
| 562 | CHAR_BIT c-src/emacs/src/lisp.h 2969 | ||
| 563 | CHAR_BIT c-src/emacs/src/lisp.h 2974 | ||
| 564 | CHAR_BIT c-src/emacs/src/lisp.h 2978 | ||
| 565 | CHAR_BIT c-src/emacs/src/lisp.h 2983 | ||
| 2122 | char_bits c-src/emacs/src/lisp.h 2443 | 566 | char_bits c-src/emacs/src/lisp.h 2443 |
| 2123 | char_table_specials c-src/emacs/src/lisp.h 1692 | 567 | CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 593 |
| 568 | CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 597 | ||
| 569 | CHAR_CLASS_MAX_LENGTH c-src/emacs/src/regex.h 605 | ||
| 570 | CHAR c-src/etags.c /^#define CHAR(x) ((unsigned int)(x) & (CHARS - 1))/ | ||
| 571 | CHAR_CTL c-src/emacs/src/lisp.h 2449 | ||
| 572 | CHAR_HYPER c-src/emacs/src/lisp.h 2447 | ||
| 573 | CHAR_META c-src/emacs/src/lisp.h 2450 | ||
| 574 | CHAR_MODIFIER_MASK c-src/emacs/src/lisp.h 2452 | ||
| 2124 | charpos c-src/emacs/src/lisp.h 2011 | 575 | charpos c-src/emacs/src/lisp.h 2011 |
| 576 | CHARS c-src/etags.c 157 | ||
| 2125 | charset_unibyte c-src/emacs/src/regex.h 410 | 577 | charset_unibyte c-src/emacs/src/regex.h 410 |
| 578 | CHAR_SHIFT c-src/emacs/src/lisp.h 2448 | ||
| 579 | CHAR_SUPER c-src/emacs/src/lisp.h 2446 | ||
| 580 | CHAR_TABLE_EXTRA_SLOTS c-src/emacs/src/lisp.h /^CHAR_TABLE_EXTRA_SLOTS (struct Lisp_Char_Table *ct/ | ||
| 581 | CHAR_TABLE_P c-src/emacs/src/lisp.h /^CHAR_TABLE_P (Lisp_Object a)$/ | ||
| 582 | CHAR_TABLE_REF_ASCII c-src/emacs/src/lisp.h /^CHAR_TABLE_REF_ASCII (Lisp_Object ct, ptrdiff_t id/ | ||
| 583 | CHAR_TABLE_REF c-src/emacs/src/lisp.h /^CHAR_TABLE_REF (Lisp_Object ct, int idx)$/ | ||
| 584 | CHAR_TABLE_SET c-src/emacs/src/lisp.h /^CHAR_TABLE_SET (Lisp_Object ct, int idx, Lisp_Obje/ | ||
| 585 | char_table_specials c-src/emacs/src/lisp.h 1692 | ||
| 586 | CHAR_TABLE_STANDARD_SLOTS c-src/emacs/src/lisp.h 1697 | ||
| 587 | CHARTAB_SIZE_BITS_0 c-src/emacs/src/lisp.h 1567 | ||
| 588 | CHARTAB_SIZE_BITS_1 c-src/emacs/src/lisp.h 1568 | ||
| 589 | CHARTAB_SIZE_BITS_2 c-src/emacs/src/lisp.h 1569 | ||
| 590 | CHARTAB_SIZE_BITS_3 c-src/emacs/src/lisp.h 1570 | ||
| 591 | CHARTAB_SIZE_BITS c-src/emacs/src/lisp.h 1565 | ||
| 592 | char tex-src/texinfo.tex /^\\def\\char{\\realbackslash char}%$/ | ||
| 593 | char tex-src/texinfo.tex /^\\def\\char{\\realbackslash char}$/ | ||
| 2126 | chartonmstr pas-src/common.pas /^function chartonmstr; (*($/ | 594 | chartonmstr pas-src/common.pas /^function chartonmstr; (*($/ |
| 2127 | checkQuotation php-src/lce_functions.php /^ function checkQuotation($str)$/ | 595 | CHAR_TYPE_SIZE y-src/cccp.y 87 |
| 596 | CHAR y-src/cccp.c 7 | ||
| 597 | CHECK_ARRAY c-src/emacs/src/lisp.h /^CHECK_ARRAY (Lisp_Object x, Lisp_Object predicate)/ | ||
| 598 | CHECK_BOOL_VECTOR c-src/emacs/src/lisp.h /^CHECK_BOOL_VECTOR (Lisp_Object x)$/ | ||
| 599 | CHECK_BUFFER c-src/emacs/src/lisp.h /^CHECK_BUFFER (Lisp_Object x)$/ | ||
| 600 | CHECK_CONS c-src/emacs/src/lisp.h /^CHECK_CONS (Lisp_Object x)$/ | ||
| 2128 | check_cons_list c-src/emacs/src/lisp.h /^# define check_cons_list() lisp_h_check_cons_list/ | 601 | check_cons_list c-src/emacs/src/lisp.h /^# define check_cons_list() lisp_h_check_cons_list/ |
| 2129 | checker make-src/Makefile /^checker:$/ | 602 | checker make-src/Makefile /^checker:$/ |
| 603 | CHECKFLAGS make-src/Makefile /^CHECKFLAGS=-DDEBUG -Wno-unused-function$/ | ||
| 2130 | checkhdr c-src/emacs/src/gmalloc.c /^checkhdr (const struct hdr *hdr)$/ | 604 | checkhdr c-src/emacs/src/gmalloc.c /^checkhdr (const struct hdr *hdr)$/ |
| 2131 | checkiso html-src/software.html /^checkiso$/ | 605 | checkiso html-src/software.html /^checkiso$/ |
| 606 | CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 571 | ||
| 607 | CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 572 | ||
| 608 | CHECK_LISP_OBJECT_TYPE c-src/emacs/src/lisp.h 579 | ||
| 609 | CHECK_LIST_CONS c-src/emacs/src/lisp.h /^# define CHECK_LIST_CONS(x, y) lisp_h_CHECK_LIST_C/ | ||
| 610 | CHECK_LIST c-src/emacs/src/lisp.h /^CHECK_LIST (Lisp_Object x)$/ | ||
| 611 | CHECK_NATNUM c-src/emacs/src/lisp.h /^CHECK_NATNUM (Lisp_Object x)$/ | ||
| 612 | CHECK_NUMBER_CAR c-src/emacs/src/lisp.h /^CHECK_NUMBER_CAR (Lisp_Object x)$/ | ||
| 613 | CHECK_NUMBER_CDR c-src/emacs/src/lisp.h /^CHECK_NUMBER_CDR (Lisp_Object x)$/ | ||
| 614 | CHECK_NUMBER_COERCE_MARKER c-src/emacs/src/lisp.h /^#define CHECK_NUMBER_COERCE_MARKER(x) \\$/ | ||
| 615 | CHECK_NUMBER c-src/emacs/src/lisp.h /^# define CHECK_NUMBER(x) lisp_h_CHECK_NUMBER (x)$/ | ||
| 616 | CHECK_NUMBER_OR_FLOAT_COERCE_MARKER c-src/emacs/src/lisp.h /^#define CHECK_NUMBER_OR_FLOAT_COERCE_MARKER(x) / | ||
| 617 | CHECK_NUMBER_OR_FLOAT c-src/emacs/src/lisp.h /^CHECK_NUMBER_OR_FLOAT (Lisp_Object x)$/ | ||
| 618 | CHECKOBJS make-src/Makefile /^CHECKOBJS=chkmalloc.o chkxm.o$/ | ||
| 619 | CHECK_PROCESS c-src/emacs/src/lisp.h /^CHECK_PROCESS (Lisp_Object x)$/ | ||
| 620 | checkQuotation php-src/lce_functions.php /^ function checkQuotation($str)$/ | ||
| 621 | CHECK_RANGED_INTEGER c-src/emacs/src/lisp.h /^#define CHECK_RANGED_INTEGER(x, lo, hi) \\$/ | ||
| 622 | CHECK_STRING_CAR c-src/emacs/src/lisp.h /^CHECK_STRING_CAR (Lisp_Object x)$/ | ||
| 623 | CHECK_SYMBOL c-src/emacs/src/lisp.h /^# define CHECK_SYMBOL(x) lisp_h_CHECK_SYMBOL (x)$/ | ||
| 624 | CHECK_TYPE c-src/emacs/src/lisp.h /^# define CHECK_TYPE(ok, predicate, x) lisp_h_CHECK/ | ||
| 625 | CHECK_TYPE_RANGED_INTEGER c-src/emacs/src/lisp.h /^#define CHECK_TYPE_RANGED_INTEGER(type, x) \\$/ | ||
| 626 | CHECK_VECTOR c-src/emacs/src/lisp.h /^CHECK_VECTOR (Lisp_Object x)$/ | ||
| 627 | CHECK_VECTOR_OR_STRING c-src/emacs/src/lisp.h /^CHECK_VECTOR_OR_STRING (Lisp_Object x)$/ | ||
| 628 | CHECK_WINDOW c-src/emacs/src/lisp.h /^CHECK_WINDOW (Lisp_Object x)$/ | ||
| 2132 | chfopen tex-src/texinfo.tex /^\\def\\chfopen #1#2{\\chapoddpage {\\chapfonts$/ | 629 | chfopen tex-src/texinfo.tex /^\\def\\chfopen #1#2{\\chapoddpage {\\chapfonts$/ |
| 2133 | chfplain tex-src/texinfo.tex /^\\def\\chfplain #1#2{%$/ | 630 | chfplain tex-src/texinfo.tex /^\\def\\chfplain #1#2{%$/ |
| 2134 | childDidExit objc-src/Subprocess.m /^- childDidExit$/ | 631 | childDidExit objc-src/Subprocess.m /^- childDidExit$/ |
| 2135 | chunks_free c-src/emacs/src/gmalloc.c 313 | 632 | chunks_free c-src/emacs/src/gmalloc.c 313 |
| 633 | _chunks_free c-src/emacs/src/gmalloc.c 376 | ||
| 2136 | chunks_used c-src/emacs/src/gmalloc.c 311 | 634 | chunks_used c-src/emacs/src/gmalloc.c 311 |
| 2137 | cindex tex-src/texinfo.tex /^\\def\\cindex {\\cpindex}$/ | 635 | _chunks_used c-src/emacs/src/gmalloc.c 374 |
| 2138 | cindexsub tex-src/texinfo.tex /^\\def\\cindexsub {\\begingroup\\obeylines\\cindexsub}$/ | 636 | cindexsub tex-src/texinfo.tex /^\\def\\cindexsub {\\begingroup\\obeylines\\cindexsub}$/ |
| 2139 | cindexsub tex-src/texinfo.tex /^\\gdef\\cindexsub "#1" #2^^M{\\endgroup %$/ | 637 | cindexsub tex-src/texinfo.tex /^\\gdef\\cindexsub "#1" #2^^M{\\endgroup %$/ |
| 2140 | cite tex-src/texinfo.tex /^\\def\\cite##1{\\realbackslash cite {##1}}$/ | 638 | cindex tex-src/texinfo.tex /^\\def\\cindex {\\cpindex}$/ |
| 639 | Circle.getPos lua-src/test.lua /^function Circle.getPos ()$/ | ||
| 2141 | cite tex-src/texinfo.tex /^\\def\\cite##1{\\realbackslash cite {##1}}%$/ | 640 | cite tex-src/texinfo.tex /^\\def\\cite##1{\\realbackslash cite {##1}}%$/ |
| 641 | cite tex-src/texinfo.tex /^\\def\\cite##1{\\realbackslash cite {##1}}$/ | ||
| 2142 | cite tex-src/texinfo.tex /^\\let\\cite=\\indexdummyfont$/ | 642 | cite tex-src/texinfo.tex /^\\let\\cite=\\indexdummyfont$/ |
| 2143 | cite tex-src/texinfo.tex /^\\let\\cite=\\smartitalic$/ | 643 | cite tex-src/texinfo.tex /^\\let\\cite=\\smartitalic$/ |
| 644 | C_JAVA c-src/etags.c 2197 | ||
| 2144 | cjava c-src/etags.c 2936 | 645 | cjava c-src/etags.c 2936 |
| 2145 | class_method ruby-src/test.rb /^ def ClassExample.class_method$/ | 646 | Cjava_entries c-src/etags.c /^Cjava_entries (FILE *inf)$/ |
| 647 | Cjava_help c-src/etags.c 551 | ||
| 648 | Cjava_suffixes c-src/etags.c 549 | ||
| 649 | CK_ABS_C y-src/parse.y /^#define CK_ABS_C(x) if((x)<MIN_COL || (x)>MAX_COL)/ | ||
| 650 | CK_ABS_R y-src/parse.y /^#define CK_ABS_R(x) if((x)<MIN_ROW || (x)>MAX_ROW)/ | ||
| 651 | CK_REL_C y-src/parse.y /^#define CK_REL_C(x) if( ((x)>0 && MAX_COL-(x)<cu/ | ||
| 652 | CK_REL_R y-src/parse.y /^#define CK_REL_R(x) if( ((x)>0 && MAX_ROW-(x)<cu/ | ||
| 653 | ClassExample ruby-src/test.rb /^ class ClassExample$/ | ||
| 2146 | classifyLine php-src/lce_functions.php /^ function classifyLine($line)$/ | 654 | classifyLine php-src/lce_functions.php /^ function classifyLine($line)$/ |
| 655 | class_method ruby-src/test.rb /^ def ClassExample.class_method$/ | ||
| 2147 | clean make-src/Makefile /^clean:$/ | 656 | clean make-src/Makefile /^clean:$/ |
| 2148 | clear cp-src/conway.hpp /^ void clear(void) { alive = 0; }$/ | ||
| 2149 | clear tex-src/texinfo.tex /^\\def\\clear{\\parsearg\\clearxxx}$/ | ||
| 2150 | clear-abbrev-table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, / | 657 | clear-abbrev-table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, / |
| 2151 | clear-this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/ | ||
| 2152 | clearAllKey objcpp-src/SimpleCalc.M /^- clearAllKey:sender$/ | 658 | clearAllKey objcpp-src/SimpleCalc.M /^- clearAllKey:sender$/ |
| 2153 | clearKey objcpp-src/SimpleCalc.M /^- clearKey:sender$/ | 659 | clear cp-src/conway.hpp /^ void clear(void) { alive = 0; }$/ |
| 2154 | clear_event c-src/emacs/src/keyboard.c /^clear_event (struct input_event *event)$/ | 660 | clear_event c-src/emacs/src/keyboard.c /^clear_event (struct input_event *event)$/ |
| 2155 | clear_input_pending c-src/emacs/src/keyboard.c /^clear_input_pending (void)$/ | 661 | clear_input_pending c-src/emacs/src/keyboard.c /^clear_input_pending (void)$/ |
| 662 | clearKey objcpp-src/SimpleCalc.M /^- clearKey:sender$/ | ||
| 2156 | clear_neighbors cp-src/clheir.cpp /^void discrete_location::clear_neighbors(void)$/ | 663 | clear_neighbors cp-src/clheir.cpp /^void discrete_location::clear_neighbors(void)$/ |
| 664 | Clear/p ada-src/2ataspri.adb /^ procedure Clear (Cell : in out TAS_Cell) is$/ | ||
| 665 | Clear/p ada-src/2ataspri.ads /^ procedure Clear (Cell : in out TAS_Cell)/ | ||
| 2157 | clear_screen cp-src/screen.cpp /^void clear_screen(void)$/ | 666 | clear_screen cp-src/screen.cpp /^void clear_screen(void)$/ |
| 667 | clear tex-src/texinfo.tex /^\\def\\clear{\\parsearg\\clearxxx}$/ | ||
| 668 | clear-this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/ | ||
| 2158 | clear_waiting_for_input c-src/emacs/src/keyboard.c /^clear_waiting_for_input (void)$/ | 669 | clear_waiting_for_input c-src/emacs/src/keyboard.c /^clear_waiting_for_input (void)$/ |
| 2159 | clearxxx tex-src/texinfo.tex /^\\def\\clearxxx #1{$/ | 670 | clearxxx tex-src/texinfo.tex /^\\def\\clearxxx #1{$/ |
| 2160 | clnr tex-src/texinfo.tex /^\\def\\opnr{{\\sf\\char`\\(}} \\def\\clnr{{\\sf\\char`\\)}} / | 671 | clnr tex-src/texinfo.tex /^\\def\\opnr{{\\sf\\char`\\(}} \\def\\clnr{{\\sf\\char`\\)}} / |
| @@ -2163,24 +674,45 @@ cmd_error c-src/emacs/src/keyboard.c /^cmd_error (Lisp_Object data)$/ | |||
| 2163 | cmd_error_internal c-src/emacs/src/keyboard.c /^cmd_error_internal (Lisp_Object data, const char */ | 674 | cmd_error_internal c-src/emacs/src/keyboard.c /^cmd_error_internal (Lisp_Object data, const char */ |
| 2164 | cmpfn c-src/emacs/src/lisp.h /^ bool (*cmpfn) (struct hash_table_test *t, Lisp_O/ | 675 | cmpfn c-src/emacs/src/lisp.h /^ bool (*cmpfn) (struct hash_table_test *t, Lisp_O/ |
| 2165 | cmt prol-src/natded.prolog /^cmt:-$/ | 676 | cmt prol-src/natded.prolog /^cmt:-$/ |
| 677 | CMultiChannelCSC19_3D cp-src/c.C 2 | ||
| 2166 | cname c-src/etags.c 2519 | 678 | cname c-src/etags.c 2519 |
| 679 | CNL c-src/etags.c /^#define CNL() \\$/ | ||
| 680 | CNL_SAVE_DEFINEDEF c-src/etags.c /^#define CNL_SAVE_DEFINEDEF() \\$/ | ||
| 2167 | cno c-src/etags.c 224 | 681 | cno c-src/etags.c 224 |
| 2168 | code tex-src/texinfo.tex /^\\def\\code##1{\\realbackslash code {##1}}$/ | 682 | COBOLFLAGS make-src/Makefile /^COBOLFLAGS=--language=none --regex='\/.......[a-zA-/ |
| 683 | Cobol_help c-src/etags.c 558 | ||
| 684 | Cobol_paragraphs c-src/etags.c /^Cobol_paragraphs (FILE *inf)$/ | ||
| 685 | Cobol_suffixes c-src/etags.c 556 | ||
| 2169 | code tex-src/texinfo.tex /^\\def\\code##1{\\realbackslash code {##1}}%$/ | 686 | code tex-src/texinfo.tex /^\\def\\code##1{\\realbackslash code {##1}}%$/ |
| 687 | code tex-src/texinfo.tex /^\\def\\code##1{\\realbackslash code {##1}}$/ | ||
| 2170 | code tex-src/texinfo.tex /^\\let\\code=\\indexdummyfont$/ | 688 | code tex-src/texinfo.tex /^\\let\\code=\\indexdummyfont$/ |
| 2171 | code tex-src/texinfo.tex /^\\let\\code=\\tclose$/ | 689 | code tex-src/texinfo.tex /^\\let\\code=\\tclose$/ |
| 2172 | colori cp-src/c.C 40 | 690 | colori cp-src/c.C 40 |
| 691 | COLORS cp-src/screen.hpp 11 | ||
| 692 | __COLORS cp-src/screen.hpp 9 | ||
| 693 | /colorsetup ps-src/rfc1245.ps /^\/colorsetup {$/ | ||
| 2173 | commaargvals prol-src/natded.prolog /^commaargvals(Args) -->$/ | 694 | commaargvals prol-src/natded.prolog /^commaargvals(Args) -->$/ |
| 2174 | command c-src/etags.c 187 | 695 | command c-src/etags.c 187 |
| 2175 | command-error-default-function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/ | 696 | command-error-default-function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/ |
| 2176 | command_loop c-src/emacs/src/keyboard.c /^command_loop (void)$/ | ||
| 2177 | command_loop_1 c-src/emacs/src/keyboard.c /^command_loop_1 (void)$/ | 697 | command_loop_1 c-src/emacs/src/keyboard.c /^command_loop_1 (void)$/ |
| 2178 | command_loop_2 c-src/emacs/src/keyboard.c /^command_loop_2 (Lisp_Object ignore)$/ | 698 | command_loop_2 c-src/emacs/src/keyboard.c /^command_loop_2 (Lisp_Object ignore)$/ |
| 699 | command_loop c-src/emacs/src/keyboard.c /^command_loop (void)$/ | ||
| 2179 | command_loop_level c-src/emacs/src/keyboard.c 195 | 700 | command_loop_level c-src/emacs/src/keyboard.c 195 |
| 701 | CommentAD php-src/lce_functions.php 70 | ||
| 702 | CommentAD php-src/lce_functions.php /^ function CommentAD($/ | ||
| 2180 | comment php-src/lce_functions.php /^ function comment($line, $class)$/ | 703 | comment php-src/lce_functions.php /^ function comment($line, $class)$/ |
| 2181 | comment tex-src/texinfo.tex /^\\def\\comment{\\catcode 64=\\other \\catcode 123=\\othe/ | 704 | comment tex-src/texinfo.tex /^\\def\\comment{\\catcode 64=\\other \\catcode 123=\\othe/ |
| 2182 | commentxxx tex-src/texinfo.tex /^\\def\\commentxxx #1{\\catcode 64=0 \\catcode 123=1 \\c/ | 705 | commentxxx tex-src/texinfo.tex /^\\def\\commentxxx #1{\\catcode 64=0 \\catcode 123=1 \\c/ |
| 706 | /COMMONBITMAPc ps-src/rfc1245.ps /^\/COMMONBITMAPc { $/ | ||
| 707 | /COMMONBITMAP ps-src/rfc1245.ps /^\/COMMONBITMAP { $/ | ||
| 2183 | commutativity_assertion merc-src/accumulator.m /^:- pred commutativity_assertion(module_info::in,li/ | 708 | commutativity_assertion merc-src/accumulator.m /^:- pred commutativity_assertion(module_info::in,li/ |
| 709 | COMPILED_ARGLIST c-src/emacs/src/lisp.h 2431 | ||
| 710 | COMPILED_BYTECODE c-src/emacs/src/lisp.h 2432 | ||
| 711 | COMPILED_CONSTANTS c-src/emacs/src/lisp.h 2433 | ||
| 712 | COMPILED_DOC_STRING c-src/emacs/src/lisp.h 2435 | ||
| 713 | COMPILED_INTERACTIVE c-src/emacs/src/lisp.h 2436 | ||
| 714 | COMPILEDP c-src/emacs/src/lisp.h /^COMPILEDP (Lisp_Object a)$/ | ||
| 715 | COMPILED_STACK_DEPTH c-src/emacs/src/lisp.h 2434 | ||
| 2184 | compile_empty prol-src/natded.prolog /^compile_empty:-$/ | 716 | compile_empty prol-src/natded.prolog /^compile_empty:-$/ |
| 2185 | compile_lex prol-src/natded.prolog /^compile_lex(File):-$/ | 717 | compile_lex prol-src/natded.prolog /^compile_lex(File):-$/ |
| 2186 | complete prol-src/natded.prolog /^complete(Cat):-$/ | 718 | complete prol-src/natded.prolog /^complete(Cat):-$/ |
| @@ -2192,53 +724,102 @@ compute_next_state cp-src/conway.hpp /^ void compute_next_state(void)$/ | |||
| 2192 | conalgorithm html-src/algrthms.html /^Convolutionally$/ | 724 | conalgorithm html-src/algrthms.html /^Convolutionally$/ |
| 2193 | concat c-src/etags.c /^concat (const char *s1, const char *s2, const char/ | 725 | concat c-src/etags.c /^concat (const char *s1, const char *s2, const char/ |
| 2194 | concatenatenamestrings pas-src/common.pas /^function concatenatenamestrings; (*($/ | 726 | concatenatenamestrings pas-src/common.pas /^function concatenatenamestrings; (*($/ |
| 727 | ConcatT pas-src/common.pas /^function ConcatT;(*($/ | ||
| 728 | Concept Index tex-src/gzip.texi /^@node Concept Index, , Problems, Top$/ | ||
| 729 | CONDITION_CASE c-src/emacs/src/lisp.h 3021 | ||
| 730 | Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is$/ | ||
| 731 | Condition_Variable/t ada-src/2ataspri.ads /^ type Condition_Variable is private;$/ | ||
| 732 | Cond_Signal/p ada-src/2ataspri.adb /^ procedure Cond_Signal (Cond : in out Condition_/ | ||
| 733 | Cond_Signal/p ada-src/2ataspri.ads /^ procedure Cond_Signal (Cond : in out Condition_/ | ||
| 734 | Cond_Timed_Wait/p ada-src/2ataspri.adb /^ procedure Cond_Timed_Wait$/ | ||
| 735 | Cond_Timed_Wait/p ada-src/2ataspri.ads /^ procedure Cond_Timed_Wait$/ | ||
| 736 | Cond_Wait/p ada-src/2ataspri.adb /^ procedure Cond_Wait (Cond : in out Condition_Va/ | ||
| 737 | Cond_Wait/p ada-src/2ataspri.ads /^ procedure Cond_Wait (Cond : in out Condition_Va/ | ||
| 738 | Configure pyt-src/server.py /^class Configure(Frame, ControlEdit):$/ | ||
| 739 | ConfirmQuit pyt-src/server.py /^def ConfirmQuit(frame, context):$/ | ||
| 2195 | consider_token c-src/etags.c /^consider_token (char *str, int len, int c, int *c_/ | 740 | consider_token c-src/etags.c /^consider_token (char *str, int len, int c, int *c_/ |
| 741 | CONSP c-src/emacs/src/lisp.h /^# define CONSP(x) lisp_h_CONSP (x)$/ | ||
| 742 | constant_args c-src/h.h 27 | ||
| 2196 | constant c-src/emacs/src/lisp.h 668 | 743 | constant c-src/emacs/src/lisp.h 668 |
| 2197 | constant c-src/h.h 29 | 744 | constant c-src/h.h 29 |
| 745 | Constant ruby-src/test1.ru 42 | ||
| 2198 | constant y-src/cccp.y 112 | 746 | constant y-src/cccp.y 112 |
| 2199 | constant_args c-src/h.h 27 | 747 | CONS_TO_INTEGER c-src/emacs/src/lisp.h /^#define CONS_TO_INTEGER(cons, type, var) \\$/ |
| 2200 | constype c-src/emacs/src/lisp.h 3739 | 748 | constype c-src/emacs/src/lisp.h 3739 |
| 749 | CONSTYPE_HEAP c-src/emacs/src/lisp.h 3739 | ||
| 750 | CONSTYPE_PURE c-src/emacs/src/lisp.h 3739 | ||
| 2201 | consult_lex prol-src/natded.prolog /^consult_lex:-$/ | 751 | consult_lex prol-src/natded.prolog /^consult_lex:-$/ |
| 2202 | contents c-src/emacs/src/lisp.h 1372 | 752 | contents c-src/emacs/src/lisp.h 1372 |
| 2203 | contents c-src/emacs/src/lisp.h 1600 | 753 | contents c-src/emacs/src/lisp.h 1600 |
| 2204 | contents c-src/emacs/src/lisp.h 1624 | 754 | contents c-src/emacs/src/lisp.h 1624 |
| 2205 | contents tex-src/texinfo.tex /^\\let\\contents=\\relax$/ | 755 | contents tex-src/texinfo.tex /^\\let\\contents=\\relax$/ |
| 2206 | contents tex-src/texinfo.tex /^\\outer\\def\\contents{%$/ | 756 | contents tex-src/texinfo.tex /^\\outer\\def\\contents{%$/ |
| 757 | ControlEdit pyt-src/server.py /^class ControlEdit(Frame):$/ | ||
| 758 | Controls pyt-src/server.py /^class Controls:$/ | ||
| 759 | CONVERT_CHARSTRING_TO_VALUE pas-src/common.pas /^procedure CONVERT_CHARSTRING_TO_VALUE;(*($/ | ||
| 760 | Copying tex-src/gzip.texi /^@node Copying, Overview, , Top$/ | ||
| 2207 | copyright tex-src/texinfo.tex /^\\def\\copyright{\\realbackslash copyright }%$/ | 761 | copyright tex-src/texinfo.tex /^\\def\\copyright{\\realbackslash copyright }%$/ |
| 2208 | copyright tex-src/texinfo.tex /^\\def\\copyright{\\realbackslash copyright}$/ | 762 | copyright tex-src/texinfo.tex /^\\def\\copyright{\\realbackslash copyright}$/ |
| 763 | CopyTextString pas-src/common.pas /^function CopyTextString;(*($/ | ||
| 2209 | count c-src/emacs/src/lisp.h 1863 | 764 | count c-src/emacs/src/lisp.h 1863 |
| 2210 | count_layers lua-src/allegro.lua /^local function count_layers (layer)$/ | ||
| 2211 | count_words c-src/tab.c /^static int count_words(char *str, char delim)$/ | ||
| 2212 | counter cp-src/c.C 33 | 765 | counter cp-src/c.C 33 |
| 2213 | counter cp-src/c.C 36 | 766 | counter cp-src/c.C 36 |
| 767 | count_layers lua-src/allegro.lua /^local function count_layers (layer)$/ | ||
| 768 | count_words c-src/tab.c /^static int count_words(char *str, char delim)$/ | ||
| 2214 | cow cp-src/c.C 127 | 769 | cow cp-src/c.C 127 |
| 2215 | cow cp-src/c.C 131 | 770 | cow cp-src/c.C 131 |
| 771 | C_PLAIN c-src/etags.c 2194 | ||
| 772 | C_PLPL c-src/etags.c 2195 | ||
| 2216 | cplpl c-src/etags.c 2935 | 773 | cplpl c-src/etags.c 2935 |
| 2217 | create-bar forth-src/test-forth.fth /^: create-bar foo ;$/ | 774 | Cplusplus_entries c-src/etags.c /^Cplusplus_entries (FILE *inf)$/ |
| 2218 | createPOEntries php-src/lce_functions.php /^ function createPOEntries()$/ | 775 | Cplusplus_help c-src/etags.c 540 |
| 2219 | createWidgets pyt-src/server.py /^ def createWidgets(self):$/ | 776 | Cplusplus_suffixes c-src/etags.c 535 |
| 2220 | createWidgets pyt-src/server.py /^ def createWidgets(self, host):$/ | 777 | CPPFLAGS make-src/Makefile /^CPPFLAGS=${CHECKFLAGS} -DSTDC_HEADERS -DHAVE_GETCW/ |
| 778 | CPSRC make-src/Makefile /^CPSRC=c.C abstract.C abstract.H cfront.H burton.cp/ | ||
| 779 | /C ps-src/rfc1245.ps /^\/C { $/ | ||
| 2221 | create_acc_call merc-src/accumulator.m /^:- func create_acc_call(hlds_goal::in(goal_plain_c/ | 780 | create_acc_call merc-src/accumulator.m /^:- func create_acc_call(hlds_goal::in(goal_plain_c/ |
| 2222 | create_acc_goal merc-src/accumulator.m /^:- pred create_acc_goal(hlds_goal::in, accu_substs/ | 781 | create_acc_goal merc-src/accumulator.m /^:- pred create_acc_goal(hlds_goal::in, accu_substs/ |
| 782 | create-bar forth-src/test-forth.fth /^: create-bar foo ;$/ | ||
| 783 | Create_LL_Task/p ada-src/2ataspri.adb /^ procedure Create_LL_Task$/ | ||
| 784 | Create_LL_Task/p ada-src/2ataspri.ads /^ procedure Create_LL_Task$/ | ||
| 2223 | create_new_base_goals merc-src/accumulator.m /^:- func create_new_base_goals(set(accu_goal_id), a/ | 785 | create_new_base_goals merc-src/accumulator.m /^:- func create_new_base_goals(set(accu_goal_id), a/ |
| 2224 | create_new_orig_recursive_goals merc-src/accumulator.m /^:- func create_new_orig_recursive_goals(set(accu_g/ | 786 | create_new_orig_recursive_goals merc-src/accumulator.m /^:- func create_new_orig_recursive_goals(set(accu_g/ |
| 2225 | create_new_recursive_goals merc-src/accumulator.m /^:- func create_new_recursive_goals(set(accu_goal_i/ | 787 | create_new_recursive_goals merc-src/accumulator.m /^:- func create_new_recursive_goals(set(accu_goal_i/ |
| 2226 | create_new_var merc-src/accumulator.m /^:- pred create_new_var(prog_var::in, string::in, p/ | 788 | create_new_var merc-src/accumulator.m /^:- pred create_new_var(prog_var::in, string::in, p/ |
| 2227 | create_orig_goal merc-src/accumulator.m /^:- pred create_orig_goal(hlds_goal::in, accu_subst/ | 789 | create_orig_goal merc-src/accumulator.m /^:- pred create_orig_goal(hlds_goal::in, accu_subst/ |
| 790 | createPOEntries php-src/lce_functions.php /^ function createPOEntries()$/ | ||
| 791 | createWidgets pyt-src/server.py /^ def createWidgets(self):$/ | ||
| 792 | createWidgets pyt-src/server.py /^ def createWidgets(self, host):$/ | ||
| 2228 | cropmarks tex-src/texinfo.tex /^\\def\\cropmarks{\\let\\onepageout=\\croppageout }$/ | 793 | cropmarks tex-src/texinfo.tex /^\\def\\cropmarks{\\let\\onepageout=\\croppageout }$/ |
| 2229 | croppageout tex-src/texinfo.tex /^\\def\\croppageout#1{\\hoffset=0pt % make sure this d/ | 794 | croppageout tex-src/texinfo.tex /^\\def\\croppageout#1{\\hoffset=0pt % make sure this d/ |
| 795 | C ruby-src/test1.ru /^class A::C; end$/ | ||
| 2230 | cscInitTime cp-src/c.C 7 | 796 | cscInitTime cp-src/c.C 7 |
| 2231 | cscSegmentationTime cp-src/c.C 8 | 797 | cscSegmentationTime cp-src/c.C 8 |
| 798 | csname tex-src/texinfo.tex /^{\\catcode`\\'=\\other\\expandafter \\gdef \\csname X#1\\/ | ||
| 799 | csname tex-src/texinfo.tex /^\\expandafter\\let\\csname#1indfile\\endcsname=\\synind/ | ||
| 2232 | csname tex-src/texinfo.tex /^\\expandafter\\let\\csname IF#1\\endcsname=\\relax}$/ | 800 | csname tex-src/texinfo.tex /^\\expandafter\\let\\csname IF#1\\endcsname=\\relax}$/ |
| 2233 | csname tex-src/texinfo.tex /^\\expandafter\\let\\csname IF#1\\endcsname=\\set}$/ | 801 | csname tex-src/texinfo.tex /^\\expandafter\\let\\csname IF#1\\endcsname=\\set}$/ |
| 2234 | csname tex-src/texinfo.tex /^\\expandafter\\let\\csname#1indfile\\endcsname=\\synind/ | ||
| 2235 | csname tex-src/texinfo.tex /^\\expandafter\\xdef\\csname#1index\\endcsname{% % Defi/ | 802 | csname tex-src/texinfo.tex /^\\expandafter\\xdef\\csname#1index\\endcsname{% % Defi/ |
| 2236 | csname tex-src/texinfo.tex /^{\\catcode`\\'=\\other\\expandafter \\gdef \\csname X#1\\/ | 803 | CSRC make-src/Makefile /^CSRC=abbrev.c ..\/etags\/h.h .\/\/c.c torture.c getopt/ |
| 804 | C_stab_entry c-src/etags.c 2271 | ||
| 2237 | cstack c-src/etags.c 2523 | 805 | cstack c-src/etags.c 2523 |
| 806 | C_STAR c-src/etags.c 2196 | ||
| 807 | Cstar_entries c-src/etags.c /^Cstar_entries (FILE *inf)$/ | ||
| 808 | Cstar_suffixes c-src/etags.c 562 | ||
| 809 | C_symtype c-src/etags.c /^C_symtype (char *str, int len, int c_ext)$/ | ||
| 810 | CTAGS13 CTAGS14 CTAGS15 make-src/Makefile /^CTAGS13 CTAGS14 CTAGS15: ctags% ${infiles}$/ | ||
| 811 | CTAGS c-src/etags.c 146 | ||
| 812 | CTAGS c-src/etags.c 147 | ||
| 813 | CTAGS c-src/etags.c 149 | ||
| 814 | CTAGS make-src/Makefile /^CTAGS: ctags ${infiles}$/ | ||
| 815 | CTAGS% make-src/Makefile /^CTAGS%: ctags% ${infiles}$/ | ||
| 2238 | ctags make-src/Makefile /^ctags: etags.c ${OBJS}$/ | 816 | ctags make-src/Makefile /^ctags: etags.c ${OBJS}$/ |
| 817 | c tex-src/texinfo.tex /^\\let\\b=\\ptexb \\let\\c=\\ptexc \\let\\i=\\ptexi \\let\\t=\\/ | ||
| 818 | c tex-src/texinfo.tex /^\\let\\c=\\comment$/ | ||
| 2239 | ctl tex-src/texinfo.tex /^\\def\\ctl{{\\circle\\char'013\\hskip -6pt}}% 6pt from / | 819 | ctl tex-src/texinfo.tex /^\\def\\ctl{{\\circle\\char'013\\hskip -6pt}}% 6pt from / |
| 2240 | ctr tex-src/texinfo.tex /^\\def\\ctr{{\\hskip 6pt\\circle\\char'010}}$/ | ||
| 2241 | ctrl tex-src/texinfo.tex /^\\def\\ctrl #1{{\\tt \\rawbackslash \\hat}#1}$/ | 820 | ctrl tex-src/texinfo.tex /^\\def\\ctrl #1{{\\tt \\rawbackslash \\hat}#1}$/ |
| 821 | ctr tex-src/texinfo.tex /^\\def\\ctr{{\\hskip 6pt\\circle\\char'010}}$/ | ||
| 822 | Cube.data.getFoo lua-src/test.lua /^function Cube.data.getFoo ()$/ | ||
| 2242 | curlb c-src/etags.c 2929 | 823 | curlb c-src/etags.c 2929 |
| 2243 | curlinepos c-src/etags.c 2931 | 824 | curlinepos c-src/etags.c 2931 |
| 2244 | current-idle-time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/ | 825 | current-idle-time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/ |
| @@ -2253,99 +834,144 @@ cvarheader\defcvtype tex-src/texinfo.tex /^\\defopvarparsebody\\Edefcv\\defcvx\\ | |||
| 2253 | cvtype tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defcvtype{} of #1}%$/ | 834 | cvtype tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defcvtype{} of #1}%$/ |
| 2254 | cvtype tex-src/texinfo.tex /^\\defopvarparsebody\\Edefcv\\defcvx\\defcvarheader\\def/ | 835 | cvtype tex-src/texinfo.tex /^\\defopvarparsebody\\Edefcv\\defcvx\\defcvarheader\\def/ |
| 2255 | cvx\defcvarheader tex-src/texinfo.tex /^\\defopvarparsebody\\Edefcv\\defcvx\\defcvarheader\\def/ | 836 | cvx\defcvarheader tex-src/texinfo.tex /^\\defopvarparsebody\\Edefcv\\defcvx\\defcvarheader\\def/ |
| 2256 | d c-src/emacs/src/lisp.h 4673 | 837 | CYAN cp-src/screen.hpp 15 |
| 2257 | d c-src/emacs/src/lisp.h 4679 | 838 | DAEMON_RUNNING c-src/emacs/src/lisp.h 4258 |
| 2258 | d c.c 180 | 839 | DAEMON_RUNNING c-src/emacs/src/lisp.h 4262 |
| 840 | DARKGRAY cp-src/screen.hpp 20 | ||
| 2259 | data c-src/emacs/src/lisp.h 1395 | 841 | data c-src/emacs/src/lisp.h 1395 |
| 2260 | data c-src/emacs/src/lisp.h 2129 | 842 | data c-src/emacs/src/lisp.h 2129 |
| 2261 | data c-src/emacs/src/lisp.h 2395 | 843 | data c-src/emacs/src/lisp.h 2395 |
| 844 | d c.c 180 | ||
| 845 | D cp-src/fail.C 41 | ||
| 846 | D cp-src/fail.C /^ D() : ::A::T2::T(97), x(1066) {}$/ | ||
| 847 | d c-src/emacs/src/lisp.h 4673 | ||
| 848 | d c-src/emacs/src/lisp.h 4679 | ||
| 2262 | ddefineseen c-src/etags.c 2462 | 849 | ddefineseen c-src/etags.c 2462 |
| 850 | DEAFUN c.c /^DEAFUN ("expand-file-name", Fexpand_file_name, Sex/ | ||
| 2263 | debian-bug html-src/software.html /^debian-bug.el$/ | 851 | debian-bug html-src/software.html /^debian-bug.el$/ |
| 852 | Debug cp-src/functions.cpp /^void Debug ( int lineno, int level, char* func , c/ | ||
| 853 | DEBUG c-src/etags.c 84 | ||
| 854 | DEBUG c-src/etags.c 85 | ||
| 855 | DEBUG c-src/etags.c 87 | ||
| 856 | DEBUG objc-src/PackInsp.m 37 | ||
| 2264 | debug_on_exit c-src/emacs/src/lisp.h 2984 | 857 | debug_on_exit c-src/emacs/src/lisp.h 2984 |
| 2265 | decimalKey objcpp-src/SimpleCalc.M /^- decimalKey:sender$/ | 858 | decimalKey objcpp-src/SimpleCalc.M /^- decimalKey:sender$/ |
| 2266 | declared_special c-src/emacs/src/lisp.h 676 | 859 | declared_special c-src/emacs/src/lisp.h 676 |
| 860 | DECLARE_GDB_SYM c-src/emacs/src/lisp.h /^#define DECLARE_GDB_SYM(type, id) type const id EX/ | ||
| 2267 | decode_timer c-src/emacs/src/keyboard.c /^decode_timer (Lisp_Object timer, struct timespec */ | 861 | decode_timer c-src/emacs/src/keyboard.c /^decode_timer (Lisp_Object timer, struct timespec */ |
| 2268 | def c-src/h.h 35 | ||
| 2269 | def c-src/h.h 38 | ||
| 2270 | defalt c-src/emacs/src/lisp.h 1585 | 862 | defalt c-src/emacs/src/lisp.h 1585 |
| 2271 | default-tags-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar default-tags-table-function nil$/ | ||
| 2272 | default_C_entries c-src/etags.c /^default_C_entries (FILE *inf)$/ | 863 | default_C_entries c-src/etags.c /^default_C_entries (FILE *inf)$/ |
| 2273 | default_C_help c-src/etags.c 515 | 864 | default_C_help c-src/etags.c 515 |
| 2274 | default_C_help c-src/etags.c 523 | 865 | default_C_help c-src/etags.c 523 |
| 2275 | default_C_suffixes c-src/etags.c 512 | 866 | default_C_suffixes c-src/etags.c 512 |
| 867 | DEFAULT_HASH_SIZE c-src/emacs/src/lisp.h 1940 | ||
| 868 | __default_morecore c-src/emacs/src/gmalloc.c /^__default_morecore (ptrdiff_t increment)$/ | ||
| 869 | DEFAULT_REHASH_SIZE c-src/emacs/src/lisp.h 1950 | ||
| 870 | DEFAULT_REHASH_THRESHOLD c-src/emacs/src/lisp.h 1946 | ||
| 871 | default-tags-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar default-tags-table-function nil$/ | ||
| 2276 | defcell c-src/emacs/src/lisp.h 2351 | 872 | defcell c-src/emacs/src/lisp.h 2351 |
| 2277 | defcodeindex tex-src/texinfo.tex /^\\def\\defcodeindex{\\parsearg\\newcodeindex}$/ | 873 | defcodeindex tex-src/texinfo.tex /^\\def\\defcodeindex{\\parsearg\\newcodeindex}$/ |
| 2278 | defcv tex-src/texinfo.tex /^\\def\\defcv #1 {\\def\\defcvtype{#1}%$/ | 874 | def c-src/h.h 35 |
| 875 | def c-src/h.h 38 | ||
| 2279 | defcvarheader tex-src/texinfo.tex /^\\def\\defcvarheader #1#2#3{%$/ | 876 | defcvarheader tex-src/texinfo.tex /^\\def\\defcvarheader #1#2#3{%$/ |
| 877 | defcv tex-src/texinfo.tex /^\\def\\defcv #1 {\\def\\defcvtype{#1}%$/ | ||
| 2280 | defcvtype tex-src/texinfo.tex /^\\def\\defcv #1 {\\def\\defcvtype{#1}%$/ | 878 | defcvtype tex-src/texinfo.tex /^\\def\\defcv #1 {\\def\\defcvtype{#1}%$/ |
| 2281 | defcvx tex-src/texinfo.tex /^\\def\\defcvx #1 {\\errmessage{@defcvx in invalid con/ | 879 | defcvx tex-src/texinfo.tex /^\\def\\defcvx #1 {\\errmessage{@defcvx in invalid con/ |
| 2282 | deffn tex-src/texinfo.tex /^\\def\\deffn{\\defmethparsebody\\Edeffn\\deffnx\\deffnhe/ | ||
| 2283 | deffnheader tex-src/texinfo.tex /^\\def\\deffnheader #1#2#3{\\doind {fn}{\\code{#2}}%$/ | 880 | deffnheader tex-src/texinfo.tex /^\\def\\deffnheader #1#2#3{\\doind {fn}{\\code{#2}}%$/ |
| 881 | deffn tex-src/texinfo.tex /^\\def\\deffn{\\defmethparsebody\\Edeffn\\deffnx\\deffnhe/ | ||
| 2284 | deffnx tex-src/texinfo.tex /^\\def\\deffnx #1 {\\errmessage{@deffnx in invalid con/ | 882 | deffnx tex-src/texinfo.tex /^\\def\\deffnx #1 {\\errmessage{@deffnx in invalid con/ |
| 2285 | defindex tex-src/texinfo.tex /^\\def\\defindex{\\parsearg\\newindex}$/ | 883 | defindex tex-src/texinfo.tex /^\\def\\defindex{\\parsearg\\newindex}$/ |
| 2286 | define-abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/ | 884 | define-abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/ |
| 2287 | define-abbrev-table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/ | 885 | define-abbrev-table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/ |
| 2288 | define-global-abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/ | 886 | definedef c-src/etags.c 2464 |
| 2289 | define-mode-abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, / | ||
| 2290 | defined_GC_CHECK_STRING_BYTES c-src/emacs/src/lisp.h 4663 | 887 | defined_GC_CHECK_STRING_BYTES c-src/emacs/src/lisp.h 4663 |
| 2291 | defined_GC_CHECK_STRING_BYTES c-src/emacs/src/lisp.h 4665 | 888 | defined_GC_CHECK_STRING_BYTES c-src/emacs/src/lisp.h 4665 |
| 2292 | definedef c-src/etags.c 2464 | 889 | DEFINE_GDB_SYMBOL_BEGIN c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_BEGIN(type, id) DECLARE/ |
| 2293 | defivar tex-src/texinfo.tex /^\\def\\defivar{\\defvrparsebody\\Edefivar\\defivarx\\def/ | 890 | DEFINE_GDB_SYMBOL_BEGIN c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_BEGIN(type, id) extern / |
| 891 | DEFINE_GDB_SYMBOL_END c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_END(id) = id;$/ | ||
| 892 | DEFINE_GDB_SYMBOL_END c-src/emacs/src/lisp.h /^# define DEFINE_GDB_SYMBOL_END(val) ;$/ | ||
| 893 | define-global-abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/ | ||
| 894 | DEFINE_LISP_SYMBOL c-src/emacs/src/lisp.h /^#define DEFINE_LISP_SYMBOL(name) \\$/ | ||
| 895 | define-mode-abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, / | ||
| 896 | DEFINE_NON_NIL_Q_SYMBOL_MACROS c-src/emacs/src/lisp.h 755 | ||
| 2294 | defivarheader tex-src/texinfo.tex /^\\def\\defivarheader #1#2#3{%$/ | 897 | defivarheader tex-src/texinfo.tex /^\\def\\defivarheader #1#2#3{%$/ |
| 898 | defivar tex-src/texinfo.tex /^\\def\\defivar{\\defvrparsebody\\Edefivar\\defivarx\\def/ | ||
| 2295 | defivarx tex-src/texinfo.tex /^\\def\\defivarx #1 {\\errmessage{@defivarx in invalid/ | 899 | defivarx tex-src/texinfo.tex /^\\def\\defivarx #1 {\\errmessage{@defivarx in invalid/ |
| 2296 | defmac tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ | ||
| 2297 | defmacheader tex-src/texinfo.tex /^\\def\\defmacheader #1#2{\\doind {fn}{\\code{#1}}% Mak/ | 900 | defmacheader tex-src/texinfo.tex /^\\def\\defmacheader #1#2{\\doind {fn}{\\code{#1}}% Mak/ |
| 901 | defmac tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ | ||
| 2298 | defmacx tex-src/texinfo.tex /^\\def\\defmacx #1 {\\errmessage{@defmacx in invalid c/ | 902 | defmacx tex-src/texinfo.tex /^\\def\\defmacx #1 {\\errmessage{@defmacx in invalid c/ |
| 2299 | defmethod tex-src/texinfo.tex /^\\def\\defmethod{\\defmethparsebody\\Edefmethod\\defmet/ | ||
| 2300 | defmethodheader tex-src/texinfo.tex /^\\def\\defmethodheader #1#2#3{%$/ | 903 | defmethodheader tex-src/texinfo.tex /^\\def\\defmethodheader #1#2#3{%$/ |
| 904 | defmethod tex-src/texinfo.tex /^\\def\\defmethod{\\defmethparsebody\\Edefmethod\\defmet/ | ||
| 2301 | defmethodx tex-src/texinfo.tex /^\\def\\defmethodx #1 {\\errmessage{@defmethodx in inv/ | 905 | defmethodx tex-src/texinfo.tex /^\\def\\defmethodx #1 {\\errmessage{@defmethodx in inv/ |
| 2302 | defmethparsebody tex-src/texinfo.tex /^\\def\\defmethparsebody #1#2#3#4 {\\begingroup\\inENV / | 906 | defmethparsebody tex-src/texinfo.tex /^\\def\\defmethparsebody #1#2#3#4 {\\begingroup\\inENV / |
| 2303 | defname tex-src/texinfo.tex /^\\def\\defname #1#2{%$/ | 907 | defname tex-src/texinfo.tex /^\\def\\defname #1#2{%$/ |
| 2304 | defop tex-src/texinfo.tex /^\\def\\defop #1 {\\def\\defoptype{#1}%$/ | ||
| 2305 | defopheader tex-src/texinfo.tex /^\\def\\defopheader #1#2#3{%$/ | 908 | defopheader tex-src/texinfo.tex /^\\def\\defopheader #1#2#3{%$/ |
| 2306 | defopparsebody tex-src/texinfo.tex /^\\def\\defopparsebody #1#2#3#4#5 {\\begingroup\\inENV / | 909 | defopparsebody tex-src/texinfo.tex /^\\def\\defopparsebody #1#2#3#4#5 {\\begingroup\\inENV / |
| 2307 | defopt tex-src/texinfo.tex /^\\def\\defopt{\\defvarparsebody\\Edefopt\\defoptx\\defop/ | 910 | defop tex-src/texinfo.tex /^\\def\\defop #1 {\\def\\defoptype{#1}%$/ |
| 2308 | defoptheader tex-src/texinfo.tex /^\\def\\defoptheader #1#2{\\doind {vr}{\\code{#1}}% Mak/ | 911 | defoptheader tex-src/texinfo.tex /^\\def\\defoptheader #1#2{\\doind {vr}{\\code{#1}}% Mak/ |
| 912 | defopt tex-src/texinfo.tex /^\\def\\defopt{\\defvarparsebody\\Edefopt\\defoptx\\defop/ | ||
| 2309 | defoptx tex-src/texinfo.tex /^\\def\\defoptx #1 {\\errmessage{@defoptx in invalid c/ | 913 | defoptx tex-src/texinfo.tex /^\\def\\defoptx #1 {\\errmessage{@defoptx in invalid c/ |
| 2310 | defoptype tex-src/texinfo.tex /^\\def\\defop #1 {\\def\\defoptype{#1}%$/ | 914 | defoptype tex-src/texinfo.tex /^\\def\\defop #1 {\\def\\defoptype{#1}%$/ |
| 2311 | defopvarparsebody tex-src/texinfo.tex /^\\def\\defopvarparsebody #1#2#3#4#5 {\\begingroup\\inE/ | 915 | defopvarparsebody tex-src/texinfo.tex /^\\def\\defopvarparsebody #1#2#3#4#5 {\\begingroup\\inE/ |
| 2312 | defopx tex-src/texinfo.tex /^\\def\\defopx #1 {\\errmessage{@defopx in invalid con/ | 916 | defopx tex-src/texinfo.tex /^\\def\\defopx #1 {\\errmessage{@defopx in invalid con/ |
| 2313 | defparsebody tex-src/texinfo.tex /^\\def\\defparsebody #1#2#3{\\begingroup\\inENV% Enviro/ | 917 | defparsebody tex-src/texinfo.tex /^\\def\\defparsebody #1#2#3{\\begingroup\\inENV% Enviro/ |
| 2314 | defspec tex-src/texinfo.tex /^\\def\\defspec{\\defparsebody\\Edefspec\\defspecx\\defsp/ | 918 | Def_ ruby-src/test1.ru 12 |
| 2315 | defspecheader tex-src/texinfo.tex /^\\def\\defspecheader #1#2{\\doind {fn}{\\code{#1}}% Ma/ | 919 | defspecheader tex-src/texinfo.tex /^\\def\\defspecheader #1#2{\\doind {fn}{\\code{#1}}% Ma/ |
| 920 | defspec tex-src/texinfo.tex /^\\def\\defspec{\\defparsebody\\Edefspec\\defspecx\\defsp/ | ||
| 2316 | defspecx tex-src/texinfo.tex /^\\def\\defspecx #1 {\\errmessage{@defspecx in invalid/ | 921 | defspecx tex-src/texinfo.tex /^\\def\\defspecx #1 {\\errmessage{@defspecx in invalid/ |
| 2317 | deftp tex-src/texinfo.tex /^\\def\\deftp{\\defvrparsebody\\Edeftp\\deftpx\\deftphead/ | 922 | DEFSYM c-src/emacs/src/lisp.h /^#define DEFSYM(sym, name) \/* empty *\/$/ |
| 923 | DEFSYM c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (SYMBOL_CONSTANT_P, int, (Lisp_Ob/ | ||
| 2318 | deftpargs tex-src/texinfo.tex /^\\def\\deftpargs #1{\\bf \\defvarargs{#1}}$/ | 924 | deftpargs tex-src/texinfo.tex /^\\def\\deftpargs #1{\\bf \\defvarargs{#1}}$/ |
| 2319 | deftpheader tex-src/texinfo.tex /^\\def\\deftpheader #1#2#3{\\doind {tp}{\\code{#2}}%$/ | 925 | deftpheader tex-src/texinfo.tex /^\\def\\deftpheader #1#2#3{\\doind {tp}{\\code{#2}}%$/ |
| 926 | deftp tex-src/texinfo.tex /^\\def\\deftp{\\defvrparsebody\\Edeftp\\deftpx\\deftphead/ | ||
| 2320 | deftpx tex-src/texinfo.tex /^\\def\\deftpx #1 {\\errmessage{@deftpx in invalid con/ | 927 | deftpx tex-src/texinfo.tex /^\\def\\deftpx #1 {\\errmessage{@deftpx in invalid con/ |
| 2321 | deftypefn tex-src/texinfo.tex /^\\def\\deftypefn{\\defmethparsebody\\Edeftypefn\\deftyp/ | ||
| 2322 | deftypefnheader tex-src/texinfo.tex /^\\def\\deftypefnheader #1#2#3{\\deftypefnheaderx{#1}{/ | 928 | deftypefnheader tex-src/texinfo.tex /^\\def\\deftypefnheader #1#2#3{\\deftypefnheaderx{#1}{/ |
| 2323 | deftypefnheaderx tex-src/texinfo.tex /^\\def\\deftypefnheaderx #1#2#3 #4\\relax{%$/ | 929 | deftypefnheaderx tex-src/texinfo.tex /^\\def\\deftypefnheaderx #1#2#3 #4\\relax{%$/ |
| 930 | deftypefn tex-src/texinfo.tex /^\\def\\deftypefn{\\defmethparsebody\\Edeftypefn\\deftyp/ | ||
| 2324 | deftypefnx tex-src/texinfo.tex /^\\def\\deftypefnx #1 {\\errmessage{@deftypefnx in inv/ | 931 | deftypefnx tex-src/texinfo.tex /^\\def\\deftypefnx #1 {\\errmessage{@deftypefnx in inv/ |
| 2325 | deftypefun tex-src/texinfo.tex /^\\def\\deftypefun{\\defparsebody\\Edeftypefun\\deftypef/ | ||
| 2326 | deftypefunargs tex-src/texinfo.tex /^\\def\\deftypefunargs #1{%$/ | 932 | deftypefunargs tex-src/texinfo.tex /^\\def\\deftypefunargs #1{%$/ |
| 2327 | deftypefunheader tex-src/texinfo.tex /^\\def\\deftypefunheader #1#2{\\deftypefunheaderx{#1}#/ | 933 | deftypefunheader tex-src/texinfo.tex /^\\def\\deftypefunheader #1#2{\\deftypefunheaderx{#1}#/ |
| 2328 | deftypefunheaderx tex-src/texinfo.tex /^\\def\\deftypefunheaderx #1#2 #3\\relax{%$/ | 934 | deftypefunheaderx tex-src/texinfo.tex /^\\def\\deftypefunheaderx #1#2 #3\\relax{%$/ |
| 935 | deftypefun tex-src/texinfo.tex /^\\def\\deftypefun{\\defparsebody\\Edeftypefun\\deftypef/ | ||
| 2329 | deftypeunx tex-src/texinfo.tex /^\\def\\deftypeunx #1 {\\errmessage{@deftypeunx in inv/ | 936 | deftypeunx tex-src/texinfo.tex /^\\def\\deftypeunx #1 {\\errmessage{@deftypeunx in inv/ |
| 2330 | deftypevar tex-src/texinfo.tex /^\\def\\deftypevar{\\defvarparsebody\\Edeftypevar\\defty/ | ||
| 2331 | deftypevarheader tex-src/texinfo.tex /^\\def\\deftypevarheader #1#2{%$/ | 937 | deftypevarheader tex-src/texinfo.tex /^\\def\\deftypevarheader #1#2{%$/ |
| 938 | deftypevar tex-src/texinfo.tex /^\\def\\deftypevar{\\defvarparsebody\\Edeftypevar\\defty/ | ||
| 2332 | deftypevarx tex-src/texinfo.tex /^\\def\\deftypevarx #1 {\\errmessage{@deftypevarx in i/ | 939 | deftypevarx tex-src/texinfo.tex /^\\def\\deftypevarx #1 {\\errmessage{@deftypevarx in i/ |
| 2333 | deftypevr tex-src/texinfo.tex /^\\def\\deftypevr{\\defvrparsebody\\Edeftypevr\\deftypev/ | ||
| 2334 | deftypevrheader tex-src/texinfo.tex /^\\def\\deftypevrheader #1#2#3{\\doind {vr}{\\code{#3}}/ | 940 | deftypevrheader tex-src/texinfo.tex /^\\def\\deftypevrheader #1#2#3{\\doind {vr}{\\code{#3}}/ |
| 941 | deftypevr tex-src/texinfo.tex /^\\def\\deftypevr{\\defvrparsebody\\Edeftypevr\\deftypev/ | ||
| 2335 | deftypevrx tex-src/texinfo.tex /^\\def\\deftypevrx #1 {\\errmessage{@deftypevrx in inv/ | 942 | deftypevrx tex-src/texinfo.tex /^\\def\\deftypevrx #1 {\\errmessage{@deftypevrx in inv/ |
| 2336 | defun tex-src/texinfo.tex /^\\def\\defun{\\defparsebody\\Edefun\\defunx\\defunheader/ | 943 | DEFUN_ARGS_0 c-src/emacs/src/lisp.h 714 |
| 2337 | defun_func1 c.c /^defun_func1()$/ | 944 | DEFUN_ARGS_1 c-src/emacs/src/lisp.h 715 |
| 945 | DEFUN_ARGS_2 c-src/emacs/src/lisp.h 716 | ||
| 946 | DEFUN_ARGS_3 c-src/emacs/src/lisp.h 717 | ||
| 947 | DEFUN_ARGS_4 c-src/emacs/src/lisp.h 718 | ||
| 948 | DEFUN_ARGS_5 c-src/emacs/src/lisp.h 719 | ||
| 949 | DEFUN_ARGS_6 c-src/emacs/src/lisp.h 721 | ||
| 950 | DEFUN_ARGS_7 c-src/emacs/src/lisp.h 723 | ||
| 951 | DEFUN_ARGS_8 c-src/emacs/src/lisp.h 725 | ||
| 952 | DEFUN_ARGS_MANY c-src/emacs/src/lisp.h 712 | ||
| 2338 | defunargs tex-src/texinfo.tex /^\\def\\defunargs #1{\\functionparens \\sl$/ | 953 | defunargs tex-src/texinfo.tex /^\\def\\defunargs #1{\\functionparens \\sl$/ |
| 954 | DEFUN_ARGS_UNEVALLED c-src/emacs/src/lisp.h 713 | ||
| 955 | DEFUN c-src/emacs/src/lisp.h /^#define DEFUN(lname, fnname, sname, minargs, maxar/ | ||
| 956 | defun_func1 c.c /^defun_func1()$/ | ||
| 957 | DEFUN_func2 c.c /^DEFUN_func2()$/ | ||
| 2339 | defunheader tex-src/texinfo.tex /^\\def\\defunheader #1#2{\\doind {fn}{\\code{#1}}% Make/ | 958 | defunheader tex-src/texinfo.tex /^\\def\\defunheader #1#2{\\doind {fn}{\\code{#1}}% Make/ |
| 959 | defun tex-src/texinfo.tex /^\\def\\defun{\\defparsebody\\Edefun\\defunx\\defunheader/ | ||
| 2340 | defunx tex-src/texinfo.tex /^\\def\\defunx #1 {\\errmessage{@defunx in invalid con/ | 960 | defunx tex-src/texinfo.tex /^\\def\\defunx #1 {\\errmessage{@defunx in invalid con/ |
| 2341 | defvar tex-src/texinfo.tex /^\\def\\defvar{\\defvarparsebody\\Edefvar\\defvarx\\defva/ | ||
| 2342 | defvarargs tex-src/texinfo.tex /^\\def\\defvarargs #1{\\normalparens #1%$/ | 961 | defvarargs tex-src/texinfo.tex /^\\def\\defvarargs #1{\\normalparens #1%$/ |
| 962 | DEFVAR_BOOL c-src/emacs/src/lisp.h /^#define DEFVAR_BOOL(lname, vname, doc) \\$/ | ||
| 963 | DEFVAR_BUFFER_DEFAULTS c-src/emacs/src/lisp.h /^#define DEFVAR_BUFFER_DEFAULTS(lname, vname, doc) / | ||
| 2343 | defvarheader tex-src/texinfo.tex /^\\def\\defvarheader #1#2{\\doind {vr}{\\code{#1}}% Mak/ | 964 | defvarheader tex-src/texinfo.tex /^\\def\\defvarheader #1#2{\\doind {vr}{\\code{#1}}% Mak/ |
| 965 | DEFVAR_INT c-src/emacs/src/lisp.h /^#define DEFVAR_INT(lname, vname, doc) \\$/ | ||
| 966 | DEFVAR_KBOARD c-src/emacs/src/lisp.h /^#define DEFVAR_KBOARD(lname, vname, doc) \\$/ | ||
| 967 | DEFVAR_LISP c-src/emacs/src/lisp.h /^#define DEFVAR_LISP(lname, vname, doc) \\$/ | ||
| 968 | DEFVAR_LISP_NOPRO c-src/emacs/src/lisp.h /^#define DEFVAR_LISP_NOPRO(lname, vname, doc) \\$/ | ||
| 2344 | defvarparsebody tex-src/texinfo.tex /^\\def\\defvarparsebody #1#2#3{\\begingroup\\inENV% Env/ | 969 | defvarparsebody tex-src/texinfo.tex /^\\def\\defvarparsebody #1#2#3{\\begingroup\\inENV% Env/ |
| 970 | defvar tex-src/texinfo.tex /^\\def\\defvar{\\defvarparsebody\\Edefvar\\defvarx\\defva/ | ||
| 2345 | defvarx tex-src/texinfo.tex /^\\def\\defvarx #1 {\\errmessage{@defvarx in invalid c/ | 971 | defvarx tex-src/texinfo.tex /^\\def\\defvarx #1 {\\errmessage{@defvarx in invalid c/ |
| 2346 | defvr tex-src/texinfo.tex /^\\def\\defvr{\\defvrparsebody\\Edefvr\\defvrx\\defvrhead/ | ||
| 2347 | defvrheader tex-src/texinfo.tex /^\\def\\defvrheader #1#2#3{\\doind {vr}{\\code{#2}}%$/ | 972 | defvrheader tex-src/texinfo.tex /^\\def\\defvrheader #1#2#3{\\doind {vr}{\\code{#2}}%$/ |
| 2348 | defvrparsebody tex-src/texinfo.tex /^\\def\\defvrparsebody #1#2#3#4 {\\begingroup\\inENV %$/ | 973 | defvrparsebody tex-src/texinfo.tex /^\\def\\defvrparsebody #1#2#3#4 {\\begingroup\\inENV %$/ |
| 974 | defvr tex-src/texinfo.tex /^\\def\\defvr{\\defvrparsebody\\Edefvr\\defvrx\\defvrhead/ | ||
| 2349 | defvrx tex-src/texinfo.tex /^\\def\\defvrx #1 {\\errmessage{@defvrx in invalid con/ | 975 | defvrx tex-src/texinfo.tex /^\\def\\defvrx #1 {\\errmessage{@defvrx in invalid con/ |
| 2350 | delegate objc-src/Subprocess.m /^- delegate$/ | 976 | delegate objc-src/Subprocess.m /^- delegate$/ |
| 2351 | deleteItem pyt-src/server.py /^ def deleteItem(self):$/ | 977 | deleteItem pyt-src/server.py /^ def deleteItem(self):$/ |
| @@ -2357,34 +983,43 @@ depth c-src/emacs/src/lisp.h 1618 | |||
| 2357 | derived_analyses prol-src/natded.prolog /^derived_analyses([],[]).$/ | 983 | derived_analyses prol-src/natded.prolog /^derived_analyses([],[]).$/ |
| 2358 | describe_abbrev c-src/abbrev.c /^describe_abbrev (sym, stream)$/ | 984 | describe_abbrev c-src/abbrev.c /^describe_abbrev (sym, stream)$/ |
| 2359 | description tex-src/texinfo.tex /^\\def\\description{\\tablez{\\dontindex}{1}{}{}{}{}}$/ | 985 | description tex-src/texinfo.tex /^\\def\\description{\\tablez{\\dontindex}{1}{}{}{}{}}$/ |
| 986 | /desperatepapersize ps-src/rfc1245.ps /^\/desperatepapersize {$/ | ||
| 2360 | detect_input_pending c-src/emacs/src/keyboard.c /^detect_input_pending (void)$/ | 987 | detect_input_pending c-src/emacs/src/keyboard.c /^detect_input_pending (void)$/ |
| 2361 | detect_input_pending_ignore_squeezables c-src/emacs/src/keyboard.c /^detect_input_pending_ignore_squeezables (void)$/ | 988 | detect_input_pending_ignore_squeezables c-src/emacs/src/keyboard.c /^detect_input_pending_ignore_squeezables (void)$/ |
| 2362 | detect_input_pending_run_timers c-src/emacs/src/keyboard.c /^detect_input_pending_run_timers (bool do_display)$/ | 989 | detect_input_pending_run_timers c-src/emacs/src/keyboard.c /^detect_input_pending_run_timers (bool do_display)$/ |
| 2363 | df tex-src/texinfo.tex /^\\def\\df{\\let\\tentt=\\deftt \\let\\tenbf = \\defbf \\bf}/ | 990 | DEVICE_LAST c-src/h.h 24 |
| 991 | DEVICE_SWP c-src/h.h 23 | ||
| 2364 | dfn tex-src/texinfo.tex /^\\def\\dfn##1{\\realbackslash dfn {##1}}$/ | 992 | dfn tex-src/texinfo.tex /^\\def\\dfn##1{\\realbackslash dfn {##1}}$/ |
| 2365 | dfn tex-src/texinfo.tex /^\\let\\dfn=\\smartitalic$/ | 993 | dfn tex-src/texinfo.tex /^\\let\\dfn=\\smartitalic$/ |
| 994 | df tex-src/texinfo.tex /^\\def\\df{\\let\\tentt=\\deftt \\let\\tenbf = \\defbf \\bf}/ | ||
| 995 | /DiacriticEncoding ps-src/rfc1245.ps /^\/DiacriticEncoding [$/ | ||
| 2366 | dialog_loop erl-src/gs_dialog.erl /^dialog_loop(Module, Window, Frame, Extra, Args) ->/ | 996 | dialog_loop erl-src/gs_dialog.erl /^dialog_loop(Module, Window, Frame, Extra, Args) ->/ |
| 997 | /dieresis ps-src/rfc1245.ps /^\/dieresis \/.notdef \/AE \/Oslash \/.notdef \/.notdef \// | ||
| 2367 | dignorerest c-src/etags.c 2463 | 998 | dignorerest c-src/etags.c 2463 |
| 2368 | direntry tex-src/texinfo.tex /^\\def\\direntry{\\begingroup\\direntryxxx}$/ | 999 | direntry tex-src/texinfo.tex /^\\def\\direntry{\\begingroup\\direntryxxx}$/ |
| 2369 | direntryxxx tex-src/texinfo.tex /^\\long\\def\\direntryxxx #1\\end direntry{\\endgroup\\ig/ | 1000 | direntryxxx tex-src/texinfo.tex /^\\long\\def\\direntryxxx #1\\end direntry{\\endgroup\\ig/ |
| 2370 | discard-input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/ | 1001 | discard-input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/ |
| 2371 | discard_mouse_events c-src/emacs/src/keyboard.c /^discard_mouse_events (void)$/ | 1002 | discard_mouse_events c-src/emacs/src/keyboard.c /^discard_mouse_events (void)$/ |
| 2372 | discrete_location cp-src/clheir.hpp /^ discrete_location(int xi, int yi, int zi):$/ | ||
| 2373 | discrete_location cp-src/clheir.hpp 56 | 1003 | discrete_location cp-src/clheir.hpp 56 |
| 1004 | discrete_location cp-src/clheir.hpp /^ discrete_location(int xi, int yi, int zi):$/ | ||
| 2374 | display cp-src/conway.cpp /^void display(void)$/ | 1005 | display cp-src/conway.cpp /^void display(void)$/ |
| 2375 | display tex-src/texinfo.tex /^\\def\\display{\\begingroup\\inENV %This group ends at/ | 1006 | display tex-src/texinfo.tex /^\\def\\display{\\begingroup\\inENV %This group ends at/ |
| 1007 | DisposeANameList pas-src/common.pas /^procedure DisposeANameList( $/ | ||
| 1008 | DisposeNameList pas-src/common.pas /^procedure DisposeNameList;$/ | ||
| 2376 | disposetextstring pas-src/common.pas /^procedure disposetextstring;(*($/ | 1009 | disposetextstring pas-src/common.pas /^procedure disposetextstring;(*($/ |
| 1010 | /dmatrix ps-src/rfc1245.ps /^\/dmatrix matrix def$/ | ||
| 2377 | dmn tex-src/texinfo.tex /^\\def\\dmn#1{\\thinspace #1}$/ | 1011 | dmn tex-src/texinfo.tex /^\\def\\dmn#1{\\thinspace #1}$/ |
| 2378 | dnone c-src/etags.c 2460 | 1012 | dnone c-src/etags.c 2460 |
| 1013 | /dnormalize ps-src/rfc1245.ps /^\/dnormalize {$/ | ||
| 2379 | dobreak tex-src/texinfo.tex /^\\def\\dobreak#1#2{\\par\\ifdim\\lastskip<#1\\removelast/ | 1014 | dobreak tex-src/texinfo.tex /^\\def\\dobreak#1#2{\\par\\ifdim\\lastskip<#1\\removelast/ |
| 2380 | doc c-src/emacs/src/lisp.h 1689 | 1015 | doc c-src/emacs/src/lisp.h 1689 |
| 2381 | dochapentry tex-src/texinfo.tex /^\\def\\dochapentry#1#2{%$/ | 1016 | dochapentry tex-src/texinfo.tex /^\\def\\dochapentry#1#2{%$/ |
| 2382 | docodeindex tex-src/texinfo.tex /^\\def\\docodeindex#1{\\edef\\indexname{#1}\\parsearg\\si/ | 1017 | docodeindex tex-src/texinfo.tex /^\\def\\docodeindex#1{\\edef\\indexname{#1}\\parsearg\\si/ |
| 2383 | dog c-src/h.h 81 | ||
| 2384 | dog cp-src/c.C 126 | 1018 | dog cp-src/c.C 126 |
| 2385 | dog cp-src/c.C 130 | 1019 | dog cp-src/c.C 130 |
| 2386 | doind tex-src/texinfo.tex /^\\def\\doind #1#2{%$/ | 1020 | dog c-src/h.h 81 |
| 2387 | doindex tex-src/texinfo.tex /^\\def\\doindex#1{\\edef\\indexname{#1}\\parsearg\\single/ | 1021 | doindex tex-src/texinfo.tex /^\\def\\doindex#1{\\edef\\indexname{#1}\\parsearg\\single/ |
| 1022 | doind tex-src/texinfo.tex /^\\def\\doind #1#2{%$/ | ||
| 2388 | donoderef tex-src/texinfo.tex /^\\def\\donoderef{\\ifx\\lastnode\\relax\\else$/ | 1023 | donoderef tex-src/texinfo.tex /^\\def\\donoderef{\\ifx\\lastnode\\relax\\else$/ |
| 2389 | dontindex tex-src/texinfo.tex /^\\def\\dontindex #1{}$/ | 1024 | dontindex tex-src/texinfo.tex /^\\def\\dontindex #1{}$/ |
| 2390 | dopageno tex-src/texinfo.tex /^\\def\\dopageno#1{{\\rm #1}}$/ | 1025 | dopageno tex-src/texinfo.tex /^\\def\\dopageno#1{{\\rm #1}}$/ |
| @@ -2392,11 +1027,13 @@ doprintindex tex-src/texinfo.tex /^\\def\\doprintindex#1{%$/ | |||
| 2392 | dosecentry tex-src/texinfo.tex /^\\def\\dosecentry#1#2{%$/ | 1027 | dosecentry tex-src/texinfo.tex /^\\def\\dosecentry#1#2{%$/ |
| 2393 | dosetq tex-src/texinfo.tex /^\\def\\dosetq #1#2{{\\let\\folio=0 \\turnoffactive%$/ | 1028 | dosetq tex-src/texinfo.tex /^\\def\\dosetq #1#2{{\\let\\folio=0 \\turnoffactive%$/ |
| 2394 | doshortpageno tex-src/texinfo.tex /^\\def\\doshortpageno#1{{\\rm #1}}$/ | 1029 | doshortpageno tex-src/texinfo.tex /^\\def\\doshortpageno#1{{\\rm #1}}$/ |
| 1030 | DOS_NT c-src/etags.c 117 | ||
| 1031 | DOS_NT c-src/etags.c 118 | ||
| 2395 | dosubind tex-src/texinfo.tex /^\\def\\dosubind #1#2#3{%$/ | 1032 | dosubind tex-src/texinfo.tex /^\\def\\dosubind #1#2#3{%$/ |
| 2396 | dosubsecentry tex-src/texinfo.tex /^\\def\\dosubsecentry#1#2{%$/ | 1033 | dosubsecentry tex-src/texinfo.tex /^\\def\\dosubsecentry#1#2{%$/ |
| 2397 | dosubsubsecentry tex-src/texinfo.tex /^\\def\\dosubsubsecentry#1#2{%$/ | 1034 | dosubsubsecentry tex-src/texinfo.tex /^\\def\\dosubsubsecentry#1#2{%$/ |
| 2398 | dotfill tex-src/texinfo.tex /^ \\null\\nobreak\\indexdotfill % Have leaders before/ | ||
| 2399 | dotfill tex-src/texinfo.tex /^\\noindent\\hskip\\secondaryindent\\hbox{#1}\\indexdotf/ | 1035 | dotfill tex-src/texinfo.tex /^\\noindent\\hskip\\secondaryindent\\hbox{#1}\\indexdotf/ |
| 1036 | dotfill tex-src/texinfo.tex /^ \\null\\nobreak\\indexdotfill % Have leaders before/ | ||
| 2400 | dots tex-src/texinfo.tex /^\\def\\dots{$\\ldots$}$/ | 1037 | dots tex-src/texinfo.tex /^\\def\\dots{$\\ldots$}$/ |
| 2401 | dots tex-src/texinfo.tex /^\\def\\dots{\\realbackslash dots }%$/ | 1038 | dots tex-src/texinfo.tex /^\\def\\dots{\\realbackslash dots }%$/ |
| 2402 | dots tex-src/texinfo.tex /^\\def\\dots{\\realbackslash dots}$/ | 1039 | dots tex-src/texinfo.tex /^\\def\\dots{\\realbackslash dots}$/ |
| @@ -2404,8 +1041,11 @@ dots tex-src/texinfo.tex /^\\let\\dots=\\indexdummydots$/ | |||
| 2404 | dots tex-src/texinfo.tex /^\\let\\dots=\\ptexdots$/ | 1041 | dots tex-src/texinfo.tex /^\\let\\dots=\\ptexdots$/ |
| 2405 | double_click_count c-src/emacs/src/keyboard.c 5222 | 1042 | double_click_count c-src/emacs/src/keyboard.c 5222 |
| 2406 | doublecolumnout tex-src/texinfo.tex /^\\def\\doublecolumnout{\\splittopskip=\\topskip \\split/ | 1043 | doublecolumnout tex-src/texinfo.tex /^\\def\\doublecolumnout{\\splittopskip=\\topskip \\split/ |
| 1044 | /dpi ps-src/rfc1245.ps /^\/dpi 72 0 dmatrix defaultmatrix dtransform$/ | ||
| 1045 | /D ps-src/rfc1245.ps /^\/D {curveto} bind def$/ | ||
| 2407 | drag_n_drop_syms c-src/emacs/src/keyboard.c 4629 | 1046 | drag_n_drop_syms c-src/emacs/src/keyboard.c 4629 |
| 2408 | dribble c-src/emacs/src/keyboard.c 236 | 1047 | dribble c-src/emacs/src/keyboard.c 236 |
| 1048 | D ruby-src/test1.ru /^class ::D; end$/ | ||
| 2409 | dsharpseen c-src/etags.c 2461 | 1049 | dsharpseen c-src/etags.c 2461 |
| 2410 | dummies tex-src/texinfo.tex /^{\\indexdummies % Must do this here, since \\bf, etc/ | 1050 | dummies tex-src/texinfo.tex /^{\\indexdummies % Must do this here, since \\bf, etc/ |
| 2411 | dummy1 cp-src/burton.cpp /^::dummy::dummy test::dummy1(void)$/ | 1051 | dummy1 cp-src/burton.cpp /^::dummy::dummy test::dummy1(void)$/ |
| @@ -2424,45 +1064,79 @@ dummyfont tex-src/texinfo.tex /^\\let\\r=\\indexdummyfont$/ | |||
| 2424 | dummyfont tex-src/texinfo.tex /^\\let\\samp=\\indexdummyfont$/ | 1064 | dummyfont tex-src/texinfo.tex /^\\let\\samp=\\indexdummyfont$/ |
| 2425 | dummyfont tex-src/texinfo.tex /^\\let\\sc=\\indexdummyfont$/ | 1065 | dummyfont tex-src/texinfo.tex /^\\let\\sc=\\indexdummyfont$/ |
| 2426 | dummyfont tex-src/texinfo.tex /^\\let\\strong=\\indexdummyfont$/ | 1066 | dummyfont tex-src/texinfo.tex /^\\let\\strong=\\indexdummyfont$/ |
| 2427 | dummyfont tex-src/texinfo.tex /^\\let\\t=\\indexdummyfont$/ | ||
| 2428 | dummyfont tex-src/texinfo.tex /^\\let\\tclose=\\indexdummyfont$/ | 1067 | dummyfont tex-src/texinfo.tex /^\\let\\tclose=\\indexdummyfont$/ |
| 1068 | dummyfont tex-src/texinfo.tex /^\\let\\t=\\indexdummyfont$/ | ||
| 2429 | dummyfont tex-src/texinfo.tex /^\\let\\var=\\indexdummyfont$/ | 1069 | dummyfont tex-src/texinfo.tex /^\\let\\var=\\indexdummyfont$/ |
| 2430 | dummyfont tex-src/texinfo.tex /^\\let\\w=\\indexdummyfont$/ | 1070 | dummyfont tex-src/texinfo.tex /^\\let\\w=\\indexdummyfont$/ |
| 2431 | dummytex tex-src/texinfo.tex /^\\let\\TeX=\\indexdummytex$/ | 1071 | dummytex tex-src/texinfo.tex /^\\let\\TeX=\\indexdummytex$/ |
| 1072 | DUMPED c-src/emacs/src/gmalloc.c 80 | ||
| 2432 | dump pyt-src/server.py /^ def dump(self, folded):$/ | 1073 | dump pyt-src/server.py /^ def dump(self, folded):$/ |
| 2433 | eabs c-src/emacs/src/lisp.h /^#define eabs(x) ((x) < 0 ? -(x) : (x))$/ | 1074 | eabs c-src/emacs/src/lisp.h /^#define eabs(x) ((x) < 0 ? -(x) : (x))$/ |
| 1075 | Ealphaenumerate tex-src/texinfo.tex /^\\def\\Ealphaenumerate{\\Eenumerate}$/ | ||
| 2434 | eassert c-src/emacs/src/lisp.h /^# define eassert(cond) \\$/ | 1076 | eassert c-src/emacs/src/lisp.h /^# define eassert(cond) \\$/ |
| 2435 | eassert c-src/emacs/src/lisp.h /^# define eassert(cond) ((void) (false && (cond))) / | 1077 | eassert c-src/emacs/src/lisp.h /^# define eassert(cond) ((void) (false && (cond))) / |
| 2436 | eassume c-src/emacs/src/lisp.h /^# define eassume(cond) \\$/ | 1078 | eassume c-src/emacs/src/lisp.h /^# define eassume(cond) \\$/ |
| 2437 | eassume c-src/emacs/src/lisp.h /^# define eassume(cond) assume (cond)$/ | 1079 | eassume c-src/emacs/src/lisp.h /^# define eassume(cond) assume (cond)$/ |
| 2438 | eax c-src/sysdep.h 31 | 1080 | eax c-src/sysdep.h 31 |
| 2439 | eax c-src/sysdep.h 33 | 1081 | eax c-src/sysdep.h 33 |
| 1082 | Ecapsenumerate tex-src/texinfo.tex /^\\def\\Ecapsenumerate{\\Eenumerate}$/ | ||
| 1083 | Ecartouche tex-src/texinfo.tex /^\\def\\Ecartouche{%$/ | ||
| 2440 | echo_add_key c-src/emacs/src/keyboard.c /^echo_add_key (Lisp_Object c)$/ | 1084 | echo_add_key c-src/emacs/src/keyboard.c /^echo_add_key (Lisp_Object c)$/ |
| 2441 | echo_char c-src/emacs/src/keyboard.c /^echo_char (Lisp_Object c)$/ | 1085 | echo_char c-src/emacs/src/keyboard.c /^echo_char (Lisp_Object c)$/ |
| 2442 | echo_dash c-src/emacs/src/keyboard.c /^echo_dash (void)$/ | 1086 | echo_dash c-src/emacs/src/keyboard.c /^echo_dash (void)$/ |
| 1087 | echoing c-src/emacs/src/keyboard.c 154 | ||
| 2443 | echo_kboard c-src/emacs/src/keyboard.c 166 | 1088 | echo_kboard c-src/emacs/src/keyboard.c 166 |
| 2444 | echo_keystrokes_p c-src/emacs/src/keyboard.c /^echo_keystrokes_p (void)$/ | 1089 | echo_keystrokes_p c-src/emacs/src/keyboard.c /^echo_keystrokes_p (void)$/ |
| 2445 | echo_length c-src/emacs/src/keyboard.c /^echo_length (void)$/ | 1090 | echo_length c-src/emacs/src/keyboard.c /^echo_length (void)$/ |
| 2446 | echo_message_buffer c-src/emacs/src/keyboard.c 171 | 1091 | echo_message_buffer c-src/emacs/src/keyboard.c 171 |
| 2447 | echo_now c-src/emacs/src/keyboard.c /^echo_now (void)$/ | 1092 | echo_now c-src/emacs/src/keyboard.c /^echo_now (void)$/ |
| 2448 | echo_truncate c-src/emacs/src/keyboard.c /^echo_truncate (ptrdiff_t nchars)$/ | 1093 | echo_truncate c-src/emacs/src/keyboard.c /^echo_truncate (ptrdiff_t nchars)$/ |
| 2449 | echoing c-src/emacs/src/keyboard.c 154 | 1094 | Edescription tex-src/texinfo.tex /^\\def\\Edescription{\\Etable}% Necessary kludge.$/ |
| 1095 | %ediff make-src/Makefile /^%ediff: ETAGS% ETAGS ${infiles}$/ | ||
| 1096 | Edisplay tex-src/texinfo.tex /^\\def\\Edisplay{\\endgroup\\afterenvbreak}%$/ | ||
| 2450 | editItem pyt-src/server.py /^ def editItem(self):$/ | 1097 | editItem pyt-src/server.py /^ def editItem(self):$/ |
| 2451 | editsite pyt-src/server.py /^ def editsite(self, site):$/ | 1098 | editsite pyt-src/server.py /^ def editsite(self, site):$/ |
| 2452 | edituser pyt-src/server.py /^ def edituser(self, user):$/ | 1099 | edituser pyt-src/server.py /^ def edituser(self, user):$/ |
| 1100 | Eexample tex-src/texinfo.tex /^\\def\\Eexample{\\Elisp}$/ | ||
| 1101 | Eflushleft tex-src/texinfo.tex /^\\def\\Eflushleft{\\endgroup\\afterenvbreak}%$/ | ||
| 1102 | Eflushright tex-src/texinfo.tex /^\\def\\Eflushright{\\endgroup\\afterenvbreak}%$/ | ||
| 1103 | Eformat tex-src/texinfo.tex /^\\def\\Eformat{\\endgroup\\afterenvbreak}$/ | ||
| 1104 | Eftable tex-src/texinfo.tex /^\\def\\Eftable{\\endgraf\\endgroup\\afterenvbreak}%$/ | ||
| 2453 | egetenv c-src/emacs/src/lisp.h /^egetenv (const char *var)$/ | 1105 | egetenv c-src/emacs/src/lisp.h /^egetenv (const char *var)$/ |
| 1106 | Egroup tex-src/texinfo.tex /^ \\def\\Egroup{\\egroup\\endgroup}%$/ | ||
| 1107 | Eifclear tex-src/texinfo.tex /^\\def\\Eifclear{}$/ | ||
| 1108 | Eifset tex-src/texinfo.tex /^\\def\\Eifset{}$/ | ||
| 1109 | Eiftex tex-src/texinfo.tex /^\\def\\Eiftex{}$/ | ||
| 1110 | ELEM_I c-src/h.h 3 | ||
| 1111 | Elisp tex-src/texinfo.tex /^\\def\\Elisp{\\endgroup\\afterenvbreak}%$/ | ||
| 1112 | ELSRC make-src/Makefile /^ELSRC=TAGTEST.EL emacs\/lisp\/progmodes\/etags.el$/ | ||
| 2454 | emacs_abort c-src/emacs/src/lisp.h /^extern _Noreturn void emacs_abort (void) NO_INLINE/ | 1113 | emacs_abort c-src/emacs/src/lisp.h /^extern _Noreturn void emacs_abort (void) NO_INLINE/ |
| 1114 | EMACS_INT c-src/emacs/src/lisp.h 103 | ||
| 1115 | EMACS_INT c-src/emacs/src/lisp.h 91 | ||
| 1116 | EMACS_INT c-src/emacs/src/lisp.h 96 | ||
| 1117 | EMACS_INT_MAX c-src/emacs/src/lisp.h 105 | ||
| 1118 | EMACS_INT_MAX c-src/emacs/src/lisp.h 93 | ||
| 1119 | EMACS_INT_MAX c-src/emacs/src/lisp.h 98 | ||
| 1120 | EMACS_LISP_H c-src/emacs/src/lisp.h 22 | ||
| 1121 | EMACS_NAME c-src/etags.c 786 | ||
| 1122 | EMACS_UINT c-src/emacs/src/lisp.h 104 | ||
| 1123 | EMACS_UINT c-src/emacs/src/lisp.h 92 | ||
| 1124 | EMACS_UINT c-src/emacs/src/lisp.h 97 | ||
| 2455 | emph tex-src/texinfo.tex /^\\def\\emph##1{\\realbackslash emph {##1}}$/ | 1125 | emph tex-src/texinfo.tex /^\\def\\emph##1{\\realbackslash emph {##1}}$/ |
| 2456 | emph tex-src/texinfo.tex /^\\let\\emph=\\indexdummyfont$/ | 1126 | emph tex-src/texinfo.tex /^\\let\\emph=\\indexdummyfont$/ |
| 2457 | emph tex-src/texinfo.tex /^\\let\\emph=\\smartitalic$/ | 1127 | emph tex-src/texinfo.tex /^\\let\\emph=\\smartitalic$/ |
| 1128 | EmptyNmStr pas-src/common.pas /^function EmptyNmStr(* : NameString*);$/ | ||
| 1129 | /ENDBITMAP ps-src/rfc1245.ps /^\/ENDBITMAP {$/ | ||
| 2458 | end c-src/emacs/src/keyboard.c 8753 | 1130 | end c-src/emacs/src/keyboard.c 8753 |
| 2459 | end c-src/emacs/src/lisp.h 2039 | 1131 | end c-src/emacs/src/lisp.h 2039 |
| 2460 | end c-src/emacs/src/regex.h 432 | 1132 | end c-src/emacs/src/regex.h 432 |
| 2461 | end tex-src/texinfo.tex /^\\def\\end{\\parsearg\\endxxx}$/ | ||
| 2462 | enddoublecolumns tex-src/texinfo.tex /^\\def\\enddoublecolumns{\\output={\\balancecolumns}\\ej/ | 1133 | enddoublecolumns tex-src/texinfo.tex /^\\def\\enddoublecolumns{\\output={\\balancecolumns}\\ej/ |
| 1134 | /ENDPRINTCODE ps-src/rfc1245.ps /^\/ENDPRINTCODE {$/ | ||
| 1135 | end tex-src/texinfo.tex /^\\def\\end{\\parsearg\\endxxx}$/ | ||
| 2463 | endtoken c-src/etags.c /^#define endtoken(c) (_etk[CHAR (c)]) \/* c ends tok/ | 1136 | endtoken c-src/etags.c /^#define endtoken(c) (_etk[CHAR (c)]) \/* c ends tok/ |
| 2464 | endxxx tex-src/texinfo.tex /^\\def\\endxxx #1{%$/ | 1137 | endxxx tex-src/texinfo.tex /^\\def\\endxxx #1{%$/ |
| 2465 | enter_critical_section c-src/h.h 116 | 1138 | enter_critical_section c-src/h.h 116 |
| 1139 | ENTRY c-src/sysdep.h /^#define ENTRY(name) \\$/ | ||
| 2466 | entry perl-src/htlmify-cystic 218 | 1140 | entry perl-src/htlmify-cystic 218 |
| 2467 | entry perl-src/htlmify-cystic 234 | 1141 | entry perl-src/htlmify-cystic 234 |
| 2468 | entry perl-src/htlmify-cystic 245 | 1142 | entry perl-src/htlmify-cystic 245 |
| @@ -2472,42 +1146,69 @@ entry perl-src/htlmify-cystic 276 | |||
| 2472 | entry perl-src/htlmify-cystic 281 | 1146 | entry perl-src/htlmify-cystic 281 |
| 2473 | entry perl-src/htlmify-cystic 296 | 1147 | entry perl-src/htlmify-cystic 296 |
| 2474 | entry tex-src/texinfo.tex /^\\def\\entry #1#2{\\begingroup$/ | 1148 | entry tex-src/texinfo.tex /^\\def\\entry #1#2{\\begingroup$/ |
| 1149 | ENUM_BF c-src/emacs/src/lisp.h /^#define ENUM_BF(TYPE) enum TYPE$/ | ||
| 1150 | ENUM_BF c-src/emacs/src/lisp.h /^#define ENUM_BF(TYPE) unsigned int$/ | ||
| 2475 | enumerate tex-src/texinfo.tex /^\\def\\enumerate{\\parsearg\\enumeratezzz}$/ | 1151 | enumerate tex-src/texinfo.tex /^\\def\\enumerate{\\parsearg\\enumeratezzz}$/ |
| 2476 | enumeratey tex-src/texinfo.tex /^\\def\\enumeratey #1 #2\\endenumeratey{%$/ | 1152 | enumeratey tex-src/texinfo.tex /^\\def\\enumeratey #1 #2\\endenumeratey{%$/ |
| 2477 | enumeratezzz tex-src/texinfo.tex /^\\def\\enumeratezzz #1{\\enumeratey #1 \\endenumerate/ | 1153 | enumeratezzz tex-src/texinfo.tex /^\\def\\enumeratezzz #1{\\enumeratey #1 \\endenumerate/ |
| 1154 | ENVcheck tex-src/texinfo.tex /^\\def\\ENVcheck{%$/ | ||
| 1155 | Environment tex-src/gzip.texi /^@node Environment, Tapes, Advanced usage, Top$/ | ||
| 1156 | /E ps-src/rfc1245.ps /^\/E {lineto} bind def$/ | ||
| 1157 | EQ c-src/emacs/src/lisp.h /^# define EQ(x, y) lisp_h_EQ (x, y)$/ | ||
| 2478 | equalsKey objcpp-src/SimpleCalc.M /^- equalsKey:sender$/ | 1158 | equalsKey objcpp-src/SimpleCalc.M /^- equalsKey:sender$/ |
| 1159 | EQUAL y-src/cccp.c 12 | ||
| 2479 | equiv tex-src/texinfo.tex /^\\def\\equiv{\\leavevmode\\lower.1ex\\hbox to 1em{\\hfil/ | 1160 | equiv tex-src/texinfo.tex /^\\def\\equiv{\\leavevmode\\lower.1ex\\hbox to 1em{\\hfil/ |
| 2480 | equiv tex-src/texinfo.tex /^\\def\\equiv{\\realbackslash equiv}$/ | 1161 | equiv tex-src/texinfo.tex /^\\def\\equiv{\\realbackslash equiv}$/ |
| 1162 | Equotation tex-src/texinfo.tex /^\\def\\Equotation{\\par\\endgroup\\afterenvbreak}%$/ | ||
| 2481 | erlang_atom c-src/etags.c /^erlang_atom (char *s)$/ | 1163 | erlang_atom c-src/etags.c /^erlang_atom (char *s)$/ |
| 2482 | erlang_attribute c-src/etags.c /^erlang_attribute (char *s)$/ | 1164 | erlang_attribute c-src/etags.c /^erlang_attribute (char *s)$/ |
| 2483 | erlang_func c-src/etags.c /^erlang_func (char *s, char *last)$/ | 1165 | erlang_func c-src/etags.c /^erlang_func (char *s, char *last)$/ |
| 1166 | Erlang_functions c-src/etags.c /^Erlang_functions (FILE *inf)$/ | ||
| 1167 | Erlang_help c-src/etags.c 567 | ||
| 1168 | Erlang_suffixes c-src/etags.c 565 | ||
| 1169 | ERLSRC make-src/Makefile /^ERLSRC=gs_dialog.erl lines.erl lists.erl$/ | ||
| 2484 | error c-src/emacs/src/lisp.h /^extern _Noreturn void error (const char *, ...) AT/ | 1170 | error c-src/emacs/src/lisp.h /^extern _Noreturn void error (const char *, ...) AT/ |
| 2485 | error c-src/etags.c /^error (const char *format, ...)$/ | 1171 | error c-src/etags.c /^error (const char *format, ...)$/ |
| 2486 | error c-src/etags.c /^static void error (const char *, ...) ATTRIBUTE_FO/ | 1172 | error c-src/etags.c /^static void error (const char *, ...) ATTRIBUTE_FO/ |
| 2487 | error tex-src/texinfo.tex /^\\def\\error{\\leavevmode\\lower.7ex\\copy\\errorbox}$/ | ||
| 2488 | error y-src/cccp.y /^error (msg)$/ | ||
| 2489 | errorE tex-src/texinfo.tex /^\\def\\errorE#1{$/ | 1173 | errorE tex-src/texinfo.tex /^\\def\\errorE#1{$/ |
| 1174 | Error_Information/t ada-src/2ataspri.ads /^ type Error_Information is new Interfaces.C.POSI/ | ||
| 2490 | error_signaled c-src/etags.c 264 | 1175 | error_signaled c-src/etags.c 264 |
| 1176 | error tex-src/texinfo.tex /^\\def\\error{\\leavevmode\\lower.7ex\\copy\\errorbox}$/ | ||
| 1177 | ERROR y-src/cccp.c 9 | ||
| 1178 | error y-src/cccp.y /^error (msg)$/ | ||
| 1179 | ERROR y-src/parse.y 304 | ||
| 1180 | ErrStrToNmStr pas-src/common.pas /^function ErrStrToNmStr;(*($/ | ||
| 1181 | Esmallexample tex-src/texinfo.tex /^\\def\\Esmallexample{\\Elisp}$/ | ||
| 1182 | Esmallexample tex-src/texinfo.tex /^\\global\\def\\Esmallexample{\\Esmalllisp}$/ | ||
| 1183 | Esmalllisp tex-src/texinfo.tex /^\\def\\Esmalllisp{\\endgroup\\afterenvbreak}%$/ | ||
| 1184 | Etable tex-src/texinfo.tex /^\\def\\Etable{\\endgraf\\endgroup\\afterenvbreak}%$/ | ||
| 1185 | Etable tex-src/texinfo.tex /^\\let\\Etable=\\relax}}$/ | ||
| 1186 | ETAGS12 make-src/Makefile /^ETAGS12: etags12 ${infiles}$/ | ||
| 1187 | ETAGS13 ETAGS14 ETAGS15 make-src/Makefile /^ETAGS13 ETAGS14 ETAGS15: etags% ${infiles}$/ | ||
| 1188 | etags.1.man make-src/Makefile /^etags.1.man: etags.1$/ | ||
| 2491 | etags el-src/emacs/lisp/progmodes/etags.el /^(defgroup etags nil "Tags tables."$/ | 1189 | etags el-src/emacs/lisp/progmodes/etags.el /^(defgroup etags nil "Tags tables."$/ |
| 2492 | etags html-src/software.html /^Etags$/ | ||
| 2493 | etags make-src/Makefile /^etags: etags.c ${OBJS}$/ | ||
| 2494 | etags--xref-find-definitions el-src/emacs/lisp/progmodes/etags.el /^(defun etags--xref-find-definitions (pattern &opti/ | ||
| 2495 | etags--xref-limit el-src/emacs/lisp/progmodes/etags.el /^(defconst etags--xref-limit 1000)$/ | ||
| 2496 | etags-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-file-of-tag (&optional relative) ; Do/ | 1190 | etags-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-file-of-tag (&optional relative) ; Do/ |
| 1191 | etags_getcwd c-src/etags.c /^etags_getcwd (void)$/ | ||
| 2497 | etags-goto-tag-location el-src/emacs/lisp/progmodes/etags.el /^(defun etags-goto-tag-location (tag-info)$/ | 1192 | etags-goto-tag-location el-src/emacs/lisp/progmodes/etags.el /^(defun etags-goto-tag-location (tag-info)$/ |
| 1193 | etags html-src/software.html /^Etags$/ | ||
| 2498 | etags-list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun etags-list-tags (file) ; Doc string?$/ | 1194 | etags-list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun etags-list-tags (file) ; Doc string?$/ |
| 1195 | etags make-src/Makefile /^etags: etags.c ${OBJS}$/ | ||
| 1196 | ETAGS make-src/Makefile /^ETAGS: FRC etags ${infiles}$/ | ||
| 1197 | ETAGS% make-src/Makefile /^ETAGS%: FRC etags% ${infiles}$/ | ||
| 2499 | etags-recognize-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-recognize-tags-table ()$/ | 1198 | etags-recognize-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-recognize-tags-table ()$/ |
| 2500 | etags-snarf-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-snarf-tag (&optional use-explicit) ; / | 1199 | etags-snarf-tag el-src/emacs/lisp/progmodes/etags.el /^(defun etags-snarf-tag (&optional use-explicit) ; / |
| 2501 | etags-tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-apropos (string) ; Doc string?$/ | ||
| 2502 | etags-tags-apropos-additional el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-apropos-additional (regexp)$/ | 1200 | etags-tags-apropos-additional el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-apropos-additional (regexp)$/ |
| 1201 | etags-tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-apropos (string) ; Doc string?$/ | ||
| 2503 | etags-tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-completion-table () ; Doc string/ | 1202 | etags-tags-completion-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-completion-table () ; Doc string/ |
| 2504 | etags-tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-included-tables () ; Doc string?/ | 1203 | etags-tags-included-tables el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-included-tables () ; Doc string?/ |
| 2505 | etags-tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-table-files () ; Doc string?$/ | 1204 | etags-tags-table-files el-src/emacs/lisp/progmodes/etags.el /^(defun etags-tags-table-files () ; Doc string?$/ |
| 2506 | etags-verify-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-verify-tags-table ()$/ | 1205 | etags-verify-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun etags-verify-tags-table ()$/ |
| 2507 | etags-xref-find el-src/emacs/lisp/progmodes/etags.el /^(defun etags-xref-find (action id)$/ | 1206 | etags--xref-find-definitions el-src/emacs/lisp/progmodes/etags.el /^(defun etags--xref-find-definitions (pattern &opti/ |
| 2508 | etags-xref-find-definitions-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar etags-xref-find-definitions-tag-order '(ta/ | 1207 | etags-xref-find-definitions-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar etags-xref-find-definitions-tag-order '(ta/ |
| 2509 | etags.1.man make-src/Makefile /^etags.1.man: etags.1$/ | 1208 | etags-xref-find el-src/emacs/lisp/progmodes/etags.el /^(defun etags-xref-find (action id)$/ |
| 2510 | etags_getcwd c-src/etags.c /^etags_getcwd (void)$/ | 1209 | etags--xref-limit el-src/emacs/lisp/progmodes/etags.el /^(defconst etags--xref-limit 1000)$/ |
| 1210 | Etex tex-src/texinfo.tex /^\\let\\Etex=\\endgroup}$/ | ||
| 1211 | Etitlepage tex-src/texinfo.tex /^\\def\\Etitlepage{%$/ | ||
| 2511 | eval_dyn c-src/emacs/src/keyboard.c /^eval_dyn (Lisp_Object form)$/ | 1212 | eval_dyn c-src/emacs/src/keyboard.c /^eval_dyn (Lisp_Object form)$/ |
| 2512 | evenfooting tex-src/texinfo.tex /^\\def\\evenfooting{\\parsearg\\evenfootingxxx}$/ | 1213 | evenfooting tex-src/texinfo.tex /^\\def\\evenfooting{\\parsearg\\evenfootingxxx}$/ |
| 2513 | evenfootingxxx tex-src/texinfo.tex /^\\gdef\\evenfootingxxx #1{\\evenfootingyyy #1@|@|@|@|/ | 1214 | evenfootingxxx tex-src/texinfo.tex /^\\gdef\\evenfootingxxx #1{\\evenfootingyyy #1@|@|@|@|/ |
| @@ -2516,8 +1217,8 @@ evenheading tex-src/texinfo.tex /^\\def\\evenheading{\\parsearg\\evenheadingxxx} | |||
| 2516 | evenheadingxxx tex-src/texinfo.tex /^\\gdef\\evenheadingxxx #1{\\evenheadingyyy #1@|@|@|@|/ | 1217 | evenheadingxxx tex-src/texinfo.tex /^\\gdef\\evenheadingxxx #1{\\evenheadingyyy #1@|@|@|@|/ |
| 2517 | evenheadingyyy tex-src/texinfo.tex /^\\gdef\\evenheadingyyy #1@|#2@|#3@|#4\\finish{%$/ | 1218 | evenheadingyyy tex-src/texinfo.tex /^\\gdef\\evenheadingyyy #1@|#2@|#3@|#4\\finish{%$/ |
| 2518 | event-convert-list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, / | 1219 | event-convert-list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, / |
| 2519 | event-symbol-parse-modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/ | ||
| 2520 | event_head c-src/emacs/src/keyboard.c 11021 | 1220 | event_head c-src/emacs/src/keyboard.c 11021 |
| 1221 | event-symbol-parse-modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/ | ||
| 2521 | event_to_kboard c-src/emacs/src/keyboard.c /^event_to_kboard (struct input_event *event)$/ | 1222 | event_to_kboard c-src/emacs/src/keyboard.c /^event_to_kboard (struct input_event *event)$/ |
| 2522 | everyfooting tex-src/texinfo.tex /^\\def\\everyfooting{\\parsearg\\everyfootingxxx}$/ | 1223 | everyfooting tex-src/texinfo.tex /^\\def\\everyfooting{\\parsearg\\everyfootingxxx}$/ |
| 2523 | everyfootingxxx tex-src/texinfo.tex /^\\gdef\\everyfootingxxx #1{\\everyfootingyyy #1@|@|@|/ | 1224 | everyfootingxxx tex-src/texinfo.tex /^\\gdef\\everyfootingxxx #1{\\everyfootingyyy #1@|@|@|/ |
| @@ -2525,24 +1226,24 @@ everyfootingyyy tex-src/texinfo.tex /^\\gdef\\everyfootingyyy #1@|#2@|#3@|#4\\fi | |||
| 2525 | everyheading tex-src/texinfo.tex /^\\def\\everyheading{\\parsearg\\everyheadingxxx}$/ | 1226 | everyheading tex-src/texinfo.tex /^\\def\\everyheading{\\parsearg\\everyheadingxxx}$/ |
| 2526 | everyheadingxxx tex-src/texinfo.tex /^\\gdef\\everyheadingxxx #1{\\everyheadingyyy #1@|@|@|/ | 1227 | everyheadingxxx tex-src/texinfo.tex /^\\gdef\\everyheadingxxx #1{\\everyheadingyyy #1@|@|@|/ |
| 2527 | everyheadingyyy tex-src/texinfo.tex /^\\gdef\\everyheadingyyy #1@|#2@|#3@|#4\\finish{%$/ | 1228 | everyheadingyyy tex-src/texinfo.tex /^\\gdef\\everyheadingyyy #1@|#2@|#3@|#4\\finish{%$/ |
| 1229 | Evtable tex-src/texinfo.tex /^\\def\\Evtable{\\endgraf\\endgroup\\afterenvbreak}%$/ | ||
| 2528 | ewbot tex-src/texinfo.tex /^\\def\\ewbot{\\vrule height0pt depth\\cornerthick widt/ | 1230 | ewbot tex-src/texinfo.tex /^\\def\\ewbot{\\vrule height0pt depth\\cornerthick widt/ |
| 2529 | ewtop tex-src/texinfo.tex /^\\def\\ewtop{\\vrule height\\cornerthick depth0pt widt/ | 1231 | ewtop tex-src/texinfo.tex /^\\def\\ewtop{\\vrule height\\cornerthick depth0pt widt/ |
| 2530 | exact c-src/emacs/src/gmalloc.c 200 | 1232 | exact c-src/emacs/src/gmalloc.c 200 |
| 2531 | example tex-src/texinfo.tex /^\\let\\example=\\lisp$/ | 1233 | example tex-src/texinfo.tex /^\\let\\example=\\lisp$/ |
| 1234 | /exclamdown ps-src/rfc1245.ps /^\/exclamdown \/logicalnot \/.notdef \/florin \/.notdef / | ||
| 2532 | exdent tex-src/texinfo.tex /^\\def\\exdent{\\parsearg\\exdentyyy}$/ | 1235 | exdent tex-src/texinfo.tex /^\\def\\exdent{\\parsearg\\exdentyyy}$/ |
| 2533 | exdent tex-src/texinfo.tex /^\\let\\exdent=\\nofillexdent$/ | 1236 | exdent tex-src/texinfo.tex /^\\let\\exdent=\\nofillexdent$/ |
| 2534 | exdentyyy tex-src/texinfo.tex /^\\def\\exdentyyy #1{{\\hfil\\break\\hbox{\\kern -\\exdent/ | 1237 | exdentyyy tex-src/texinfo.tex /^\\def\\exdentyyy #1{{\\hfil\\break\\hbox{\\kern -\\exdent/ |
| 2535 | execute cp-src/c.C /^ void execute(CPluginCSCState& p, int w, in/ | 1238 | execute cp-src/c.C /^ void execute(CPluginCSCState& p, int w, in/ |
| 1239 | EXFUN c-src/emacs/src/lisp.h /^#define EXFUN(fnname, maxargs) \\$/ | ||
| 1240 | exit_critical_to_previous c-src/h.h 117 | ||
| 2536 | exit c-src/exit.c /^DEFUN(exit, (status), int status)$/ | 1241 | exit c-src/exit.c /^DEFUN(exit, (status), int status)$/ |
| 2537 | exit c-src/exit.strange_suffix /^DEFUN(exit, (status), int status)$/ | 1242 | exit c-src/exit.strange_suffix /^DEFUN(exit, (status), int status)$/ |
| 1243 | Exit_LL_Task/p ada-src/2ataspri.adb /^ procedure Exit_LL_Task is$/ | ||
| 1244 | Exit_LL_Task/p ada-src/2ataspri.ads /^ procedure Exit_LL_Task;$/ | ||
| 2538 | exit-recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/ | 1245 | exit-recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/ |
| 2539 | exit_critical_to_previous c-src/h.h 117 | ||
| 2540 | exp y-src/atest.y 2 | ||
| 2541 | exp y-src/cccp.y 156 | ||
| 2542 | exp y-src/cccp.y 185 | ||
| 2543 | exp y-src/parse.y 95 | ||
| 2544 | exp1 y-src/cccp.y 148 | 1246 | exp1 y-src/cccp.y 148 |
| 2545 | exp_list y-src/parse.y 263 | ||
| 2546 | expand-abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/ | 1247 | expand-abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/ |
| 2547 | expandafter tex-src/texinfo.tex /^\\expandafter\\let\\expandafter\\synindexfoo\\expandaft/ | 1248 | expandafter tex-src/texinfo.tex /^\\expandafter\\let\\expandafter\\synindexfoo\\expandaft/ |
| 2548 | expandmng prol-src/natded.prolog /^expandmng(var(V),var(V)).$/ | 1249 | expandmng prol-src/natded.prolog /^expandmng(var(V),var(V)).$/ |
| @@ -2552,24 +1253,18 @@ expandsyn prol-src/natded.prolog /^expandsyn(Syn,Syn):-$/ | |||
| 2552 | expansion tex-src/texinfo.tex /^\\def\\expansion{\\leavevmode\\raise.1ex\\hbox to 1em{\\/ | 1253 | expansion tex-src/texinfo.tex /^\\def\\expansion{\\leavevmode\\raise.1ex\\hbox to 1em{\\/ |
| 2553 | expansion tex-src/texinfo.tex /^\\def\\expansion{\\realbackslash expansion}$/ | 1254 | expansion tex-src/texinfo.tex /^\\def\\expansion{\\realbackslash expansion}$/ |
| 2554 | explicitly-quoted-pending-delete-mode el-src/TAGTEST.EL /^(defalias (quote explicitly-quoted-pending-delete-/ | 1255 | explicitly-quoted-pending-delete-mode el-src/TAGTEST.EL /^(defalias (quote explicitly-quoted-pending-delete-/ |
| 1256 | exp_list y-src/parse.y 263 | ||
| 2555 | expression_value y-src/cccp.y 68 | 1257 | expression_value y-src/cccp.y 68 |
| 1258 | exp y-src/atest.y 2 | ||
| 1259 | exp y-src/cccp.y 156 | ||
| 1260 | exp y-src/cccp.y 185 | ||
| 1261 | exp y-src/parse.y 95 | ||
| 1262 | EXTAGS make-src/Makefile /^EXTAGS: extags ${infiles} Makefile$/ | ||
| 1263 | EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 3497 | ||
| 1264 | EXTERNALLY_VISIBLE c-src/emacs/src/keyboard.c 4372 | ||
| 1265 | ExtractCommentInfo pas-src/common.pas /^procedure ExtractCommentInfo; (*($/ | ||
| 2556 | extras c-src/emacs/src/lisp.h 1603 | 1266 | extras c-src/emacs/src/lisp.h 1603 |
| 2557 | extvar c-src/h.h 109 | 1267 | extvar c-src/h.h 109 |
| 2558 | f c-src/c.c /^T f(){if(x){}$/ | ||
| 2559 | f c-src/h.h 89 | ||
| 2560 | f c.c /^int f$/ | ||
| 2561 | f c.c 145 | ||
| 2562 | f c.c 156 | ||
| 2563 | f c.c 168 | ||
| 2564 | f cp-src/c.C /^ void f() {}$/ | ||
| 2565 | f cp-src/c.C /^ int f(){return 0;}; \/\/ first comment$/ | ||
| 2566 | f cp-src/c.C /^A<float,B<int> > A<B<float>,int>::f(A<int>* x) {}$/ | ||
| 2567 | f cp-src/c.C /^A<int>* f() {}$/ | ||
| 2568 | f cp-src/c.C /^class B<int> { void f() {} };$/ | ||
| 2569 | f cp-src/c.C /^int A<int>::f(A<int>* x) {}$/ | ||
| 2570 | f cp-src/c.C /^int f(A<int> x) {}$/ | ||
| 2571 | f cp-src/fail.C /^ int f() { return 5; }$/ | ||
| 2572 | f cp-src/fail.C /^int A::B::f() { return 2; }$/ | ||
| 2573 | f1 c.c /^ f1 () { \/* Do something. *\/; }$/ | 1268 | f1 c.c /^ f1 () { \/* Do something. *\/; }$/ |
| 2574 | f1 perl-src/kai-test.pl /^sub f1 {$/ | 1269 | f1 perl-src/kai-test.pl /^sub f1 {$/ |
| 2575 | f2 c.c /^void f2 () { \/* Do something. *\/; }$/ | 1270 | f2 c.c /^void f2 () { \/* Do something. *\/; }$/ |
| @@ -2579,39 +1274,92 @@ f4 perl-src/kai-test.pl /^sub Bar::f4 {$/ | |||
| 2579 | f5 perl-src/kai-test.pl /^sub f5 {$/ | 1274 | f5 perl-src/kai-test.pl /^sub f5 {$/ |
| 2580 | f6 perl-src/kai-test.pl /^sub f6 {$/ | 1275 | f6 perl-src/kai-test.pl /^sub f6 {$/ |
| 2581 | f7 perl-src/kai-test.pl /^sub f7 {$/ | 1276 | f7 perl-src/kai-test.pl /^sub f7 {$/ |
| 2582 | fast_string_match_ignore_case c-src/emacs/src/lisp.h /^fast_string_match_ignore_case (Lisp_Object regexp,/ | 1277 | Fabbrev_expansion c-src/abbrev.c /^DEFUN ("abbrev-expansion", Fabbrev_expansion, Sabb/ |
| 1278 | Fabbrev_symbol c-src/abbrev.c /^DEFUN ("abbrev-symbol", Fabbrev_symbol, Sabbrev_sy/ | ||
| 1279 | Fabort_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("abort-recursive-edit", Fabort_recursive_ed/ | ||
| 1280 | =/f ada-src/etags-test-for.ada /^ function "=" (L, R : System.Address) return Boo/ | ||
| 1281 | Fails_t c-src/h.h 5 | ||
| 1282 | /fakecolorsetup ps-src/rfc1245.ps /^\/fakecolorsetup {$/ | ||
| 1283 | FASTCFLAGS make-src/Makefile /^FASTCFLAGS=-O3 -finline-functions -ffast-math -fun/ | ||
| 1284 | FASTCFLAGSWARN make-src/Makefile /^FASTCFLAGSWARN=${WARNINGS} -Werror ${FASTCFLAGS}$/ | ||
| 2583 | fastctags make-src/Makefile /^fastctags:$/ | 1285 | fastctags make-src/Makefile /^fastctags:$/ |
| 2584 | fastetags make-src/Makefile /^fastetags:$/ | 1286 | fastetags make-src/Makefile /^fastetags:$/ |
| 2585 | fastmap c-src/emacs/src/regex.h 355 | ||
| 2586 | fastmap_accurate c-src/emacs/src/regex.h 383 | 1287 | fastmap_accurate c-src/emacs/src/regex.h 383 |
| 2587 | fatal c-src/etags.c /^fatal (const char *s1, const char *s2)$/ | 1288 | fastmap c-src/emacs/src/regex.h 355 |
| 1289 | fast_string_match_ignore_case c-src/emacs/src/lisp.h /^fast_string_match_ignore_case (Lisp_Object regexp,/ | ||
| 2588 | fatala c.c /^void fatala () __attribute__ ((noreturn));$/ | 1290 | fatala c.c /^void fatala () __attribute__ ((noreturn));$/ |
| 1291 | fatal c-src/etags.c /^fatal (const char *s1, const char *s2)$/ | ||
| 1292 | f c.c 145 | ||
| 1293 | f c.c 156 | ||
| 1294 | f c.c 168 | ||
| 1295 | f c.c /^int f$/ | ||
| 1296 | Fclear_abbrev_table c-src/abbrev.c /^DEFUN ("clear-abbrev-table", Fclear_abbrev_table, / | ||
| 1297 | Fclear_this_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("clear-this-command-keys", Fclear_this_comm/ | ||
| 1298 | Fcommand_error_default_function c-src/emacs/src/keyboard.c /^DEFUN ("command-error-default-function", Fcommand_/ | ||
| 2589 | fconst forth-src/test-forth.fth /^3.1415e fconstant fconst$/ | 1299 | fconst forth-src/test-forth.fth /^3.1415e fconstant fconst$/ |
| 2590 | fdHandler objc-src/Subprocess.m /^- fdHandler:(int)theFd$/ | 1300 | f cp-src/c.C /^A<float,B<int> > A<B<float>,int>::f(A<int>* x) {}$/ |
| 2591 | fdHandler objc-src/Subprocess.m /^fdHandler (int theFd, id self)$/ | 1301 | f cp-src/c.C /^A<int>* f() {}$/ |
| 1302 | f cp-src/c.C /^class B<int> { void f() {} };$/ | ||
| 1303 | f cp-src/c.C /^int A<int>::f(A<int>* x) {}$/ | ||
| 1304 | f cp-src/c.C /^int f(A<int> x) {}$/ | ||
| 1305 | f cp-src/c.C /^ int f(){return 0;}; \/\/ first comment$/ | ||
| 1306 | f cp-src/c.C /^ void f() {}$/ | ||
| 1307 | f cp-src/fail.C /^int A::B::f() { return 2; }$/ | ||
| 1308 | f cp-src/fail.C /^ int f() { return 5; }$/ | ||
| 1309 | f c-src/c.c /^T f(){if(x){}$/ | ||
| 1310 | f c-src/h.h 89 | ||
| 1311 | Fcurrent_idle_time c-src/emacs/src/keyboard.c /^DEFUN ("current-idle-time", Fcurrent_idle_time, Sc/ | ||
| 1312 | Fcurrent_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("current-input-mode", Fcurrent_input_mode, / | ||
| 1313 | Fdefine_abbrev c-src/abbrev.c /^DEFUN ("define-abbrev", Fdefine_abbrev, Sdefine_ab/ | ||
| 1314 | Fdefine_abbrev_table c-src/abbrev.c /^DEFUN ("define-abbrev-table", Fdefine_abbrev_table/ | ||
| 1315 | Fdefine_global_abbrev c-src/abbrev.c /^DEFUN ("define-global-abbrev", Fdefine_global_abbr/ | ||
| 1316 | Fdefine_mode_abbrev c-src/abbrev.c /^DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev, / | ||
| 2592 | fdefunkey c-src/etags.c 2409 | 1317 | fdefunkey c-src/etags.c 2409 |
| 2593 | fdefunname c-src/etags.c 2410 | 1318 | fdefunname c-src/etags.c 2410 |
| 2594 | fdesc c-src/etags.c 201 | 1319 | fdesc c-src/etags.c 201 |
| 2595 | fdesc c-src/etags.c 212 | 1320 | fdesc c-src/etags.c 212 |
| 1321 | fdHandler objc-src/Subprocess.m /^- fdHandler:(int)theFd$/ | ||
| 1322 | fdHandler objc-src/Subprocess.m /^fdHandler (int theFd, id self)$/ | ||
| 1323 | Fdiscard_input c-src/emacs/src/keyboard.c /^DEFUN ("discard-input", Fdiscard_input, Sdiscard_i/ | ||
| 2596 | fdp c-src/etags.c 217 | 1324 | fdp c-src/etags.c 217 |
| 1325 | Fevent_convert_list c-src/emacs/src/keyboard.c /^DEFUN ("event-convert-list", Fevent_convert_list, / | ||
| 1326 | Fevent_symbol_parse_modifiers c-src/emacs/src/keyboard.c /^DEFUN ("internal-event-symbol-parse-modifiers", Fe/ | ||
| 1327 | Fexit_recursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("exit-recursive-edit", Fexit_recursive_edit/ | ||
| 1328 | Fexpand_abbrev c-src/abbrev.c /^DEFUN ("expand-abbrev", Fexpand_abbrev, Sexpand_ab/ | ||
| 2597 | ff cp-src/c.C /^ int ff(){return 1;};$/ | 1329 | ff cp-src/c.C /^ int ff(){return 1;};$/ |
| 1330 | F_getit c-src/etags.c /^F_getit (FILE *inf)$/ | ||
| 1331 | >field1 forth-src/test-forth.fth /^ 9 field >field1$/ | ||
| 1332 | >field2 forth-src/test-forth.fth /^ 5 field >field2$/ | ||
| 2598 | field_of_play cp-src/conway.cpp 18 | 1333 | field_of_play cp-src/conway.cpp 18 |
| 2599 | fignore c-src/etags.c 2416 | 1334 | fignore c-src/etags.c 2416 |
| 2600 | file tex-src/texinfo.tex /^\\def\\file##1{\\realbackslash file {##1}}$/ | ||
| 2601 | file tex-src/texinfo.tex /^\\def\\file##1{\\realbackslash file {##1}}%$/ | ||
| 2602 | file tex-src/texinfo.tex /^\\let\\file=\\indexdummyfont$/ | ||
| 2603 | file tex-src/texinfo.tex /^\\let\\file=\\samp$/ | ||
| 2604 | file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun file-of-tag (&optional relative)$/ | ||
| 2605 | file-of-tag-function el-src/emacs/lisp/progmodes/etags.el /^(defvar file-of-tag-function nil$/ | ||
| 2606 | fileJoin php-src/lce_functions.php /^ function fileJoin()$/ | ||
| 2607 | file_end perl-src/htlmify-cystic /^sub file_end ()$/ | 1335 | file_end perl-src/htlmify-cystic /^sub file_end ()$/ |
| 2608 | file_index perl-src/htlmify-cystic 33 | 1336 | file_index perl-src/htlmify-cystic 33 |
| 2609 | file_tocs perl-src/htlmify-cystic 30 | 1337 | fileJoin php-src/lce_functions.php /^ function fileJoin()$/ |
| 2610 | filename_is_absolute c-src/etags.c /^filename_is_absolute (char *fn)$/ | 1338 | filename_is_absolute c-src/etags.c /^filename_is_absolute (char *fn)$/ |
| 2611 | filenames c-src/etags.c 196 | 1339 | filenames c-src/etags.c 196 |
| 1340 | file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun file-of-tag (&optional relative)$/ | ||
| 1341 | file-of-tag-function el-src/emacs/lisp/progmodes/etags.el /^(defvar file-of-tag-function nil$/ | ||
| 1342 | file tex-src/texinfo.tex /^\\def\\file##1{\\realbackslash file {##1}}%$/ | ||
| 1343 | file tex-src/texinfo.tex /^\\def\\file##1{\\realbackslash file {##1}}$/ | ||
| 1344 | file tex-src/texinfo.tex /^\\let\\file=\\indexdummyfont$/ | ||
| 1345 | file tex-src/texinfo.tex /^\\let\\file=\\samp$/ | ||
| 1346 | file_tocs perl-src/htlmify-cystic 30 | ||
| 1347 | /fillprocs ps-src/rfc1245.ps /^\/fillprocs 32 array def$/ | ||
| 1348 | FILTER make-src/Makefile /^FILTER=grep -v '\\.[Cchefy][lor]*,[1-9][0-9]*' || t/ | ||
| 1349 | FINAL_FREE_BLOCKS c-src/emacs/src/gmalloc.c 135 | ||
| 1350 | Finalize_Cond/p ada-src/2ataspri.adb /^ procedure Finalize_Cond (Cond : in out Conditio/ | ||
| 1351 | Finalize_Cond/p ada-src/2ataspri.ads /^ procedure Finalize_Cond (Cond : in out Conditio/ | ||
| 1352 | Finalize_Lock/p ada-src/2ataspri.adb /^ procedure Finalize_Lock (L : in out Lock) is$/ | ||
| 1353 | Finalize_Lock/p ada-src/2ataspri.ads /^ procedure Finalize_Lock (L : in out Lock);$/ | ||
| 1354 | FINALIZERP c-src/emacs/src/lisp.h /^FINALIZERP (Lisp_Object x)$/ | ||
| 1355 | Finalize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Finalize_TAS_Cell (Cell : in out TAS_/ | ||
| 1356 | Finalize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Finalize_TAS_Cell (Cell : in out TA/ | ||
| 2612 | finalout tex-src/texinfo.tex /^\\def\\finalout{\\overfullrule=0pt}$/ | 1357 | finalout tex-src/texinfo.tex /^\\def\\finalout{\\overfullrule=0pt}$/ |
| 2613 | find-tag el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag (tagname &optional next-p regexp-p/ | 1358 | findcats prol-src/natded.prolog /^findcats([],Left,Left).$/ |
| 1359 | find_entries c-src/etags.c /^find_entries (FILE *inf)$/ | ||
| 1360 | findex tex-src/texinfo.tex /^\\def\\findex {\\fnindex}$/ | ||
| 2614 | find-tag-default-function el-src/emacs/lisp/progmodes/etags.el /^(defcustom find-tag-default-function nil$/ | 1361 | find-tag-default-function el-src/emacs/lisp/progmodes/etags.el /^(defcustom find-tag-default-function nil$/ |
| 1362 | find-tag el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag (tagname &optional next-p regexp-p/ | ||
| 2615 | find-tag-history el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-history nil) ; Doc string?$/ | 1363 | find-tag-history el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-history nil) ; Doc string?$/ |
| 2616 | find-tag-hook el-src/emacs/lisp/progmodes/etags.el /^(defcustom find-tag-hook nil$/ | 1364 | find-tag-hook el-src/emacs/lisp/progmodes/etags.el /^(defcustom find-tag-hook nil$/ |
| 2617 | find-tag-in-order el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-in-order (pattern$/ | 1365 | find-tag-in-order el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-in-order (pattern$/ |
| @@ -2629,26 +1377,44 @@ find-tag-regexp-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar find-ta | |||
| 2629 | find-tag-search-function el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-search-function nil$/ | 1377 | find-tag-search-function el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-search-function nil$/ |
| 2630 | find-tag-tag el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-tag (string)$/ | 1378 | find-tag-tag el-src/emacs/lisp/progmodes/etags.el /^(defun find-tag-tag (string)$/ |
| 2631 | find-tag-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-tag-order nil$/ | 1379 | find-tag-tag-order el-src/emacs/lisp/progmodes/etags.el /^(defvar find-tag-tag-order nil$/ |
| 2632 | find_entries c-src/etags.c /^find_entries (FILE *inf)$/ | ||
| 2633 | find_user_signal_name c-src/emacs/src/keyboard.c /^find_user_signal_name (int sig)$/ | 1380 | find_user_signal_name c-src/emacs/src/keyboard.c /^find_user_signal_name (int sig)$/ |
| 2634 | findcats prol-src/natded.prolog /^findcats([],Left,Left).$/ | ||
| 2635 | findex tex-src/texinfo.tex /^\\def\\findex {\\fnindex}$/ | ||
| 2636 | finish_appendices perl-src/htlmify-cystic /^sub finish_appendices ()$/ | 1381 | finish_appendices perl-src/htlmify-cystic /^sub finish_appendices ()$/ |
| 2637 | finish_sections perl-src/htlmify-cystic /^sub finish_sections ()$/ | 1382 | finish_sections perl-src/htlmify-cystic /^sub finish_sections ()$/ |
| 2638 | finish_subsections perl-src/htlmify-cystic /^sub finish_subsections ()$/ | 1383 | finish_subsections perl-src/htlmify-cystic /^sub finish_subsections ()$/ |
| 2639 | finish_subsubsections perl-src/htlmify-cystic /^sub finish_subsubsections ()$/ | 1384 | finish_subsubsections perl-src/htlmify-cystic /^sub finish_subsubsections ()$/ |
| 2640 | finishtitlepage tex-src/texinfo.tex /^\\def\\finishtitlepage{%$/ | 1385 | finishtitlepage tex-src/texinfo.tex /^\\def\\finishtitlepage{%$/ |
| 2641 | finlist c-src/etags.c 2414 | 1386 | finlist c-src/etags.c 2414 |
| 1387 | Finput_pending_p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/ | ||
| 1388 | Finsert_abbrev_table_description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/ | ||
| 1389 | First100Chars pas-src/common.pas /^procedure First100Chars; (*($/ | ||
| 2642 | first c-src/emacs/src/gmalloc.c 151 | 1390 | first c-src/emacs/src/gmalloc.c 151 |
| 2643 | first tex-src/texinfo.tex /^\\def\\splitoff#1#2\\endmark{\\def\\first{#1}\\def\\rest{/ | 1391 | first tex-src/texinfo.tex /^\\def\\splitoff#1#2\\endmark{\\def\\first{#1}\\def\\rest{/ |
| 2644 | fitchtreelist prol-src/natded.prolog /^fitchtreelist([]).$/ | 1392 | fitchtreelist prol-src/natded.prolog /^fitchtreelist([]).$/ |
| 1393 | FIXNUM_BITS c-src/emacs/src/lisp.h 252 | ||
| 1394 | FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^#define FIXNUM_OVERFLOW_P(i) \\$/ | ||
| 1395 | FIXNUM_OVERFLOW_P c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (EQ, bool, (Lisp_Object x, Lisp_O/ | ||
| 2645 | fixup_locale c-src/emacs/src/lisp.h /^INLINE void fixup_locale (void) {}$/ | 1396 | fixup_locale c-src/emacs/src/lisp.h /^INLINE void fixup_locale (void) {}$/ |
| 2646 | flag c-src/getopt.h 83 | ||
| 2647 | flag2str pyt-src/server.py /^def flag2str(value, string):$/ | 1397 | flag2str pyt-src/server.py /^def flag2str(value, string):$/ |
| 1398 | flag c-src/getopt.h 83 | ||
| 2648 | flistseen c-src/etags.c 2415 | 1399 | flistseen c-src/etags.c 2415 |
| 1400 | FLOATP c-src/emacs/src/lisp.h /^# define FLOATP(x) lisp_h_FLOATP (x)$/ | ||
| 1401 | FLOAT_TO_STRING_BUFSIZE c-src/emacs/src/lisp.h 3927 | ||
| 1402 | /fl ps-src/rfc1245.ps /^\/fl { $/ | ||
| 2649 | flushcr tex-src/texinfo.tex /^\\def\\flushcr{\\ifx\\par\\lisppar \\def\\next##1{}\\else / | 1403 | flushcr tex-src/texinfo.tex /^\\def\\flushcr{\\ifx\\par\\lisppar \\def\\next##1{}\\else / |
| 2650 | flushleft tex-src/texinfo.tex /^\\def\\flushleft{%$/ | 1404 | flushleft tex-src/texinfo.tex /^\\def\\flushleft{%$/ |
| 2651 | flushright tex-src/texinfo.tex /^\\def\\flushright{%$/ | 1405 | flushright tex-src/texinfo.tex /^\\def\\flushright{%$/ |
| 1406 | Fmake_abbrev_table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/ | ||
| 1407 | /FMBEGINEPSF ps-src/rfc1245.ps /^\/FMBEGINEPSF { $/ | ||
| 1408 | /FMBEGINPAGE ps-src/rfc1245.ps /^\/FMBEGINPAGE { $/ | ||
| 1409 | /Fmcc ps-src/rfc1245.ps /^\/Fmcc {$/ | ||
| 1410 | /FMDEFINEFONT ps-src/rfc1245.ps /^\/FMDEFINEFONT { $/ | ||
| 1411 | /FMDOCUMENT ps-src/rfc1245.ps /^\/FMDOCUMENT { $/ | ||
| 1412 | /FMENDEPSF ps-src/rfc1245.ps /^\/FMENDEPSF {$/ | ||
| 1413 | /FMENDPAGE ps-src/rfc1245.ps /^\/FMENDPAGE {$/ | ||
| 1414 | /FMLOCAL ps-src/rfc1245.ps /^\/FMLOCAL {$/ | ||
| 1415 | /FMNORMALIZEGRAPHICS ps-src/rfc1245.ps /^\/FMNORMALIZEGRAPHICS { $/ | ||
| 1416 | /FMVERSION ps-src/rfc1245.ps /^\/FMVERSION {$/ | ||
| 1417 | /FMversion ps-src/rfc1245.ps /^\/FMversion (2.0) def $/ | ||
| 2652 | fn c-src/exit.c /^ void EXFUN((*fn[1]), (NOARGS));$/ | 1418 | fn c-src/exit.c /^ void EXFUN((*fn[1]), (NOARGS));$/ |
| 2653 | fn c-src/exit.strange_suffix /^ void EXFUN((*fn[1]), (NOARGS));$/ | 1419 | fn c-src/exit.strange_suffix /^ void EXFUN((*fn[1]), (NOARGS));$/ |
| 2654 | fnheader tex-src/texinfo.tex /^\\def\\deffn{\\defmethparsebody\\Edeffn\\deffnx\\deffnhe/ | 1420 | fnheader tex-src/texinfo.tex /^\\def\\deffn{\\defmethparsebody\\Edeffn\\deffnx\\deffnhe/ |
| @@ -2657,74 +1423,125 @@ fnitemindex tex-src/texinfo.tex /^\\def\\fnitemindex #1{\\doind {fn}{\\code{#1}} | |||
| 2657 | fnx\deffnheader tex-src/texinfo.tex /^\\def\\deffn{\\defmethparsebody\\Edeffn\\deffnx\\deffnhe/ | 1423 | fnx\deffnheader tex-src/texinfo.tex /^\\def\\deffn{\\defmethparsebody\\Edeffn\\deffnx\\deffnhe/ |
| 2658 | focus_set pyt-src/server.py /^ def focus_set(self):$/ | 1424 | focus_set pyt-src/server.py /^ def focus_set(self):$/ |
| 2659 | folio tex-src/texinfo.tex /^\\def\\dosetq #1#2{{\\let\\folio=0 \\turnoffactive%$/ | 1425 | folio tex-src/texinfo.tex /^\\def\\dosetq #1#2{{\\let\\folio=0 \\turnoffactive%$/ |
| 2660 | folio tex-src/texinfo.tex /^{\\let\\folio=0% Expand all macros now EXCEPT \\folio/ | ||
| 2661 | folio tex-src/texinfo.tex /^{\\let\\folio=0%$/ | 1426 | folio tex-src/texinfo.tex /^{\\let\\folio=0%$/ |
| 1427 | folio tex-src/texinfo.tex /^{\\let\\folio=0% Expand all macros now EXCEPT \\folio/ | ||
| 2662 | follow_key c-src/emacs/src/keyboard.c /^follow_key (Lisp_Object keymap, Lisp_Object key)$/ | 1428 | follow_key c-src/emacs/src/keyboard.c /^follow_key (Lisp_Object keymap, Lisp_Object key)$/ |
| 2663 | fonts tex-src/texinfo.tex /^\\obeyspaces \\obeylines \\ninett \\indexfonts \\rawbac/ | ||
| 2664 | fonts\rm tex-src/texinfo.tex /^ \\indexfonts\\rm \\tolerance=9500 \\advance\\baseline/ | 1429 | fonts\rm tex-src/texinfo.tex /^ \\indexfonts\\rm \\tolerance=9500 \\advance\\baseline/ |
| 2665 | foo c-src/h.h 18 | 1430 | fonts tex-src/texinfo.tex /^\\obeyspaces \\obeylines \\ninett \\indexfonts \\rawbac/ |
| 1431 | foo1 ruby-src/test1.ru /^ attr_reader(:foo1, :bar1, # comment$/ | ||
| 1432 | foo2 ruby-src/test1.ru /^ alias_method ( :foo2, #cmmt$/ | ||
| 1433 | foobar2_ c-src/h.h 16 | ||
| 1434 | foobar2 c-src/h.h 20 | ||
| 1435 | foobar c.c /^extern void foobar (void) __attribute__ ((section / | ||
| 1436 | foobar c-src/c.c /^int foobar() {;}$/ | ||
| 1437 | foo==bar el-src/TAGTEST.EL /^(defun foo==bar () (message "hi")) ; Bug#5624$/ | ||
| 1438 | Foo::Bar perl-src/kai-test.pl /^package Foo::Bar;$/ | ||
| 2666 | foo c.c 150 | 1439 | foo c.c 150 |
| 2667 | foo c.c 166 | 1440 | foo c.c 166 |
| 2668 | foo c.c 167 | 1441 | foo c.c 167 |
| 2669 | foo c.c 178 | 1442 | foo c.c 178 |
| 2670 | foo c.c 189 | 1443 | foo c.c 189 |
| 2671 | foo cp-src/c.C /^ foo() {$/ | ||
| 2672 | foo cp-src/c.C 68 | 1444 | foo cp-src/c.C 68 |
| 2673 | foo cp-src/c.C 79 | 1445 | foo cp-src/c.C 79 |
| 1446 | foo cp-src/c.C /^ foo() {$/ | ||
| 2674 | foo cp-src/x.cc /^XX::foo()$/ | 1447 | foo cp-src/x.cc /^XX::foo()$/ |
| 1448 | foo c-src/h.h 18 | ||
| 1449 | (foo) forth-src/test-forth.fth /^: (foo) 1 ;$/ | ||
| 1450 | foo forth-src/test-forth.fth /^: foo (foo) ;$/ | ||
| 2675 | foo f-src/entry.for /^ character*(*) function foo()$/ | 1451 | foo f-src/entry.for /^ character*(*) function foo()$/ |
| 2676 | foo f-src/entry.strange /^ character*(*) function foo()$/ | 1452 | foo f-src/entry.strange /^ character*(*) function foo()$/ |
| 2677 | foo f-src/entry.strange_suffix /^ character*(*) function foo()$/ | 1453 | foo f-src/entry.strange_suffix /^ character*(*) function foo()$/ |
| 2678 | foo forth-src/test-forth.fth /^: foo (foo) ;$/ | 1454 | Foo perl-src/kai-test.pl /^package Foo;$/ |
| 2679 | foo php-src/ptest.php /^foo()$/ | 1455 | foo php-src/ptest.php /^foo()$/ |
| 2680 | foo ruby-src/test1.ru /^ attr_reader :foo$/ | 1456 | foo ruby-src/test1.ru /^ attr_reader :foo$/ |
| 2681 | foo! ruby-src/test1.ru /^ def foo!$/ | 1457 | foo! ruby-src/test1.ru /^ def foo!$/ |
| 2682 | foo1 ruby-src/test1.ru /^ attr_reader(:foo1, :bar1, # comment$/ | ||
| 2683 | foo2 ruby-src/test1.ru /^ alias_method ( :foo2, #cmmt$/ | ||
| 2684 | foo==bar el-src/TAGTEST.EL /^(defun foo==bar () (message "hi")) ; Bug#5624$/ | ||
| 2685 | foobar c-src/c.c /^int foobar() {;}$/ | ||
| 2686 | foobar c.c /^extern void foobar (void) __attribute__ ((section / | ||
| 2687 | foobar2 c-src/h.h 20 | ||
| 2688 | foobar2_ c-src/h.h 16 | ||
| 2689 | footnote tex-src/texinfo.tex /^\\long\\gdef\\footnote #1{\\global\\advance \\footnoteno/ | ||
| 2690 | footnotestyle tex-src/texinfo.tex /^\\let\\footnotestyle=\\comment$/ | 1458 | footnotestyle tex-src/texinfo.tex /^\\let\\footnotestyle=\\comment$/ |
| 1459 | footnote tex-src/texinfo.tex /^\\long\\gdef\\footnote #1{\\global\\advance \\footnoteno/ | ||
| 2691 | footnotezzz tex-src/texinfo.tex /^\\long\\gdef\\footnotezzz #1{\\insert\\footins{$/ | 1460 | footnotezzz tex-src/texinfo.tex /^\\long\\gdef\\footnotezzz #1{\\insert\\footins{$/ |
| 1461 | Fopen_dribble_file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/ | ||
| 2692 | foperator c-src/etags.c 2411 | 1462 | foperator c-src/etags.c 2411 |
| 2693 | force_auto_save_soon c-src/emacs/src/keyboard.c /^force_auto_save_soon (void)$/ | 1463 | force_auto_save_soon c-src/emacs/src/keyboard.c /^force_auto_save_soon (void)$/ |
| 2694 | force_explicit_name c-src/etags.c 265 | 1464 | force_explicit_name c-src/etags.c 265 |
| 2695 | force_quit_count c-src/emacs/src/keyboard.c 10387 | 1465 | force_quit_count c-src/emacs/src/keyboard.c 10387 |
| 1466 | FOR_EACH_ALIST_VALUE c-src/emacs/src/lisp.h /^#define FOR_EACH_ALIST_VALUE(head_var, list_var, v/ | ||
| 1467 | FOR_EACH_TAIL c-src/emacs/src/lisp.h /^#define FOR_EACH_TAIL(hare, list, tortoise, n) \\$/ | ||
| 2696 | foreign_export merc-src/accumulator.m /^:- pragma foreign_export("C", unravel_univ(in, out/ | 1468 | foreign_export merc-src/accumulator.m /^:- pragma foreign_export("C", unravel_univ(in, out/ |
| 2697 | format tex-src/texinfo.tex /^\\def\\format{\\begingroup\\inENV %This group ends at / | ||
| 2698 | formatSize objc-src/PackInsp.m /^-(const char *)formatSize:(const char *)size inBuf/ | 1469 | formatSize objc-src/PackInsp.m /^-(const char *)formatSize:(const char *)size inBuf/ |
| 1470 | format tex-src/texinfo.tex /^\\def\\format{\\begingroup\\inENV %This group ends at / | ||
| 1471 | Forth_help c-src/etags.c 573 | ||
| 1472 | FORTHSRC make-src/Makefile /^FORTHSRC=test-forth.fth$/ | ||
| 1473 | Forth_suffixes c-src/etags.c 571 | ||
| 1474 | Forth_words c-src/etags.c /^Forth_words (FILE *inf)$/ | ||
| 1475 | Fortran_functions c-src/etags.c /^Fortran_functions (FILE *inf)$/ | ||
| 1476 | Fortran_help c-src/etags.c 579 | ||
| 1477 | Fortran_suffixes c-src/etags.c 577 | ||
| 2699 | found c-src/emacs/src/lisp.h 2344 | 1478 | found c-src/emacs/src/lisp.h 2344 |
| 1479 | Fposn_at_point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/ | ||
| 1480 | Fposn_at_x_y c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, / | ||
| 1481 | /F ps-src/rfc1245.ps /^\/F { $/ | ||
| 2700 | fracas html-src/software.html /^Fracas$/ | 1482 | fracas html-src/software.html /^Fracas$/ |
| 1483 | /fraction ps-src/rfc1245.ps /^\/fraction \/currency \/guilsinglleft \/guilsinglright/ | ||
| 2701 | frag c-src/emacs/src/gmalloc.c 152 | 1484 | frag c-src/emacs/src/gmalloc.c 152 |
| 1485 | _fraghead c-src/emacs/src/gmalloc.c 371 | ||
| 1486 | /FrameDict ps-src/rfc1245.ps /^\/FrameDict 190 dict def $/ | ||
| 2702 | frame_local c-src/emacs/src/lisp.h 2341 | 1487 | frame_local c-src/emacs/src/lisp.h 2341 |
| 2703 | free c-src/emacs/src/gmalloc.c /^free (void *ptr)$/ | 1488 | FRAMEP c-src/emacs/src/lisp.h /^FRAMEP (Lisp_Object a)$/ |
| 1489 | FRC make-src/Makefile /^FRC:;$/ | ||
| 1490 | Fread_key_sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/ | ||
| 1491 | Fread_key_sequence_vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/ | ||
| 1492 | Frecent_keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, / | ||
| 1493 | Frecursion_depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/ | ||
| 1494 | Frecursive_edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/ | ||
| 2704 | free c-src/emacs/src/gmalloc.c 166 | 1495 | free c-src/emacs/src/gmalloc.c 166 |
| 2705 | free c-src/emacs/src/gmalloc.c 1723 | 1496 | free c-src/emacs/src/gmalloc.c 1726 |
| 2706 | free c-src/emacs/src/gmalloc.c 67 | 1497 | free c-src/emacs/src/gmalloc.c 67 |
| 2707 | free c-src/emacs/src/gmalloc.c 72 | 1498 | free c-src/emacs/src/gmalloc.c 72 |
| 1499 | _free c-src/emacs/src/gmalloc.c /^_free (void *ptr)$/ | ||
| 1500 | free c-src/emacs/src/gmalloc.c /^free (void *ptr)$/ | ||
| 2708 | free_fdesc c-src/etags.c /^free_fdesc (register fdesc *fdp)$/ | 1501 | free_fdesc c-src/etags.c /^free_fdesc (register fdesc *fdp)$/ |
| 1502 | FREEFLOOD c-src/emacs/src/gmalloc.c 1866 | ||
| 2709 | free_for prol-src/natded.prolog /^free_for(var(_),_,_).$/ | 1503 | free_for prol-src/natded.prolog /^free_for(var(_),_,_).$/ |
| 1504 | freehook c-src/emacs/src/gmalloc.c /^freehook (void *ptr)$/ | ||
| 1505 | _free_internal c-src/emacs/src/gmalloc.c /^_free_internal (void *ptr)$/ | ||
| 1506 | _free_internal_nolock c-src/emacs/src/gmalloc.c /^_free_internal_nolock (void *ptr)$/ | ||
| 2710 | free_regexps c-src/etags.c /^free_regexps (void)$/ | 1507 | free_regexps c-src/etags.c /^free_regexps (void)$/ |
| 2711 | free_tree c-src/etags.c /^free_tree (register node *np)$/ | 1508 | free_tree c-src/etags.c /^free_tree (register node *np)$/ |
| 2712 | free_var prol-src/natded.prolog /^free_var(var(V),var(V)).$/ | 1509 | free_var prol-src/natded.prolog /^free_var(var(V),var(V)).$/ |
| 2713 | freehook c-src/emacs/src/gmalloc.c /^freehook (void *ptr)$/ | ||
| 2714 | frenchspacing tex-src/texinfo.tex /^\\def\\frenchspacing{\\sfcode46=1000 \\sfcode63=1000 \\/ | 1510 | frenchspacing tex-src/texinfo.tex /^\\def\\frenchspacing{\\sfcode46=1000 \\sfcode63=1000 \\/ |
| 2715 | frenchspacing tex-src/texinfo.tex /^\\let\\frenchspacing=\\relax%$/ | 1511 | frenchspacing tex-src/texinfo.tex /^\\let\\frenchspacing=\\relax%$/ |
| 1512 | /freq ps-src/rfc1245.ps /^\/freq dpi 18.75 div 8 div round dup 0 eq {pop 1} i/ | ||
| 1513 | Freset_this_command_lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/ | ||
| 2716 | fresh_vars prol-src/natded.prolog /^fresh_vars(var(V),var(V)).$/ | 1514 | fresh_vars prol-src/natded.prolog /^fresh_vars(var(V),var(V)).$/ |
| 1515 | Fset_input_interrupt_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/ | ||
| 1516 | Fset_input_meta_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/ | ||
| 1517 | Fset_input_mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/ | ||
| 1518 | Fset_output_flow_control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/ | ||
| 1519 | Fset_quit_char c-src/emacs/src/keyboard.c /^DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_/ | ||
| 1520 | FSRC make-src/Makefile /^FSRC=entry.for entry.strange_suffix entry.strange$/ | ||
| 2717 | fstartlist c-src/etags.c 2413 | 1521 | fstartlist c-src/etags.c 2413 |
| 1522 | Fsuspend_emacs c-src/emacs/src/keyboard.c /^DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_e/ | ||
| 2718 | ftable tex-src/texinfo.tex /^\\def\\ftable{\\begingroup\\inENV\\obeylines\\obeyspaces/ | 1523 | ftable tex-src/texinfo.tex /^\\def\\ftable{\\begingroup\\inENV\\obeylines\\obeyspaces/ |
| 2719 | ftablex tex-src/texinfo.tex /^\\gdef\\ftablex #1^^M{%$/ | 1524 | ftablex tex-src/texinfo.tex /^\\gdef\\ftablex #1^^M{%$/ |
| 2720 | func c-src/emacs/src/lisp.h /^ void (*func) (Lisp_Object);$/ | 1525 | F_takeprec c-src/etags.c /^F_takeprec (void)$/ |
| 1526 | Fthis_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/ | ||
| 1527 | Fthis_command_keys_vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/ | ||
| 1528 | Fthis_single_command_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/ | ||
| 1529 | Fthis_single_command_raw_keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-raw-keys", Fthis_singl/ | ||
| 1530 | Ftop_level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, / | ||
| 1531 | Ftrack_mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/ | ||
| 1532 | FUN0 y-src/parse.y /^yylex FUN0()$/ | ||
| 1533 | FUN1 y-src/parse.y /^str_to_col FUN1(char **,str)$/ | ||
| 1534 | FUN1 y-src/parse.y /^yyerror FUN1(char *, s)$/ | ||
| 1535 | FUN2 y-src/parse.y /^make_list FUN2(YYSTYPE, car, YYSTYPE, cdr)$/ | ||
| 1536 | FUN2 y-src/parse.y /^parse_cell_or_range FUN2(char **,ptr, struct rng */ | ||
| 1537 | func1 c.c /^int func1$/ | ||
| 1538 | func2 c.c /^int func2 (a,b$/ | ||
| 1539 | funcboo c.c /^bool funcboo ()$/ | ||
| 2721 | func c-src/emacs/src/lisp.h /^ void (*func) (int);$/ | 1540 | func c-src/emacs/src/lisp.h /^ void (*func) (int);$/ |
| 1541 | func c-src/emacs/src/lisp.h /^ void (*func) (Lisp_Object);$/ | ||
| 2722 | func c-src/emacs/src/lisp.h /^ void (*func) (void *);$/ | 1542 | func c-src/emacs/src/lisp.h /^ void (*func) (void *);$/ |
| 2723 | func c-src/emacs/src/lisp.h /^ void (*func) (void);$/ | 1543 | func c-src/emacs/src/lisp.h /^ void (*func) (void);$/ |
| 2724 | func1 c.c /^int func1$/ | ||
| 2725 | func2 c.c /^int func2 (a,b$/ | ||
| 2726 | func_key_syms c-src/emacs/src/keyboard.c 4626 | 1544 | func_key_syms c-src/emacs/src/keyboard.c 4626 |
| 2727 | funcboo c.c /^bool funcboo ()$/ | ||
| 2728 | funcpointer c-src/emacs/src/lisp.h 2126 | 1545 | funcpointer c-src/emacs/src/lisp.h 2126 |
| 2729 | funcptr c-src/h.h /^ fu int (*funcptr) (void *ptr);$/ | 1546 | funcptr c-src/h.h /^ fu int (*funcptr) (void *ptr);$/ |
| 2730 | function c-src/emacs/src/lisp.h 1685 | 1547 | function c-src/emacs/src/lisp.h 1685 |
| @@ -2732,8 +1549,12 @@ function c-src/emacs/src/lisp.h 2197 | |||
| 2732 | function c-src/emacs/src/lisp.h 2985 | 1549 | function c-src/emacs/src/lisp.h 2985 |
| 2733 | function c-src/emacs/src/lisp.h 694 | 1550 | function c-src/emacs/src/lisp.h 694 |
| 2734 | function c-src/etags.c 194 | 1551 | function c-src/etags.c 194 |
| 2735 | functionp c-src/emacs/src/lisp.h /^functionp (Lisp_Object object)$/ | 1552 | FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 4766 |
| 1553 | FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5061 | ||
| 2736 | functionparens tex-src/texinfo.tex /^\\gdef\\functionparens{\\boldbrax\\let&=\\amprm\\parenco/ | 1554 | functionparens tex-src/texinfo.tex /^\\gdef\\functionparens{\\boldbrax\\let&=\\amprm\\parenco/ |
| 1555 | FUNCTIONP c-src/emacs/src/lisp.h /^FUNCTIONP (Lisp_Object obj)$/ | ||
| 1556 | functionp c-src/emacs/src/lisp.h /^functionp (Lisp_Object object)$/ | ||
| 1557 | Funexpand_abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/ | ||
| 2737 | fval forth-src/test-forth.fth /^fconst fvalue fval$/ | 1558 | fval forth-src/test-forth.fth /^fconst fvalue fval$/ |
| 2738 | fvar forth-src/test-forth.fth /^fvariable fvar$/ | 1559 | fvar forth-src/test-forth.fth /^fvariable fvar$/ |
| 2739 | fvdef c-src/etags.c 2418 | 1560 | fvdef c-src/etags.c 2418 |
| @@ -2742,79 +1563,138 @@ fvnameseen c-src/etags.c 2412 | |||
| 2742 | fvnone c-src/etags.c 2408 | 1563 | fvnone c-src/etags.c 2408 |
| 2743 | fwd c-src/emacs/src/lisp.h 2346 | 1564 | fwd c-src/emacs/src/lisp.h 2346 |
| 2744 | fwd c-src/emacs/src/lisp.h 690 | 1565 | fwd c-src/emacs/src/lisp.h 690 |
| 2745 | g cp-src/c.C /^ int g(){return 2;};$/ | 1566 | Fx_get_selection_internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/ |
| 1567 | Fx_get_selection_internal c.c /^ Fx_get_selection_internal, Sx_get_selection/ | ||
| 1568 | Fy_get_selection_internal c.c /^ Fy_get_selection_internal, Sy_get_selection_/ | ||
| 2746 | galileo html-src/software.html /^GaliLEO$/ | 1569 | galileo html-src/software.html /^GaliLEO$/ |
| 1570 | GatherControls pyt-src/server.py /^ def GatherControls(self):$/ | ||
| 2747 | gather pyt-src/server.py /^ def gather(self):$/ | 1571 | gather pyt-src/server.py /^ def gather(self):$/ |
| 1572 | GCALIGNED c-src/emacs/src/lisp.h 288 | ||
| 1573 | GCALIGNED c-src/emacs/src/lisp.h 290 | ||
| 1574 | GCALIGNMENT c-src/emacs/src/lisp.h 243 | ||
| 2748 | gc_aset c-src/emacs/src/lisp.h /^gc_aset (Lisp_Object array, ptrdiff_t idx, Lisp_Ob/ | 1575 | gc_aset c-src/emacs/src/lisp.h /^gc_aset (Lisp_Object array, ptrdiff_t idx, Lisp_Ob/ |
| 1576 | GC_MAKE_GCPROS_NOOPS c-src/emacs/src/lisp.h 3172 | ||
| 2749 | gcmarkbit c-src/emacs/src/lisp.h 1974 | 1577 | gcmarkbit c-src/emacs/src/lisp.h 1974 |
| 2750 | gcmarkbit c-src/emacs/src/lisp.h 1981 | 1578 | gcmarkbit c-src/emacs/src/lisp.h 1981 |
| 2751 | gcmarkbit c-src/emacs/src/lisp.h 2035 | 1579 | gcmarkbit c-src/emacs/src/lisp.h 2035 |
| 2752 | gcmarkbit c-src/emacs/src/lisp.h 2113 | 1580 | gcmarkbit c-src/emacs/src/lisp.h 2113 |
| 2753 | gcmarkbit c-src/emacs/src/lisp.h 2204 | 1581 | gcmarkbit c-src/emacs/src/lisp.h 2204 |
| 2754 | gcmarkbit c-src/emacs/src/lisp.h 656 | 1582 | gcmarkbit c-src/emacs/src/lisp.h 656 |
| 1583 | GC_MARK_STACK_CHECK_GCPROS c-src/emacs/src/lisp.h 3173 | ||
| 1584 | GC_MARK_STACK c-src/emacs/src/lisp.h 3177 | ||
| 1585 | GCPRO1 c-src/emacs/src/lisp.h /^#define GCPRO1(a) \\$/ | ||
| 1586 | GCPRO1 c-src/emacs/src/lisp.h /^#define GCPRO1(varname) ((void) gcpro1)$/ | ||
| 1587 | GCPRO2 c-src/emacs/src/lisp.h /^#define GCPRO2(a, b) \\$/ | ||
| 1588 | GCPRO2 c-src/emacs/src/lisp.h /^#define GCPRO2(varname1, varname2) ((void) gcpro2,/ | ||
| 1589 | GCPRO3 c-src/emacs/src/lisp.h /^#define GCPRO3(a, b, c) \\$/ | ||
| 1590 | GCPRO3 c-src/emacs/src/lisp.h /^#define GCPRO3(varname1, varname2, varname3) \\$/ | ||
| 1591 | GCPRO4 c-src/emacs/src/lisp.h /^#define GCPRO4(a, b, c, d) \\$/ | ||
| 1592 | GCPRO4 c-src/emacs/src/lisp.h /^#define GCPRO4(varname1, varname2, varname3, varna/ | ||
| 1593 | GCPRO5 c-src/emacs/src/lisp.h /^#define GCPRO5(a, b, c, d, e) \\$/ | ||
| 1594 | GCPRO5 c-src/emacs/src/lisp.h /^#define GCPRO5(varname1, varname2, varname3, varna/ | ||
| 1595 | GCPRO6 c-src/emacs/src/lisp.h /^#define GCPRO6(a, b, c, d, e, f) \\$/ | ||
| 1596 | GCPRO6 c-src/emacs/src/lisp.h /^#define GCPRO6(varname1, varname2, varname3, varna/ | ||
| 1597 | GCPRO7 c-src/emacs/src/lisp.h /^#define GCPRO7(a, b, c, d, e, f, g) \\$/ | ||
| 1598 | GCPRO7 c-src/emacs/src/lisp.h /^#define GCPRO7(a, b, c, d, e, f, g) (GCPRO6 (a, b,/ | ||
| 2755 | gcpro c-src/emacs/src/lisp.h 3042 | 1599 | gcpro c-src/emacs/src/lisp.h 3042 |
| 2756 | gcpro c-src/emacs/src/lisp.h 3132 | 1600 | gcpro c-src/emacs/src/lisp.h 3132 |
| 2757 | gen_help_event c-src/emacs/src/keyboard.c /^gen_help_event (Lisp_Object help, Lisp_Object fram/ | 1601 | g cp-src/c.C /^ int g(){return 2;};$/ |
| 1602 | GCTYPEBITS c-src/emacs/src/lisp.h 67 | ||
| 1603 | GCTYPEBITS c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (int, GCTYPEBITS)$/ | ||
| 1604 | GC_USE_GCPROS_AS_BEFORE c-src/emacs/src/lisp.h 3171 | ||
| 1605 | GC_USE_GCPROS_CHECK_ZOMBIES c-src/emacs/src/lisp.h 3174 | ||
| 2758 | genalgorithm html-src/algrthms.html /^Generating the Data<\/font><\/i><\/b>$/ | 1606 | genalgorithm html-src/algrthms.html /^Generating the Data<\/font><\/i><\/b>$/ |
| 2759 | generate_warning merc-src/accumulator.m /^:- pred generate_warning(module_info::in, prog_var/ | 1607 | generate_warning merc-src/accumulator.m /^:- pred generate_warning(module_info::in, prog_var/ |
| 2760 | generate_warnings merc-src/accumulator.m /^:- pred generate_warnings(module_info::in, prog_va/ | 1608 | generate_warnings merc-src/accumulator.m /^:- pred generate_warnings(module_info::in, prog_va/ |
| 1609 | ~generic_object cp-src/clheir.cpp /^generic_object::~generic_object(void)$/ | ||
| 2761 | generic_object cp-src/clheir.cpp /^generic_object::generic_object(void)$/ | 1610 | generic_object cp-src/clheir.cpp /^generic_object::generic_object(void)$/ |
| 2762 | generic_object cp-src/clheir.hpp 13 | 1611 | generic_object cp-src/clheir.hpp 13 |
| 1612 | GENERIC_PTR y-src/cccp.y 56 | ||
| 1613 | GENERIC_PTR y-src/cccp.y 58 | ||
| 1614 | gen_help_event c-src/emacs/src/keyboard.c /^gen_help_event (Lisp_Object help, Lisp_Object fram/ | ||
| 1615 | GEQ y-src/cccp.c 15 | ||
| 2763 | getArchs objc-src/PackInsp.m /^-(void)getArchs$/ | 1616 | getArchs objc-src/PackInsp.m /^-(void)getArchs$/ |
| 2764 | getDomainNames php-src/lce_functions.php /^ function getDomainNames()$/ | 1617 | getcjmp c-src/emacs/src/keyboard.c 147 |
| 2765 | getFoo lua-src/test.lua /^function Cube.data.getFoo ()$/ | ||
| 2766 | getPOReader php-src/lce_functions.php /^ function &getPOReader($domain)$/ | ||
| 2767 | getPath objc-src/PackInsp.m /^-(const char *)getPath:(char *)buf forType:(const / | ||
| 2768 | getPos lua-src/test.lua /^function Circle.getPos ()$/ | ||
| 2769 | getPos lua-src/test.lua /^function Rectangle.getPos ()$/ | ||
| 2770 | getTextDomains php-src/lce_functions.php /^ function getTextDomains($lines)$/ | ||
| 2771 | get_compressor_from_suffix c-src/etags.c /^get_compressor_from_suffix (char *file, char **ext/ | 1618 | get_compressor_from_suffix c-src/etags.c /^get_compressor_from_suffix (char *file, char **ext/ |
| 2772 | get_contiguous_space c-src/emacs/src/gmalloc.c /^get_contiguous_space (ptrdiff_t size, void *positi/ | 1619 | get_contiguous_space c-src/emacs/src/gmalloc.c /^get_contiguous_space (ptrdiff_t size, void *positi/ |
| 2773 | get_current_dir_name c-src/emacs/src/gmalloc.c 33 | 1620 | get_current_dir_name c-src/emacs/src/gmalloc.c 33 |
| 1621 | getDomainNames php-src/lce_functions.php /^ function getDomainNames()$/ | ||
| 1622 | getFoo lua-src/test.lua /^function Cube.data.getFoo ()$/ | ||
| 2774 | get_input_pending c-src/emacs/src/keyboard.c /^get_input_pending (int flags)$/ | 1623 | get_input_pending c-src/emacs/src/keyboard.c /^get_input_pending (int flags)$/ |
| 2775 | get_language_from_filename c-src/etags.c /^get_language_from_filename (char *file, int case_s/ | 1624 | get_language_from_filename c-src/etags.c /^get_language_from_filename (char *file, int case_s/ |
| 2776 | get_language_from_interpreter c-src/etags.c /^get_language_from_interpreter (char *interpreter)$/ | 1625 | get_language_from_interpreter c-src/etags.c /^get_language_from_interpreter (char *interpreter)$/ |
| 2777 | get_language_from_langname c-src/etags.c /^get_language_from_langname (const char *name)$/ | 1626 | get_language_from_langname c-src/etags.c /^get_language_from_langname (const char *name)$/ |
| 1627 | GetLayerByName lua-src/allegro.lua /^function GetLayerByName (name)$/ | ||
| 2778 | get_layer_by_name lua-src/allegro.lua /^local function get_layer_by_name (sprite, layer, n/ | 1628 | get_layer_by_name lua-src/allegro.lua /^local function get_layer_by_name (sprite, layer, n/ |
| 2779 | get_tag c-src/etags.c /^get_tag (register char *bp, char **namepp)$/ | 1629 | GetNameList pas-src/common.pas /^function GetNameList; (* : BinNodePointer;*)$/ |
| 2780 | get_word c-src/tab.c /^static char *get_word(char **str, char delim)$/ | 1630 | GetNewNameListNode pas-src/common.pas /^function GetNewNameListNode;(*($/ |
| 2781 | getcjmp c-src/emacs/src/keyboard.c 147 | ||
| 2782 | getopt perl-src/yagrip.pl /^sub getopt {$/ | ||
| 2783 | getopt.o make-src/Makefile /^getopt.o: emacs\/lib-src\/getopt.c$/ | ||
| 2784 | getopt1.o make-src/Makefile /^getopt1.o: emacs\/lib-src\/getopt1.c$/ | 1631 | getopt1.o make-src/Makefile /^getopt1.o: emacs\/lib-src\/getopt1.c$/ |
| 1632 | _GETOPT_H c-src/getopt.h 19 | ||
| 1633 | GETOPTOBJS make-src/Makefile /^GETOPTOBJS= #getopt.o getopt1.o$/ | ||
| 1634 | getopt.o make-src/Makefile /^getopt.o: emacs\/lib-src\/getopt.c$/ | ||
| 1635 | getopt perl-src/yagrip.pl /^sub getopt {$/ | ||
| 1636 | Get_Own_Priority/f ada-src/2ataspri.adb /^ function Get_Own_Priority return System.Any_Pri/ | ||
| 1637 | Get_Own_Priority/f ada-src/2ataspri.ads /^ function Get_Own_Priority return System.Any_Pri/ | ||
| 1638 | getPath objc-src/PackInsp.m /^-(const char *)getPath:(char *)buf forType:(const / | ||
| 1639 | getPOReader php-src/lce_functions.php /^ function &getPOReader($domain)$/ | ||
| 1640 | getPos lua-src/test.lua /^function Circle.getPos ()$/ | ||
| 1641 | getPos lua-src/test.lua /^function Rectangle.getPos ()$/ | ||
| 1642 | Get_Priority/f ada-src/2ataspri.adb /^ function Get_Priority (T : TCB_Ptr) return Syst/ | ||
| 1643 | Get_Priority/f ada-src/2ataspri.ads /^ function Get_Priority (T : TCB_Ptr) return Syst/ | ||
| 2785 | getptys objc-src/Subprocess.m /^getptys (int *master, int *slave)$/ | 1644 | getptys objc-src/Subprocess.m /^getptys (int *master, int *slave)$/ |
| 1645 | get_tag c-src/etags.c /^get_tag (register char *bp, char **namepp)$/ | ||
| 1646 | getTextDomains php-src/lce_functions.php /^ function getTextDomains($lines)$/ | ||
| 2786 | gettext php-src/lce_functions.php /^ function gettext($msgid)$/ | 1647 | gettext php-src/lce_functions.php /^ function gettext($msgid)$/ |
| 1648 | GetTextRef pas-src/common.pas /^function GetTextRef;(*($/ | ||
| 1649 | GetUniqueLayerName lua-src/allegro.lua /^function GetUniqueLayerName ()$/ | ||
| 1650 | get_word c-src/tab.c /^static char *get_word(char **str, char delim)$/ | ||
| 1651 | GE y-src/parse.c 8 | ||
| 2787 | ggg c-src/h.h 10 | 1652 | ggg c-src/h.h 10 |
| 2788 | ghi1 c-src/h.h 36 | 1653 | ghi1 c-src/h.h 36 |
| 2789 | ghi2 c-src/h.h 39 | 1654 | ghi2 c-src/h.h 39 |
| 2790 | giallo cp-src/c.C 40 | 1655 | giallo cp-src/c.C 40 |
| 2791 | glider cp-src/conway.cpp /^void glider(int x, int y)$/ | 1656 | glider cp-src/conway.cpp /^void glider(int x, int y)$/ |
| 2792 | gloggingall tex-src/texinfo.tex /^\\def\\gloggingall{\\begingroup \\globaldefs = 1 \\logg/ | 1657 | gloggingall tex-src/texinfo.tex /^\\def\\gloggingall{\\begingroup \\globaldefs = 1 \\logg/ |
| 1658 | /gn ps-src/rfc1245.ps /^\/gn { $/ | ||
| 2793 | gnu html-src/software.html /^Free software that I wrote for the GNU project or / | 1659 | gnu html-src/software.html /^Free software that I wrote for the GNU project or / |
| 1660 | _GNU_SOURCE c-src/etags.c 94 | ||
| 2794 | gobble_input c-src/emacs/src/keyboard.c /^gobble_input (void)$/ | 1661 | gobble_input c-src/emacs/src/keyboard.c /^gobble_input (void)$/ |
| 2795 | goto-tag-location-function el-src/emacs/lisp/progmodes/etags.el /^(defvar goto-tag-location-function nil$/ | 1662 | goto-tag-location-function el-src/emacs/lisp/progmodes/etags.el /^(defvar goto-tag-location-function nil$/ |
| 2796 | goto_xy cp-src/screen.cpp /^void goto_xy(unsigned char x, unsigned char y)$/ | 1663 | goto_xy cp-src/screen.cpp /^void goto_xy(unsigned char x, unsigned char y)$/ |
| 1664 | /G ps-src/rfc1245.ps /^\/G { $/ | ||
| 1665 | /graymode ps-src/rfc1245.ps /^\/graymode true def$/ | ||
| 1666 | /grayness ps-src/rfc1245.ps /^\/grayness {$/ | ||
| 1667 | GREEN cp-src/screen.hpp 14 | ||
| 2797 | group tex-src/texinfo.tex /^\\def\\group{\\begingroup$/ | 1668 | group tex-src/texinfo.tex /^\\def\\group{\\begingroup$/ |
| 2798 | gtr tex-src/texinfo.tex /^\\def\\gtr{\\realbackslash gtr}$/ | 1669 | GROW_RAW_KEYBUF c-src/emacs/src/keyboard.c 119 |
| 2799 | gtr tex-src/texinfo.tex /^\\def\\gtr{\\realbackslash gtr}%$/ | 1670 | gtr tex-src/texinfo.tex /^\\def\\gtr{\\realbackslash gtr}%$/ |
| 2800 | handleList pyt-src/server.py /^ def handleList(self, event):$/ | 1671 | gtr tex-src/texinfo.tex /^\\def\\gtr{\\realbackslash gtr}$/ |
| 2801 | handleNew pyt-src/server.py /^ def handleNew(self, event):$/ | 1672 | /guillemotleft ps-src/rfc1245.ps /^\/guillemotleft \/guillemotright \/ellipsis \/.notdef / |
| 2802 | handle_async_input c-src/emacs/src/keyboard.c /^handle_async_input (void)$/ | 1673 | handle_async_input c-src/emacs/src/keyboard.c /^handle_async_input (void)$/ |
| 2803 | handle_input_available_signal c-src/emacs/src/keyboard.c /^handle_input_available_signal (int sig)$/ | 1674 | handle_input_available_signal c-src/emacs/src/keyboard.c /^handle_input_available_signal (int sig)$/ |
| 2804 | handle_interrupt c-src/emacs/src/keyboard.c /^handle_interrupt (bool in_signal_handler)$/ | 1675 | handle_interrupt c-src/emacs/src/keyboard.c /^handle_interrupt (bool in_signal_handler)$/ |
| 2805 | handle_interrupt_signal c-src/emacs/src/keyboard.c /^handle_interrupt_signal (int sig)$/ | 1676 | handle_interrupt_signal c-src/emacs/src/keyboard.c /^handle_interrupt_signal (int sig)$/ |
| 2806 | handle_user_signal c-src/emacs/src/keyboard.c /^handle_user_signal (int sig)$/ | 1677 | handleList pyt-src/server.py /^ def handleList(self, event):$/ |
| 1678 | handleNew pyt-src/server.py /^ def handleNew(self, event):$/ | ||
| 2807 | handler c-src/emacs/src/lisp.h 3023 | 1679 | handler c-src/emacs/src/lisp.h 3023 |
| 2808 | handlertype c-src/emacs/src/lisp.h 3021 | 1680 | handlertype c-src/emacs/src/lisp.h 3021 |
| 1681 | handle_user_signal c-src/emacs/src/keyboard.c /^handle_user_signal (int sig)$/ | ||
| 2809 | has_arg c-src/getopt.h 82 | 1682 | has_arg c-src/getopt.h 82 |
| 2810 | hash c-src/emacs/src/lisp.h 1843 | 1683 | hash c-src/emacs/src/lisp.h 1843 |
| 2811 | hash c-src/etags.c /^hash (const char *str, int len)$/ | 1684 | hash c-src/etags.c /^hash (const char *str, int len)$/ |
| 2812 | hash_table_test c-src/emacs/src/lisp.h 1805 | ||
| 2813 | hashfn c-src/emacs/src/lisp.h /^ EMACS_UINT (*hashfn) (struct hash_table_test *t,/ | 1685 | hashfn c-src/emacs/src/lisp.h /^ EMACS_UINT (*hashfn) (struct hash_table_test *t,/ |
| 2814 | hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}$/ | 1686 | HASH_HASH c-src/emacs/src/lisp.h /^HASH_HASH (struct Lisp_Hash_Table *h, ptrdiff_t id/ |
| 1687 | HASH_INDEX c-src/emacs/src/lisp.h /^HASH_INDEX (struct Lisp_Hash_Table *h, ptrdiff_t i/ | ||
| 1688 | HASH_KEY c-src/emacs/src/lisp.h /^HASH_KEY (struct Lisp_Hash_Table *h, ptrdiff_t idx/ | ||
| 1689 | HASH_NEXT c-src/emacs/src/lisp.h /^HASH_NEXT (struct Lisp_Hash_Table *h, ptrdiff_t id/ | ||
| 1690 | HASH_TABLE_P c-src/emacs/src/lisp.h /^HASH_TABLE_P (Lisp_Object a)$/ | ||
| 1691 | HASH_TABLE_SIZE c-src/emacs/src/lisp.h /^HASH_TABLE_SIZE (struct Lisp_Hash_Table *h)$/ | ||
| 1692 | hash_table_test c-src/emacs/src/lisp.h 1805 | ||
| 1693 | HASH_VALUE c-src/emacs/src/lisp.h /^HASH_VALUE (struct Lisp_Hash_Table *h, ptrdiff_t i/ | ||
| 2815 | hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}%$/ | 1694 | hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}%$/ |
| 2816 | hdr c-src/emacs/src/gmalloc.c 1865 | 1695 | hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}$/ |
| 2817 | head_table c-src/emacs/src/keyboard.c 11027 | 1696 | HAVE_NTGUI c-src/etags.c 116 |
| 1697 | hdr c-src/emacs/src/gmalloc.c 1868 | ||
| 2818 | header c-src/emacs/src/lisp.h 1371 | 1698 | header c-src/emacs/src/lisp.h 1371 |
| 2819 | header c-src/emacs/src/lisp.h 1388 | 1699 | header c-src/emacs/src/lisp.h 1388 |
| 2820 | header c-src/emacs/src/lisp.h 1581 | 1700 | header c-src/emacs/src/lisp.h 1581 |
| @@ -2822,24 +1702,52 @@ header c-src/emacs/src/lisp.h 1610 | |||
| 2822 | header c-src/emacs/src/lisp.h 1672 | 1702 | header c-src/emacs/src/lisp.h 1672 |
| 2823 | header c-src/emacs/src/lisp.h 1826 | 1703 | header c-src/emacs/src/lisp.h 1826 |
| 2824 | header_size c-src/emacs/src/lisp.h 1471 | 1704 | header_size c-src/emacs/src/lisp.h 1471 |
| 2825 | heading tex-src/texinfo.tex /^\\def\\heading{\\parsearg\\secheadingi}$/ | 1705 | HEADINGSafter tex-src/texinfo.tex /^\\def\\HEADINGSafter{\\let\\HEADINGShook=\\HEADINGSdoub/ |
| 1706 | HEADINGSdoubleafter tex-src/texinfo.tex /^\\let\\HEADINGSdoubleafter=\\HEADINGSafter$/ | ||
| 1707 | HEADINGSdouble tex-src/texinfo.tex /^\\def\\HEADINGSdouble{$/ | ||
| 1708 | HEADINGSdoublex tex-src/texinfo.tex /^\\def\\HEADINGSdoublex{%$/ | ||
| 1709 | HEADINGShook tex-src/texinfo.tex /^\\def\\HEADINGSafter{\\let\\HEADINGShook=\\HEADINGSdoub/ | ||
| 1710 | HEADINGShook tex-src/texinfo.tex /^\\def\\HEADINGSsingleafter{\\let\\HEADINGShook=\\HEADIN/ | ||
| 1711 | HEADINGShook tex-src/texinfo.tex /^\\let\\HEADINGShook=\\relax$/ | ||
| 1712 | HEADINGSoff tex-src/texinfo.tex /^\\def\\HEADINGSoff{$/ | ||
| 1713 | HEADINGSon tex-src/texinfo.tex /^\\def\\HEADINGSon{\\HEADINGSdouble}$/ | ||
| 1714 | HEADINGSon tex-src/texinfo.tex /^\\global\\def\\HEADINGSon{\\HEADINGSdouble}}$/ | ||
| 1715 | HEADINGSon tex-src/texinfo.tex /^\\global\\def\\HEADINGSon{\\HEADINGSsingle}}$/ | ||
| 1716 | HEADINGSsingleafter tex-src/texinfo.tex /^\\def\\HEADINGSsingleafter{\\let\\HEADINGShook=\\HEADIN/ | ||
| 1717 | HEADINGSsingle tex-src/texinfo.tex /^\\def\\HEADINGSsingle{$/ | ||
| 1718 | HEADINGSsinglex tex-src/texinfo.tex /^\\def\\HEADINGSsinglex{%$/ | ||
| 2826 | headings tex-src/texinfo.tex /^\\def\\headings #1 {\\csname HEADINGS#1\\endcsname}$/ | 1719 | headings tex-src/texinfo.tex /^\\def\\headings #1 {\\csname HEADINGS#1\\endcsname}$/ |
| 1720 | heading tex-src/texinfo.tex /^\\def\\heading{\\parsearg\\secheadingi}$/ | ||
| 1721 | head_table c-src/emacs/src/keyboard.c 11027 | ||
| 1722 | _heapbase c-src/emacs/src/gmalloc.c 356 | ||
| 1723 | HEAP c-src/emacs/src/gmalloc.c 131 | ||
| 1724 | _heapindex c-src/emacs/src/gmalloc.c 365 | ||
| 1725 | _heapinfo c-src/emacs/src/gmalloc.c 359 | ||
| 1726 | _heaplimit c-src/emacs/src/gmalloc.c 368 | ||
| 2827 | heapsize c-src/emacs/src/gmalloc.c 362 | 1727 | heapsize c-src/emacs/src/gmalloc.c 362 |
| 2828 | hello scm-src/test.scm /^(define hello "Hello, Emacs!")$/ | 1728 | hello scm-src/test.scm /^(define hello "Hello, Emacs!")$/ |
| 2829 | hello scm-src/test.scm /^(set! hello "Hello, world!")$/ | 1729 | hello scm-src/test.scm /^(set! hello "Hello, world!")$/ |
| 2830 | hello-world scm-src/test.scm /^(define (hello-world)$/ | 1730 | hello-world scm-src/test.scm /^(define (hello-world)$/ |
| 2831 | help c-src/etags.c 193 | ||
| 2832 | helpPanel objcpp-src/SimpleCalc.M /^- helpPanel:sender$/ | ||
| 2833 | help_char_p c-src/emacs/src/keyboard.c /^help_char_p (Lisp_Object c)$/ | 1731 | help_char_p c-src/emacs/src/keyboard.c /^help_char_p (Lisp_Object c)$/ |
| 1732 | help c-src/etags.c 193 | ||
| 2834 | help_form_saved_window_configs c-src/emacs/src/keyboard.c 2156 | 1733 | help_form_saved_window_configs c-src/emacs/src/keyboard.c 2156 |
| 1734 | helpPanel objcpp-src/SimpleCalc.M /^- helpPanel:sender$/ | ||
| 2835 | helpwin pyt-src/server.py /^def helpwin(helpdict):$/ | 1735 | helpwin pyt-src/server.py /^def helpwin(helpdict):$/ |
| 2836 | hide_cursor cp-src/screen.cpp /^void hide_cursor(void)$/ | 1736 | hide_cursor cp-src/screen.cpp /^void hide_cursor(void)$/ |
| 2837 | hlds merc-src/accumulator.m /^:- import_module hlds.$/ | 1737 | hlds merc-src/accumulator.m /^:- import_module hlds.$/ |
| 1738 | /home/www/pub/etags.c.gz make-src/Makefile /^\/home\/www\/pub\/etags.c.gz: etags.c$/ | ||
| 1739 | /home/www/pub/software/unix/etags.tar.gz make-src/Makefile /^\/home\/www\/pub\/software\/unix\/etags.tar.gz: Makefile/ | ||
| 1740 | /H ps-src/rfc1245.ps /^\/H { $/ | ||
| 2838 | hsize tex-src/texinfo.tex /^ {\\let\\hsize=\\pagewidth \\makefootline}}$/ | 1741 | hsize tex-src/texinfo.tex /^ {\\let\\hsize=\\pagewidth \\makefootline}}$/ |
| 1742 | hsize tex-src/texinfo.tex /^{\\let\\hsize=\\pagewidth \\makefootline}}}%$/ | ||
| 2839 | hsize tex-src/texinfo.tex /^ {\\let\\hsize=\\pagewidth \\makeheadline}$/ | 1743 | hsize tex-src/texinfo.tex /^ {\\let\\hsize=\\pagewidth \\makeheadline}$/ |
| 2840 | hsize tex-src/texinfo.tex /^\\shipout\\vbox{{\\let\\hsize=\\pagewidth \\makeheadline/ | 1744 | hsize tex-src/texinfo.tex /^\\shipout\\vbox{{\\let\\hsize=\\pagewidth \\makeheadline/ |
| 2841 | hsize tex-src/texinfo.tex /^{\\let\\hsize=\\pagewidth \\makefootline}}}%$/ | 1745 | HTML_help c-src/etags.c 584 |
| 1746 | HTML_labels c-src/etags.c /^HTML_labels (FILE *inf)$/ | ||
| 1747 | HTMLSRC make-src/Makefile /^HTMLSRC=softwarelibero.html index.shtml algrthms.h/ | ||
| 1748 | HTML_suffixes c-src/etags.c 582 | ||
| 2842 | htmltreelist prol-src/natded.prolog /^htmltreelist([]).$/ | 1749 | htmltreelist prol-src/natded.prolog /^htmltreelist([]).$/ |
| 1750 | /hx ps-src/rfc1245.ps /^\/hx { $/ | ||
| 2843 | hybrid_aligned_alloc c-src/emacs/src/gmalloc.c /^hybrid_aligned_alloc (size_t alignment, size_t siz/ | 1751 | hybrid_aligned_alloc c-src/emacs/src/gmalloc.c /^hybrid_aligned_alloc (size_t alignment, size_t siz/ |
| 2844 | hybrid_calloc c-src/emacs/src/gmalloc.c /^hybrid_calloc (size_t nmemb, size_t size)$/ | 1752 | hybrid_calloc c-src/emacs/src/gmalloc.c /^hybrid_calloc (size_t nmemb, size_t size)$/ |
| 2845 | hybrid_free c-src/emacs/src/gmalloc.c /^hybrid_free (void *ptr)$/ | 1753 | hybrid_free c-src/emacs/src/gmalloc.c /^hybrid_free (void *ptr)$/ |
| @@ -2847,59 +1755,58 @@ hybrid_get_current_dir_name c-src/emacs/src/gmalloc.c /^hybrid_get_current_dir_n | |||
| 2847 | hybrid_malloc c-src/emacs/src/gmalloc.c /^hybrid_malloc (size_t size)$/ | 1755 | hybrid_malloc c-src/emacs/src/gmalloc.c /^hybrid_malloc (size_t size)$/ |
| 2848 | hybrid_realloc c-src/emacs/src/gmalloc.c /^hybrid_realloc (void *ptr, size_t size)$/ | 1756 | hybrid_realloc c-src/emacs/src/gmalloc.c /^hybrid_realloc (void *ptr, size_t size)$/ |
| 2849 | hypothetical_mem prol-src/natded.prolog /^hypothetical_mem(fi(N),Ass,_):-$/ | 1757 | hypothetical_mem prol-src/natded.prolog /^hypothetical_mem(fi(N),Ass,_):-$/ |
| 1758 | /iacute ps-src/rfc1245.ps /^\/iacute \/igrave \/icircumflex \/idieresis \/ntilde \/o/ | ||
| 1759 | ialpage tex-src/texinfo.tex /^ \\availdimen@=\\pageheight \\advance\\availdimen@ by/ | ||
| 1760 | ialpage tex-src/texinfo.tex /^\\def\\pagesofar{\\unvbox\\partialpage %$/ | ||
| 1761 | ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\pa/ | ||
| 1762 | ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\parti/ | ||
| 1763 | ialpage tex-src/texinfo.tex /^\\newbox\\partialpage$/ | ||
| 1764 | ialpage tex-src/texinfo.tex /^ \\output={\\global\\setbox\\partialpage=$/ | ||
| 1765 | i c.c 169 | ||
| 1766 | /Icircumflex ps-src/rfc1245.ps /^\/Icircumflex \/Idieresis \/Igrave \/Oacute \/Ocircumfl/ | ||
| 1767 | i cp-src/c.C 132 | ||
| 1768 | /ic ps-src/rfc1245.ps /^\/ic [ $/ | ||
| 2850 | i c-src/c.c 2 | 1769 | i c-src/c.c 2 |
| 2851 | i c-src/emacs/src/lisp.h 4673 | 1770 | i c-src/emacs/src/lisp.h 4673 |
| 2852 | i c-src/emacs/src/lisp.h 4679 | 1771 | i c-src/emacs/src/lisp.h 4679 |
| 2853 | i c-src/emacs/src/lisp.h 567 | 1772 | i c-src/emacs/src/lisp.h 567 |
| 2854 | i c.c 169 | ||
| 2855 | i cp-src/c.C 132 | ||
| 2856 | i tex-src/texinfo.tex /^\\def\\i##1{\\realbackslash i {##1}}$/ | ||
| 2857 | i tex-src/texinfo.tex /^\\def\\i##1{\\realbackslash i {##1}}%$/ | ||
| 2858 | i tex-src/texinfo.tex /^\\let\\b=\\ptexb \\let\\c=\\ptexc \\let\\i=\\ptexi \\let\\t=\\/ | ||
| 2859 | i tex-src/texinfo.tex /^\\let\\i=\\indexdummyfont$/ | ||
| 2860 | i tex-src/texinfo.tex /^\\let\\i=\\smartitalic$/ | ||
| 2861 | ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\pa/ | ||
| 2862 | ialpage tex-src/texinfo.tex /^ \\availdimen@=\\pageheight \\advance\\availdimen@ by/ | ||
| 2863 | ialpage tex-src/texinfo.tex /^ \\dimen@=\\pageheight \\advance\\dimen@ by-\\ht\\parti/ | ||
| 2864 | ialpage tex-src/texinfo.tex /^ \\output={\\global\\setbox\\partialpage=$/ | ||
| 2865 | ialpage tex-src/texinfo.tex /^\\def\\pagesofar{\\unvbox\\partialpage %$/ | ||
| 2866 | ialpage tex-src/texinfo.tex /^\\newbox\\partialpage$/ | ||
| 2867 | identify_goal_type merc-src/accumulator.m /^:- pred identify_goal_type(pred_id::in, proc_id::i/ | 1773 | identify_goal_type merc-src/accumulator.m /^:- pred identify_goal_type(pred_id::in, proc_id::i/ |
| 2868 | identify_out_and_out_prime merc-src/accumulator.m /^:- pred identify_out_and_out_prime(module_info::in/ | 1774 | identify_out_and_out_prime merc-src/accumulator.m /^:- pred identify_out_and_out_prime(module_info::in/ |
| 2869 | identify_recursive_calls merc-src/accumulator.m /^:- pred identify_recursive_calls(pred_id::in, proc/ | 1775 | identify_recursive_calls merc-src/accumulator.m /^:- pred identify_recursive_calls(pred_id::in, proc/ |
| 2870 | idx c-src/emacs/src/lisp.h 3150 | 1776 | idx c-src/emacs/src/lisp.h 3150 |
| 2871 | ifclear tex-src/texinfo.tex /^\\def\\ifclear{\\begingroup\\ignoresections\\parsearg\\i/ | 1777 | IEEE_FLOATING_POINT c-src/emacs/src/lisp.h 2415 |
| 2872 | ifclearfail tex-src/texinfo.tex /^\\def\\ifclearfail{\\begingroup\\ignoresections\\ifclea/ | 1778 | ifclearfail tex-src/texinfo.tex /^\\def\\ifclearfail{\\begingroup\\ignoresections\\ifclea/ |
| 2873 | ifclearfailxxx tex-src/texinfo.tex /^\\long\\def\\ifclearfailxxx #1\\end ifclear{\\endgroup\\/ | 1779 | ifclearfailxxx tex-src/texinfo.tex /^\\long\\def\\ifclearfailxxx #1\\end ifclear{\\endgroup\\/ |
| 1780 | ifclear tex-src/texinfo.tex /^\\def\\ifclear{\\begingroup\\ignoresections\\parsearg\\i/ | ||
| 2874 | ifclearxxx tex-src/texinfo.tex /^\\def\\ifclearxxx #1{\\endgroup$/ | 1781 | ifclearxxx tex-src/texinfo.tex /^\\def\\ifclearxxx #1{\\endgroup$/ |
| 2875 | ifinfo tex-src/texinfo.tex /^\\def\\ifinfo{\\begingroup\\ignoresections\\ifinfoxxx}$/ | 1782 | ifinfo tex-src/texinfo.tex /^\\def\\ifinfo{\\begingroup\\ignoresections\\ifinfoxxx}$/ |
| 2876 | ifinfoxxx tex-src/texinfo.tex /^\\long\\def\\ifinfoxxx #1\\end ifinfo{\\endgroup\\ignore/ | 1783 | ifinfoxxx tex-src/texinfo.tex /^\\long\\def\\ifinfoxxx #1\\end ifinfo{\\endgroup\\ignore/ |
| 2877 | ifset tex-src/texinfo.tex /^\\def\\ifset{\\begingroup\\ignoresections\\parsearg\\ifs/ | ||
| 2878 | ifsetfail tex-src/texinfo.tex /^\\def\\ifsetfail{\\begingroup\\ignoresections\\ifsetfai/ | 1784 | ifsetfail tex-src/texinfo.tex /^\\def\\ifsetfail{\\begingroup\\ignoresections\\ifsetfai/ |
| 2879 | ifsetfailxxx tex-src/texinfo.tex /^\\long\\def\\ifsetfailxxx #1\\end ifset{\\endgroup\\igno/ | 1785 | ifsetfailxxx tex-src/texinfo.tex /^\\long\\def\\ifsetfailxxx #1\\end ifset{\\endgroup\\igno/ |
| 1786 | ifset tex-src/texinfo.tex /^\\def\\ifset{\\begingroup\\ignoresections\\parsearg\\ifs/ | ||
| 2880 | ifsetxxx tex-src/texinfo.tex /^\\def\\ifsetxxx #1{\\endgroup$/ | 1787 | ifsetxxx tex-src/texinfo.tex /^\\def\\ifsetxxx #1{\\endgroup$/ |
| 2881 | iftex tex-src/texinfo.tex /^\\def\\iftex{}$/ | 1788 | iftex tex-src/texinfo.tex /^\\def\\iftex{}$/ |
| 2882 | ifusingtt tex-src/texinfo.tex /^\\def\\ifusingtt#1#2{\\ifdim \\fontdimen3\\the\\font=0pt/ | 1789 | ifusingtt tex-src/texinfo.tex /^\\def\\ifusingtt#1#2{\\ifdim \\fontdimen3\\the\\font=0pt/ |
| 2883 | ignore tex-src/texinfo.tex /^\\def\\ignore{\\begingroup\\ignoresections$/ | ||
| 2884 | ignore_case c-src/etags.c 266 | 1790 | ignore_case c-src/etags.c 266 |
| 2885 | ignore_mouse_drag_p c-src/emacs/src/keyboard.c 1256 | 1791 | ignore_mouse_drag_p c-src/emacs/src/keyboard.c 1256 |
| 2886 | ignoresections tex-src/texinfo.tex /^\\def\\ignoresections{%$/ | 1792 | ignoresections tex-src/texinfo.tex /^\\def\\ignoresections{%$/ |
| 1793 | ignore tex-src/texinfo.tex /^\\def\\ignore{\\begingroup\\ignoresections$/ | ||
| 2887 | ignorexxx tex-src/texinfo.tex /^\\long\\def\\ignorexxx #1\\end ignore{\\endgroup\\ignore/ | 1794 | ignorexxx tex-src/texinfo.tex /^\\long\\def\\ignorexxx #1\\end ignore{\\endgroup\\ignore/ |
| 2888 | ii tex-src/texinfo.tex /^\\def\\ii#1{{\\it #1}} % italic font$/ | 1795 | ii tex-src/texinfo.tex /^\\def\\ii#1{{\\it #1}} % italic font$/ |
| 1796 | IMAGEP c-src/emacs/src/lisp.h /^IMAGEP (Lisp_Object x)$/ | ||
| 2889 | immediate_quit c-src/emacs/src/keyboard.c 174 | 1797 | immediate_quit c-src/emacs/src/keyboard.c 174 |
| 2890 | impatto html-src/softwarelibero.html /^Impatto pratico del software libero$/ | 1798 | impatto html-src/softwarelibero.html /^Impatto pratico del software libero$/ |
| 2891 | implementation merc-src/accumulator.m /^:- implementation.$/ | 1799 | implementation merc-src/accumulator.m /^:- implementation.$/ |
| 2892 | implicitmath tex-src/texinfo.tex /^\\let\\implicitmath = $$/ | 1800 | implicitmath tex-src/texinfo.tex /^\\let\\implicitmath = $$/ |
| 2893 | inENV tex-src/texinfo.tex /^\\newif\\ifENV \\ENVfalse \\def\\inENV{\\ifENV\\relax\\els/ | ||
| 2894 | in_word_set c-src/etags.c /^in_word_set (register const char *str, register un/ | ||
| 2895 | inattribute c-src/etags.c 2400 | 1801 | inattribute c-src/etags.c 2400 |
| 2896 | inc cp-src/Range.h /^ double inc (void) const { return rng_inc; }$/ | 1802 | inc cp-src/Range.h /^ double inc (void) const { return rng_inc; }$/ |
| 1803 | /inch ps-src/rfc1245.ps /^\/inch {72 mul} def$/ | ||
| 2897 | include tex-src/texinfo.tex /^\\def\\include{\\parsearg\\includezzz}$/ | 1804 | include tex-src/texinfo.tex /^\\def\\include{\\parsearg\\includezzz}$/ |
| 2898 | includezzz tex-src/texinfo.tex /^\\def\\includezzz #1{{\\def\\thisfile{#1}\\input #1$/ | 1805 | includezzz tex-src/texinfo.tex /^\\def\\includezzz #1{{\\def\\thisfile{#1}\\input #1$/ |
| 2899 | indbf tex-src/texinfo.tex /^\\let\\indbf=\\indrm$/ | 1806 | indbf tex-src/texinfo.tex /^\\let\\indbf=\\indrm$/ |
| 2900 | index c-src/emacs/src/lisp.h 1856 | ||
| 2901 | indexbackslash tex-src/texinfo.tex /^ \\def\\indexbackslash{\\rawbackslashxx}$/ | 1807 | indexbackslash tex-src/texinfo.tex /^ \\def\\indexbackslash{\\rawbackslashxx}$/ |
| 2902 | indexbackslash tex-src/texinfo.tex /^\\let\\indexbackslash=0 %overridden during \\printin/ | 1808 | indexbackslash tex-src/texinfo.tex /^\\let\\indexbackslash=0 %overridden during \\printin/ |
| 1809 | index c-src/emacs/src/lisp.h 1856 | ||
| 2903 | indexdotfill tex-src/texinfo.tex /^\\def\\indexdotfill{\\cleaders$/ | 1810 | indexdotfill tex-src/texinfo.tex /^\\def\\indexdotfill{\\cleaders$/ |
| 2904 | indexdummies tex-src/texinfo.tex /^\\def\\indexdummies{%$/ | 1811 | indexdummies tex-src/texinfo.tex /^\\def\\indexdummies{%$/ |
| 2905 | indexdummydots tex-src/texinfo.tex /^\\def\\indexdummydots{...}$/ | 1812 | indexdummydots tex-src/texinfo.tex /^\\def\\indexdummydots{...}$/ |
| @@ -2913,70 +1820,104 @@ indsc tex-src/texinfo.tex /^\\let\\indsc=\\indrm$/ | |||
| 2913 | indsf tex-src/texinfo.tex /^\\let\\indsf=\\indrm$/ | 1820 | indsf tex-src/texinfo.tex /^\\let\\indsf=\\indrm$/ |
| 2914 | indsl tex-src/texinfo.tex /^\\let\\indsl=\\indit$/ | 1821 | indsl tex-src/texinfo.tex /^\\let\\indsl=\\indit$/ |
| 2915 | indtt tex-src/texinfo.tex /^\\let\\indtt=\\ninett$/ | 1822 | indtt tex-src/texinfo.tex /^\\let\\indtt=\\ninett$/ |
| 1823 | inENV tex-src/texinfo.tex /^\\newif\\ifENV \\ENVfalse \\def\\inENV{\\ifENV\\relax\\els/ | ||
| 2916 | infabsdir c-src/etags.c 206 | 1824 | infabsdir c-src/etags.c 206 |
| 2917 | infabsname c-src/etags.c 205 | 1825 | infabsname c-src/etags.c 205 |
| 2918 | infiles make-src/Makefile /^infiles = $(filter-out ${NONSRCS},${SRCS}) srclist/ | 1826 | infiles make-src/Makefile /^infiles = $(filter-out ${NONSRCS},${SRCS}) srclist/ |
| 2919 | infname c-src/etags.c 204 | 1827 | infname c-src/etags.c 204 |
| 2920 | info c-src/emacs/src/gmalloc.c 157 | ||
| 2921 | infoPanel objcpp-src/SimpleCalc.M /^- infoPanel:sender$/ | ||
| 2922 | infoappendix tex-src/texinfo.tex /^\\def\\infoappendix{\\parsearg\\appendixzzz}$/ | ||
| 2923 | infoappendixsec tex-src/texinfo.tex /^\\def\\infoappendixsec{\\parsearg\\appendixseczzz}$/ | 1828 | infoappendixsec tex-src/texinfo.tex /^\\def\\infoappendixsec{\\parsearg\\appendixseczzz}$/ |
| 2924 | infoappendixsubsec tex-src/texinfo.tex /^\\def\\infoappendixsubsec{\\parsearg\\appendixsubseczz/ | 1829 | infoappendixsubsec tex-src/texinfo.tex /^\\def\\infoappendixsubsec{\\parsearg\\appendixsubseczz/ |
| 2925 | infoappendixsubsubsec tex-src/texinfo.tex /^\\def\\infoappendixsubsubsec{\\parsearg\\appendixsubsu/ | 1830 | infoappendixsubsubsec tex-src/texinfo.tex /^\\def\\infoappendixsubsubsec{\\parsearg\\appendixsubsu/ |
| 1831 | infoappendix tex-src/texinfo.tex /^\\def\\infoappendix{\\parsearg\\appendixzzz}$/ | ||
| 2926 | infochapter tex-src/texinfo.tex /^\\def\\infochapter{\\parsearg\\chapterzzz}$/ | 1832 | infochapter tex-src/texinfo.tex /^\\def\\infochapter{\\parsearg\\chapterzzz}$/ |
| 1833 | info c-src/emacs/src/gmalloc.c 157 | ||
| 1834 | infoPanel objcpp-src/SimpleCalc.M /^- infoPanel:sender$/ | ||
| 2927 | inforef tex-src/texinfo.tex /^\\def\\inforef #1{\\inforefzzz #1,,,,**}$/ | 1835 | inforef tex-src/texinfo.tex /^\\def\\inforef #1{\\inforefzzz #1,,,,**}$/ |
| 2928 | inforefzzz tex-src/texinfo.tex /^\\def\\inforefzzz #1,#2,#3,#4**{See Info file \\file{/ | 1836 | inforefzzz tex-src/texinfo.tex /^\\def\\inforefzzz #1,#2,#3,#4**{See Info file \\file{/ |
| 2929 | infosection tex-src/texinfo.tex /^\\def\\infosection{\\parsearg\\sectionzzz}$/ | 1837 | infosection tex-src/texinfo.tex /^\\def\\infosection{\\parsearg\\sectionzzz}$/ |
| 2930 | infosubsection tex-src/texinfo.tex /^\\def\\infosubsection{\\parsearg\\subsectionzzz}$/ | 1838 | infosubsection tex-src/texinfo.tex /^\\def\\infosubsection{\\parsearg\\subsectionzzz}$/ |
| 2931 | infosubsubsection tex-src/texinfo.tex /^\\def\\infosubsubsection{\\parsearg\\subsubsectionzzz}/ | 1839 | infosubsubsection tex-src/texinfo.tex /^\\def\\infosubsubsection{\\parsearg\\subsubsectionzzz}/ |
| 2932 | infotop tex-src/texinfo.tex /^\\def\\infotop{\\parsearg\\unnumberedzzz}$/ | 1840 | infotop tex-src/texinfo.tex /^\\def\\infotop{\\parsearg\\unnumberedzzz}$/ |
| 2933 | infounnumbered tex-src/texinfo.tex /^\\def\\infounnumbered{\\parsearg\\unnumberedzzz}$/ | ||
| 2934 | infounnumberedsec tex-src/texinfo.tex /^\\def\\infounnumberedsec{\\parsearg\\unnumberedseczzz}/ | 1841 | infounnumberedsec tex-src/texinfo.tex /^\\def\\infounnumberedsec{\\parsearg\\unnumberedseczzz}/ |
| 2935 | infounnumberedsubsec tex-src/texinfo.tex /^\\def\\infounnumberedsubsec{\\parsearg\\unnumberedsubs/ | 1842 | infounnumberedsubsec tex-src/texinfo.tex /^\\def\\infounnumberedsubsec{\\parsearg\\unnumberedsubs/ |
| 2936 | infounnumberedsubsubsec tex-src/texinfo.tex /^\\def\\infounnumberedsubsubsec{\\parsearg\\unnumbereds/ | 1843 | infounnumberedsubsubsec tex-src/texinfo.tex /^\\def\\infounnumberedsubsubsec{\\parsearg\\unnumbereds/ |
| 2937 | init c-src/etags.c /^init (void)$/ | 1844 | infounnumbered tex-src/texinfo.tex /^\\def\\infounnumbered{\\parsearg\\unnumberedzzz}$/ |
| 2938 | init objc-src/Subprocess.m /^ andStdErr:(BOOL)wantsStdErr$/ | 1845 | inita c.c /^static void inita () {}$/ |
| 2939 | init objc-src/Subprocess.m /^- init:(const char *)subprocessString$/ | 1846 | initb c.c /^static void initb () {}$/ |
| 2940 | init objcpp-src/SimpleCalc.M /^- init$/ | ||
| 2941 | init_control c.c 239 | 1847 | init_control c.c 239 |
| 1848 | init c-src/etags.c /^init (void)$/ | ||
| 1849 | Initialize_Cond/p ada-src/2ataspri.adb /^ procedure Initialize_Cond (Cond : in out Condit/ | ||
| 1850 | Initialize_Cond/p ada-src/2ataspri.ads /^ procedure Initialize_Cond (Cond : in out Condit/ | ||
| 1851 | initialize_goal_store merc-src/accumulator.m /^:- func initialize_goal_store(list(hlds_goal), ins/ | ||
| 1852 | Initialize_LL_Tasks/p ada-src/2ataspri.adb /^ procedure Initialize_LL_Tasks (T : TCB_Ptr) is$/ | ||
| 1853 | Initialize_LL_Tasks/p ada-src/2ataspri.ads /^ procedure Initialize_LL_Tasks (T : TCB_Ptr);$/ | ||
| 1854 | Initialize_Lock/p ada-src/2ataspri.adb /^ procedure Initialize_Lock$/ | ||
| 1855 | Initialize_Lock/p ada-src/2ataspri.ads /^ procedure Initialize_Lock (Prio : System.Any_Pr/ | ||
| 1856 | initialize-new-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun initialize-new-tags-table ()$/ | ||
| 1857 | initialize_random_junk y-src/cccp.y /^initialize_random_junk ()$/ | ||
| 1858 | InitializeStringPackage pas-src/common.pas /^procedure InitializeStringPackage;$/ | ||
| 1859 | Initialize_TAS_Cell/p ada-src/2ataspri.adb /^ procedure Initialize_TAS_Cell (Cell : out TAS_C/ | ||
| 1860 | Initialize_TAS_Cell/p ada-src/2ataspri.ads /^ procedure Initialize_TAS_Cell (Cell : out TA/ | ||
| 1861 | initial_kboard c-src/emacs/src/keyboard.c 84 | ||
| 1862 | initial tex-src/texinfo.tex /^\\def\\initial #1{%$/ | ||
| 2942 | init_kboard c-src/emacs/src/keyboard.c /^init_kboard (KBOARD *kb, Lisp_Object type)$/ | 1863 | init_kboard c-src/emacs/src/keyboard.c /^init_kboard (KBOARD *kb, Lisp_Object type)$/ |
| 2943 | init_keyboard c-src/emacs/src/keyboard.c /^init_keyboard (void)$/ | 1864 | init_keyboard c-src/emacs/src/keyboard.c /^init_keyboard (void)$/ |
| 1865 | InitNameList pas-src/common.pas /^procedure InitNameList;$/ | ||
| 1866 | InitNameStringPool pas-src/common.pas /^procedure InitNameStringPool;$/ | ||
| 1867 | init objcpp-src/SimpleCalc.M /^- init$/ | ||
| 1868 | init objc-src/Subprocess.m /^ andStdErr:(BOOL)wantsStdErr$/ | ||
| 1869 | init objc-src/Subprocess.m /^- init:(const char *)subprocessString$/ | ||
| 1870 | __init__ pyt-src/server.py /^ def __init__(self):$/ | ||
| 1871 | __init__ pyt-src/server.py /^ def __init__(self, host, sitelist, master=None/ | ||
| 1872 | __init__ pyt-src/server.py /^ def __init__(self, master=None):$/ | ||
| 1873 | __init__ pyt-src/server.py /^ def __init__(self, Master, text, textvar, widt/ | ||
| 1874 | __init__ pyt-src/server.py /^ def __init__(self, newlegend, list, editor, ma/ | ||
| 1875 | __init__ pyt-src/server.py /^ def __init__(self, user, userlist, master=None/ | ||
| 2944 | init_registry cp-src/clheir.cpp /^void init_registry(void)$/ | 1876 | init_registry cp-src/clheir.cpp /^void init_registry(void)$/ |
| 2945 | init_tool_bar_items c-src/emacs/src/keyboard.c /^init_tool_bar_items (Lisp_Object reuse)$/ | 1877 | init_tool_bar_items c-src/emacs/src/keyboard.c /^init_tool_bar_items (Lisp_Object reuse)$/ |
| 2946 | inita c.c /^static void inita () {}$/ | 1878 | Inner1/b ada-src/etags-test-for.ada /^ package body Inner1 is$/ |
| 2947 | initb c.c /^static void initb () {}$/ | 1879 | Inner1/b ada-src/waroquiers.ada /^ package body Inner1 is$/ |
| 2948 | initial tex-src/texinfo.tex /^\\def\\initial #1{%$/ | 1880 | Inner1/s ada-src/etags-test-for.ada /^ package Inner1 is$/ |
| 2949 | initial_kboard c-src/emacs/src/keyboard.c 84 | 1881 | Inner1/s ada-src/waroquiers.ada /^ package Inner1 is$/ |
| 2950 | initialize-new-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun initialize-new-tags-table ()$/ | 1882 | Inner2/b ada-src/etags-test-for.ada /^ package body Inner2 is$/ |
| 2951 | initialize_goal_store merc-src/accumulator.m /^:- func initialize_goal_store(list(hlds_goal), ins/ | 1883 | Inner2/b ada-src/waroquiers.ada /^ package body Inner2 is$/ |
| 2952 | initialize_random_junk y-src/cccp.y /^initialize_random_junk ()$/ | 1884 | Inner2/s ada-src/etags-test-for.ada /^ package Inner2 is$/ |
| 2953 | input-pending-p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/ | 1885 | Inner2/s ada-src/waroquiers.ada /^ package Inner2 is$/ |
| 2954 | input_available_clear_time c-src/emacs/src/keyboard.c 324 | 1886 | input_available_clear_time c-src/emacs/src/keyboard.c 324 |
| 1887 | INPUT_EVENT_POS_MAX c-src/emacs/src/keyboard.c 3698 | ||
| 1888 | INPUT_EVENT_POS_MIN c-src/emacs/src/keyboard.c 3701 | ||
| 2955 | input_pending c-src/emacs/src/keyboard.c 239 | 1889 | input_pending c-src/emacs/src/keyboard.c 239 |
| 1890 | input-pending-p c-src/emacs/src/keyboard.c /^DEFUN ("input-pending-p", Finput_pending_p, Sinput/ | ||
| 2956 | input_polling_used c-src/emacs/src/keyboard.c /^input_polling_used (void)$/ | 1891 | input_polling_used c-src/emacs/src/keyboard.c /^input_polling_used (void)$/ |
| 2957 | input_was_pending c-src/emacs/src/keyboard.c 287 | 1892 | input_was_pending c-src/emacs/src/keyboard.c 287 |
| 2958 | insert-abbrev-table-description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/ | 1893 | insert-abbrev-table-description c-src/abbrev.c /^DEFUN ("insert-abbrev-table-description", Finsert_/ |
| 2959 | insertion_type c-src/emacs/src/lisp.h 1989 | 1894 | insertion_type c-src/emacs/src/lisp.h 1989 |
| 2960 | insertname pas-src/common.pas /^function insertname;(*($/ | 1895 | insertname pas-src/common.pas /^function insertname;(*($/ |
| 2961 | instance_method ruby-src/test.rb /^ def instance_method$/ | 1896 | INSERT_TREE_NODE pas-src/common.pas /^procedure INSERT_TREE_NODE;(*( $/ |
| 1897 | Install_Abort_Handler/p ada-src/2ataspri.adb /^ procedure Install_Abort_Handler (Handler : Abor/ | ||
| 1898 | Install_Abort_Handler/p ada-src/2ataspri.ads /^ procedure Install_Abort_Handler (Handler : Abor/ | ||
| 1899 | Install_Error_Handler/p ada-src/2ataspri.adb /^ procedure Install_Error_Handler (Handler : Syst/ | ||
| 1900 | Install_Error_Handler/p ada-src/2ataspri.ads /^ procedure Install_Error_Handler (Handler : Syst/ | ||
| 2962 | instance_method_equals= ruby-src/test.rb /^ def instance_method_equals=$/ | 1901 | instance_method_equals= ruby-src/test.rb /^ def instance_method_equals=$/ |
| 2963 | instance_method_exclamation! ruby-src/test.rb /^ def instance_method_exclamation!$/ | 1902 | instance_method_exclamation! ruby-src/test.rb /^ def instance_method_exclamation!$/ |
| 2964 | instance_method_question? ruby-src/test.rb /^ def instance_method_question?$/ | 1903 | instance_method_question? ruby-src/test.rb /^ def instance_method_question?$/ |
| 2965 | instr y-src/parse.y 81 | 1904 | instance_method ruby-src/test.rb /^ def instance_method$/ |
| 1905 | INSTANTIATE_MDIAGARRAY_FRIENDS cp-src/MDiagArray2.h /^#define INSTANTIATE_MDIAGARRAY_FRIENDS(T) \\$/ | ||
| 2966 | instruct c-src/etags.c 2527 | 1906 | instruct c-src/etags.c 2527 |
| 2967 | int merc-src/accumulator.m /^:- import_module int.$/ | 1907 | instr y-src/parse.y 81 |
| 2968 | intNumber go-src/test1.go 13 | 1908 | INT_BIT c-src/emacs/src/gmalloc.c 124 |
| 1909 | INT c-src/h.h 32 | ||
| 2969 | integer c-src/emacs/src/lisp.h 2127 | 1910 | integer c-src/emacs/src/lisp.h 2127 |
| 2970 | integer y-src/cccp.y 112 | ||
| 2971 | integer_overflow y-src/cccp.y /^integer_overflow ()$/ | 1911 | integer_overflow y-src/cccp.y /^integer_overflow ()$/ |
| 1912 | INTEGERP c-src/emacs/src/lisp.h /^# define INTEGERP(x) lisp_h_INTEGERP (x)$/ | ||
| 1913 | INTEGER_TO_CONS c-src/emacs/src/lisp.h /^#define INTEGER_TO_CONS(i) \\$/ | ||
| 2972 | integertonmstr pas-src/common.pas /^function integertonmstr; (* (TheInteger : integer)/ | 1914 | integertonmstr pas-src/common.pas /^function integertonmstr; (* (TheInteger : integer)/ |
| 1915 | integer y-src/cccp.y 112 | ||
| 2973 | intensity1 f-src/entry.for /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/ | 1916 | intensity1 f-src/entry.for /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/ |
| 2974 | intensity1 f-src/entry.strange /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/ | 1917 | intensity1 f-src/entry.strange /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/ |
| 2975 | intensity1 f-src/entry.strange_suffix /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/ | 1918 | intensity1 f-src/entry.strange_suffix /^ & intensity1(efv,fv,svin,svquad,sfpv,maxp,val/ |
| 2976 | interface merc-src/accumulator.m /^:- interface.$/ | ||
| 2977 | interface_locate c-src/c.c /^interface_locate(void)$/ | 1919 | interface_locate c-src/c.c /^interface_locate(void)$/ |
| 2978 | intern c-src/emacs/src/lisp.h /^intern (const char *str)$/ | 1920 | interface merc-src/accumulator.m /^:- interface.$/ |
| 2979 | intern_c_string c-src/emacs/src/lisp.h /^intern_c_string (const char *str)$/ | ||
| 2980 | internalBitem tex-src/texinfo.tex /^\\def\\internalBitem{\\smallbreak \\parsearg\\itemzzz}$/ | 1921 | internalBitem tex-src/texinfo.tex /^\\def\\internalBitem{\\smallbreak \\parsearg\\itemzzz}$/ |
| 2981 | internalBitemx tex-src/texinfo.tex /^\\def\\internalBitemx{\\par \\parsearg\\itemzzz}$/ | 1922 | internalBitemx tex-src/texinfo.tex /^\\def\\internalBitemx{\\par \\parsearg\\itemzzz}$/ |
| 2982 | internalBkitem tex-src/texinfo.tex /^\\def\\internalBkitem{\\smallbreak \\parsearg\\kitemzzz/ | 1923 | internalBkitem tex-src/texinfo.tex /^\\def\\internalBkitem{\\smallbreak \\parsearg\\kitemzzz/ |
| @@ -2985,87 +1926,123 @@ internalBxitem tex-src/texinfo.tex /^\\def\\internalBxitem "#1"{\\def\\xitemsubt | |||
| 2985 | internalBxitemx tex-src/texinfo.tex /^\\def\\internalBxitemx "#1"{\\def\\xitemsubtopix{#1} \\/ | 1926 | internalBxitemx tex-src/texinfo.tex /^\\def\\internalBxitemx "#1"{\\def\\xitemsubtopix{#1} \\/ |
| 2986 | internal_last_event_frame c-src/emacs/src/keyboard.c 228 | 1927 | internal_last_event_frame c-src/emacs/src/keyboard.c 228 |
| 2987 | internalsetq tex-src/texinfo.tex /^\\def\\internalsetq #1#2{'xrdef {#1}{\\csname #2\\endc/ | 1928 | internalsetq tex-src/texinfo.tex /^\\def\\internalsetq #1#2{'xrdef {#1}{\\csname #2\\endc/ |
| 1929 | intern c-src/emacs/src/lisp.h /^intern (const char *str)$/ | ||
| 1930 | intern_c_string c-src/emacs/src/lisp.h /^intern_c_string (const char *str)$/ | ||
| 2988 | interned c-src/emacs/src/lisp.h 672 | 1931 | interned c-src/emacs/src/lisp.h 672 |
| 2989 | interpreters c-src/etags.c 197 | 1932 | interpreters c-src/etags.c 197 |
| 2990 | interrupt_input c-src/emacs/src/keyboard.c 328 | ||
| 2991 | interrupt_input_blocked c-src/emacs/src/keyboard.c 76 | 1933 | interrupt_input_blocked c-src/emacs/src/keyboard.c 76 |
| 2992 | interrupt_input_blocked c-src/emacs/src/lisp.h 3048 | 1934 | interrupt_input_blocked c-src/emacs/src/lisp.h 3048 |
| 1935 | interrupt_input c-src/emacs/src/keyboard.c 328 | ||
| 2993 | interrupts_deferred c-src/emacs/src/keyboard.c 331 | 1936 | interrupts_deferred c-src/emacs/src/keyboard.c 331 |
| 1937 | INTERVAL c-src/emacs/src/lisp.h 1149 | ||
| 1938 | INTMASK c-src/emacs/src/lisp.h 437 | ||
| 1939 | int merc-src/accumulator.m /^:- import_module int.$/ | ||
| 1940 | intNumber go-src/test1.go 13 | ||
| 2994 | intoken c-src/etags.c /^#define intoken(c) (_itk[CHAR (c)]) \/* c can be in/ | 1941 | intoken c-src/etags.c /^#define intoken(c) (_itk[CHAR (c)]) \/* c can be in/ |
| 2995 | intspec c-src/emacs/src/lisp.h 1688 | 1942 | intspec c-src/emacs/src/lisp.h 1688 |
| 1943 | INTTYPEBITS c-src/emacs/src/lisp.h 249 | ||
| 1944 | INT_TYPE_SIZE y-src/cccp.y 91 | ||
| 2996 | intvar c-src/emacs/src/lisp.h 2277 | 1945 | intvar c-src/emacs/src/lisp.h 2277 |
| 1946 | INT y-src/cccp.c 6 | ||
| 2997 | invalidate_nodes c-src/etags.c /^invalidate_nodes (fdesc *badfdp, node **npp)$/ | 1947 | invalidate_nodes c-src/etags.c /^invalidate_nodes (fdesc *badfdp, node **npp)$/ |
| 1948 | Invoking gzip tex-src/gzip.texi /^@node Invoking gzip, Advanced usage, Sample, Top$/ | ||
| 1949 | in_word_set c-src/etags.c /^in_word_set (register const char *str, register un/ | ||
| 2998 | io merc-src/accumulator.m /^:- import_module io.$/ | 1950 | io merc-src/accumulator.m /^:- import_module io.$/ |
| 2999 | ipc3dCSC19 cp-src/c.C 6 | 1951 | IpAddrKind rs-src/test.rs 3 |
| 3000 | ipc3dChannelType cp-src/c.C 1 | 1952 | ipc3dChannelType cp-src/c.C 1 |
| 1953 | ipc3dCSC19 cp-src/c.C 6 | ||
| 3001 | ipc3dIslandHierarchy cp-src/c.C 1 | 1954 | ipc3dIslandHierarchy cp-src/c.C 1 |
| 3002 | ipc3dLinkControl cp-src/c.C 1 | 1955 | ipc3dLinkControl cp-src/c.C 1 |
| 3003 | irregular_location cp-src/clheir.hpp /^ irregular_location(double xi, double yi, doubl/ | 1956 | __ip c.c 159 |
| 1957 | /ip ps-src/rfc1245.ps /^\/ip { $/ | ||
| 1958 | /i ps-src/rfc1245.ps /^\/i \/j \/k \/l \/m \/n \/o \/p \/q \/r \/s \/t \/u \/v \/w \/x \/y/ | ||
| 3004 | irregular_location cp-src/clheir.hpp 47 | 1959 | irregular_location cp-src/clheir.hpp 47 |
| 3005 | isComment php-src/lce_functions.php /^ function isComment($class)$/ | 1960 | irregular_location cp-src/clheir.hpp /^ irregular_location(double xi, double yi, doubl/ |
| 3006 | isHoliday cp-src/functions.cpp /^bool isHoliday ( Date d ){$/ | 1961 | ISALNUM c-src/etags.c /^#define ISALNUM(c) isalnum (CHAR (c))$/ |
| 3007 | isLeap cp-src/functions.cpp /^bool isLeap ( int year ){$/ | 1962 | ISALPHA c-src/etags.c /^#define ISALPHA(c) isalpha (CHAR (c))$/ |
| 3008 | is_associative_construction merc-src/accumulator.m /^:- pred is_associative_construction(module_info::i/ | 1963 | is_associative_construction merc-src/accumulator.m /^:- pred is_associative_construction(module_info::i/ |
| 1964 | isComment php-src/lce_functions.php /^ function isComment($class)$/ | ||
| 1965 | IsControlCharName pas-src/common.pas /^function IsControlCharName($/ | ||
| 1966 | IsControlChar pas-src/common.pas /^function IsControlChar; (*($/ | ||
| 3009 | is_curly_brace_form c-src/h.h 54 | 1967 | is_curly_brace_form c-src/h.h 54 |
| 1968 | IS_DAEMON c-src/emacs/src/lisp.h 4257 | ||
| 1969 | IS_DAEMON c-src/emacs/src/lisp.h 4261 | ||
| 1970 | ISDIGIT c-src/etags.c /^#define ISDIGIT(c) isdigit (CHAR (c))$/ | ||
| 3010 | is_explicit c-src/h.h 49 | 1971 | is_explicit c-src/h.h 49 |
| 3011 | is_func c-src/etags.c 221 | 1972 | is_func c-src/etags.c 221 |
| 1973 | isHoliday cp-src/functions.cpp /^bool isHoliday ( Date d ){$/ | ||
| 3012 | is_hor_space y-src/cccp.y 953 | 1974 | is_hor_space y-src/cccp.y 953 |
| 3013 | is_idchar y-src/cccp.y 948 | 1975 | is_idchar y-src/cccp.y 948 |
| 3014 | is_idstart y-src/cccp.y 950 | 1976 | is_idstart y-src/cccp.y 950 |
| 1977 | isLeap cp-src/functions.cpp /^bool isLeap ( int year ){$/ | ||
| 1978 | ISLOWER c-src/etags.c /^#define ISLOWER(c) islower (CHAR (c))$/ | ||
| 3015 | is_muldiv_operation cp-src/c.C /^is_muldiv_operation(pc)$/ | 1979 | is_muldiv_operation cp-src/c.C /^is_muldiv_operation(pc)$/ |
| 3016 | is_ordset prol-src/ordsets.prolog /^is_ordset(X) :- var(X), !, fail.$/ | 1980 | ISO_FUNCTION_KEY_OFFSET c-src/emacs/src/keyboard.c 5149 |
| 3017 | is_recursive_case merc-src/accumulator.m /^:- pred is_recursive_case(list(hlds_goal)::in, pre/ | ||
| 3018 | iso_lispy_function_keys c-src/emacs/src/keyboard.c 5151 | 1981 | iso_lispy_function_keys c-src/emacs/src/keyboard.c 5151 |
| 3019 | isoperator prol-src/natded.prolog /^isoperator(Char):-$/ | 1982 | isoperator prol-src/natded.prolog /^isoperator(Char):-$/ |
| 3020 | isoptab prol-src/natded.prolog /^isoptab('%').$/ | 1983 | isoptab prol-src/natded.prolog /^isoptab('%').$/ |
| 1984 | is_ordset prol-src/ordsets.prolog /^is_ordset(X) :- var(X), !, fail.$/ | ||
| 1985 | is_recursive_case merc-src/accumulator.m /^:- pred is_recursive_case(list(hlds_goal)::in, pre/ | ||
| 1986 | Is_Set/f ada-src/2ataspri.adb /^ function Is_Set (Cell : in TAS_Cell) return Bo/ | ||
| 1987 | Is_Set/f ada-src/2ataspri.ads /^ function Is_Set (Cell : in TAS_Cell)/ | ||
| 1988 | ISUPPER c-src/etags.c /^# define ISUPPER(c) isupper (CHAR (c))$/ | ||
| 3021 | iswhite c-src/etags.c /^#define iswhite(c) (_wht[CHAR (c)]) \/* c is white / | 1989 | iswhite c-src/etags.c /^#define iswhite(c) (_wht[CHAR (c)]) \/* c is white / |
| 3022 | item tex-src/texinfo.tex /^\\def\\item{\\errmessage{@item while not in a table}}/ | ||
| 3023 | item tex-src/texinfo.tex /^\\let\\item = \\internalBitem %$/ | ||
| 3024 | item tex-src/texinfo.tex /^\\let\\item=\\itemizeitem}$/ | ||
| 3025 | item_properties c-src/emacs/src/keyboard.c 7568 | ||
| 3026 | itemcontents tex-src/texinfo.tex /^\\def\\itemcontents{#1}%$/ | 1990 | itemcontents tex-src/texinfo.tex /^\\def\\itemcontents{#1}%$/ |
| 3027 | itemfont tex-src/texinfo.tex /^\\def\\itemfont{#2}%$/ | 1991 | itemfont tex-src/texinfo.tex /^\\def\\itemfont{#2}%$/ |
| 3028 | itemindex tex-src/texinfo.tex /^\\let\\itemindex=#1%$/ | 1992 | itemindex tex-src/texinfo.tex /^\\let\\itemindex=#1%$/ |
| 3029 | itemize tex-src/texinfo.tex /^\\def\\itemize{\\parsearg\\itemizezzz}$/ | ||
| 3030 | itemizeitem tex-src/texinfo.tex /^\\def\\itemizeitem{%$/ | 1993 | itemizeitem tex-src/texinfo.tex /^\\def\\itemizeitem{%$/ |
| 1994 | itemize tex-src/texinfo.tex /^\\def\\itemize{\\parsearg\\itemizezzz}$/ | ||
| 3031 | itemizey tex-src/texinfo.tex /^\\def\\itemizey #1#2{%$/ | 1995 | itemizey tex-src/texinfo.tex /^\\def\\itemizey #1#2{%$/ |
| 3032 | itemizezzz tex-src/texinfo.tex /^\\def\\itemizezzz #1{%$/ | 1996 | itemizezzz tex-src/texinfo.tex /^\\def\\itemizezzz #1{%$/ |
| 1997 | item_properties c-src/emacs/src/keyboard.c 7568 | ||
| 1998 | item tex-src/texinfo.tex /^\\def\\item{\\errmessage{@item while not in a table}}/ | ||
| 1999 | item tex-src/texinfo.tex /^\\let\\item = \\internalBitem %$/ | ||
| 2000 | item tex-src/texinfo.tex /^\\let\\item=\\itemizeitem}$/ | ||
| 3033 | itemx tex-src/texinfo.tex /^\\def\\itemx{\\errmessage{@itemx while not in a table/ | 2001 | itemx tex-src/texinfo.tex /^\\def\\itemx{\\errmessage{@itemx while not in a table/ |
| 3034 | itemx tex-src/texinfo.tex /^\\let\\itemx = \\internalBitemx %$/ | 2002 | itemx tex-src/texinfo.tex /^\\let\\itemx = \\internalBitemx %$/ |
| 3035 | itemzzz tex-src/texinfo.tex /^\\def\\itemzzz #1{\\begingroup %$/ | 2003 | itemzzz tex-src/texinfo.tex /^\\def\\itemzzz #1{\\begingroup %$/ |
| 2004 | i tex-src/texinfo.tex /^\\def\\i##1{\\realbackslash i {##1}}%$/ | ||
| 2005 | i tex-src/texinfo.tex /^\\def\\i##1{\\realbackslash i {##1}}$/ | ||
| 2006 | i tex-src/texinfo.tex /^\\let\\b=\\ptexb \\let\\c=\\ptexc \\let\\i=\\ptexi \\let\\t=\\/ | ||
| 2007 | i tex-src/texinfo.tex /^\\let\\i=\\indexdummyfont$/ | ||
| 2008 | i tex-src/texinfo.tex /^\\let\\i=\\smartitalic$/ | ||
| 3036 | ivarheader tex-src/texinfo.tex /^\\def\\defivar{\\defvrparsebody\\Edefivar\\defivarx\\def/ | 2009 | ivarheader tex-src/texinfo.tex /^\\def\\defivar{\\defvrparsebody\\Edefivar\\defivarx\\def/ |
| 3037 | ivarx\defivarheader tex-src/texinfo.tex /^\\def\\defivar{\\defvrparsebody\\Edefivar\\defivarx\\def/ | 2010 | ivarx\defivarheader tex-src/texinfo.tex /^\\def\\defivar{\\defvrparsebody\\Edefivar\\defivarx\\def/ |
| 2011 | JAVASRC make-src/Makefile /^JAVASRC=AWTEMul.java KeyEve.java SMan.java SysCol./ | ||
| 3038 | jmp c-src/emacs/src/lisp.h 3044 | 2012 | jmp c-src/emacs/src/lisp.h 3044 |
| 3039 | just_read_file c-src/etags.c /^just_read_file (FILE *inf)$/ | 2013 | just_read_file c-src/etags.c /^just_read_file (FILE *inf)$/ |
| 3040 | kbd tex-src/texinfo.tex /^\\def\\kbd##1{\\realbackslash kbd {##1}}$/ | ||
| 3041 | kbd tex-src/texinfo.tex /^\\def\\kbd##1{\\realbackslash kbd {##1}}%$/ | ||
| 3042 | kbd tex-src/texinfo.tex /^\\def\\kbd#1{\\def\\look{#1}\\expandafter\\kbdfoo\\look??/ | ||
| 3043 | kbd tex-src/texinfo.tex /^\\let\\kbd=\\indexdummyfont$/ | ||
| 3044 | kbd_buffer c-src/emacs/src/keyboard.c 291 | 2014 | kbd_buffer c-src/emacs/src/keyboard.c 291 |
| 3045 | kbd_buffer_events_waiting c-src/emacs/src/keyboard.c /^kbd_buffer_events_waiting (void)$/ | 2015 | kbd_buffer_events_waiting c-src/emacs/src/keyboard.c /^kbd_buffer_events_waiting (void)$/ |
| 3046 | kbd_buffer_get_event c-src/emacs/src/keyboard.c /^kbd_buffer_get_event (KBOARD **kbp,$/ | 2016 | kbd_buffer_get_event c-src/emacs/src/keyboard.c /^kbd_buffer_get_event (KBOARD **kbp,$/ |
| 3047 | kbd_buffer_nr_stored c-src/emacs/src/keyboard.c /^kbd_buffer_nr_stored (void)$/ | 2017 | kbd_buffer_nr_stored c-src/emacs/src/keyboard.c /^kbd_buffer_nr_stored (void)$/ |
| 2018 | KBD_BUFFER_SIZE c-src/emacs/src/keyboard.c 82 | ||
| 3048 | kbd_buffer_store_event c-src/emacs/src/keyboard.c /^kbd_buffer_store_event (register struct input_even/ | 2019 | kbd_buffer_store_event c-src/emacs/src/keyboard.c /^kbd_buffer_store_event (register struct input_even/ |
| 3049 | kbd_buffer_store_event_hold c-src/emacs/src/keyboard.c /^kbd_buffer_store_event_hold (register struct input/ | 2020 | kbd_buffer_store_event_hold c-src/emacs/src/keyboard.c /^kbd_buffer_store_event_hold (register struct input/ |
| 3050 | kbd_buffer_store_help_event c-src/emacs/src/keyboard.c /^kbd_buffer_store_help_event (Lisp_Object frame, Li/ | 2021 | kbd_buffer_store_help_event c-src/emacs/src/keyboard.c /^kbd_buffer_store_help_event (Lisp_Object frame, Li/ |
| 3051 | kbd_buffer_unget_event c-src/emacs/src/keyboard.c /^kbd_buffer_unget_event (register struct input_even/ | 2022 | kbd_buffer_unget_event c-src/emacs/src/keyboard.c /^kbd_buffer_unget_event (register struct input_even/ |
| 3052 | kbd_fetch_ptr c-src/emacs/src/keyboard.c 297 | 2023 | kbd_fetch_ptr c-src/emacs/src/keyboard.c 297 |
| 3053 | kbd_store_ptr c-src/emacs/src/keyboard.c 302 | ||
| 3054 | kbdfoo tex-src/texinfo.tex /^\\def\\kbdfoo#1#2#3\\par{\\def\\one{#1}\\def\\three{#3}\\d/ | 2024 | kbdfoo tex-src/texinfo.tex /^\\def\\kbdfoo#1#2#3\\par{\\def\\one{#1}\\def\\three{#3}\\d/ |
| 2025 | kbd_store_ptr c-src/emacs/src/keyboard.c 302 | ||
| 2026 | kbd tex-src/texinfo.tex /^\\def\\kbd#1{\\def\\look{#1}\\expandafter\\kbdfoo\\look??/ | ||
| 2027 | kbd tex-src/texinfo.tex /^\\def\\kbd##1{\\realbackslash kbd {##1}}%$/ | ||
| 2028 | kbd tex-src/texinfo.tex /^\\def\\kbd##1{\\realbackslash kbd {##1}}$/ | ||
| 2029 | kbd tex-src/texinfo.tex /^\\let\\kbd=\\indexdummyfont$/ | ||
| 3055 | kboard c-src/emacs/src/keyboard.c 860 | 2030 | kboard c-src/emacs/src/keyboard.c 860 |
| 3056 | kboard_stack c-src/emacs/src/keyboard.c 858 | 2031 | kboard_stack c-src/emacs/src/keyboard.c 858 |
| 3057 | kboard_stack c-src/emacs/src/keyboard.c 864 | 2032 | kboard_stack c-src/emacs/src/keyboard.c 864 |
| 3058 | key tex-src/texinfo.tex /^\\def\\key #1{{\\tt \\exhyphenpenalty=10000\\uppercase{/ | 2033 | KBYTES objc-src/PackInsp.m 58 |
| 3059 | key tex-src/texinfo.tex /^\\def\\key##1{\\realbackslash key {##1}}$/ | ||
| 3060 | key tex-src/texinfo.tex /^\\def\\key##1{\\realbackslash key {##1}}%$/ | ||
| 3061 | key tex-src/texinfo.tex /^\\let\\key=\\indexdummyfont$/ | ||
| 3062 | key_and_value c-src/emacs/src/lisp.h 1868 | 2034 | key_and_value c-src/emacs/src/lisp.h 1868 |
| 3063 | keyremap c-src/emacs/src/keyboard.c 8742 | 2035 | keyremap c-src/emacs/src/keyboard.c 8742 |
| 3064 | keyremap c-src/emacs/src/keyboard.c 8754 | 2036 | keyremap c-src/emacs/src/keyboard.c 8754 |
| 3065 | keyremap_step c-src/emacs/src/keyboard.c /^keyremap_step (Lisp_Object *keybuf, int bufsize, v/ | 2037 | keyremap_step c-src/emacs/src/keyboard.c /^keyremap_step (Lisp_Object *keybuf, int bufsize, v/ |
| 3066 | keys_of_keyboard c-src/emacs/src/keyboard.c /^keys_of_keyboard (void)$/ | 2038 | keys_of_keyboard c-src/emacs/src/keyboard.c /^keys_of_keyboard (void)$/ |
| 3067 | keyval prol-src/natded.prolog /^keyval(key(Key,Val)) --> [Key,'='], valseq(Val).$/ | 2039 | key tex-src/texinfo.tex /^\\def\\key##1{\\realbackslash key {##1}}%$/ |
| 2040 | key tex-src/texinfo.tex /^\\def\\key##1{\\realbackslash key {##1}}$/ | ||
| 2041 | key tex-src/texinfo.tex /^\\def\\key #1{{\\tt \\exhyphenpenalty=10000\\uppercase{/ | ||
| 2042 | key tex-src/texinfo.tex /^\\let\\key=\\indexdummyfont$/ | ||
| 2043 | KEY_TO_CHAR c-src/emacs/src/keyboard.c /^#define KEY_TO_CHAR(k) (XINT (k) & ((1 << CHARACTE/ | ||
| 3068 | keyvalcgi prol-src/natded.prolog /^keyvalcgi(Key,Val):-$/ | 2044 | keyvalcgi prol-src/natded.prolog /^keyvalcgi(Key,Val):-$/ |
| 2045 | keyval prol-src/natded.prolog /^keyval(key(Key,Val)) --> [Key,'='], valseq(Val).$/ | ||
| 3069 | keyvalscgi prol-src/natded.prolog /^keyvalscgi(KeyVals),$/ | 2046 | keyvalscgi prol-src/natded.prolog /^keyvalscgi(KeyVals),$/ |
| 3070 | keyvalseq prol-src/natded.prolog /^keyvalseq([KeyVal|KeyVals]) --> $/ | 2047 | keyvalseq prol-src/natded.prolog /^keyvalseq([KeyVal|KeyVals]) --> $/ |
| 3071 | keyword_parsing y-src/cccp.y 73 | 2048 | keyword_parsing y-src/cccp.y 73 |
| @@ -3088,42 +2065,56 @@ kset_local_function_key_map c-src/emacs/src/keyboard.c /^kset_local_function_key | |||
| 3088 | kset_overriding_terminal_local_map c-src/emacs/src/keyboard.c /^kset_overriding_terminal_local_map (struct kboard / | 2065 | kset_overriding_terminal_local_map c-src/emacs/src/keyboard.c /^kset_overriding_terminal_local_map (struct kboard / |
| 3089 | kset_real_last_command c-src/emacs/src/keyboard.c /^kset_real_last_command (struct kboard *kb, Lisp_Ob/ | 2066 | kset_real_last_command c-src/emacs/src/keyboard.c /^kset_real_last_command (struct kboard *kb, Lisp_Ob/ |
| 3090 | kset_system_key_syms c-src/emacs/src/keyboard.c /^kset_system_key_syms (struct kboard *kb, Lisp_Obje/ | 2067 | kset_system_key_syms c-src/emacs/src/keyboard.c /^kset_system_key_syms (struct kboard *kb, Lisp_Obje/ |
| 3091 | l tex-src/texinfo.tex /^\\def\\l#1{{\\li #1}\\null} % $/ | 2068 | LabeledEntry pyt-src/server.py /^class LabeledEntry(Frame):$/ |
| 3092 | l tex-src/texinfo.tex /^\\let\\b=\\ptexb \\let\\c=\\ptexc \\let\\i=\\ptexi \\let\\t=\\/ | ||
| 3093 | labelspace tex-src/texinfo.tex /^\\def\\labelspace{\\hskip1em \\relax}$/ | 2069 | labelspace tex-src/texinfo.tex /^\\def\\labelspace{\\hskip1em \\relax}$/ |
| 3094 | lang c-src/etags.c 208 | 2070 | lang c-src/etags.c 208 |
| 3095 | lang c-src/etags.c 251 | 2071 | lang c-src/etags.c 251 |
| 3096 | lang c-src/etags.c 259 | 2072 | lang c-src/etags.c 259 |
| 2073 | Lang_function c-src/etags.c 182 | ||
| 2074 | Lang_function c-src/h.h 6 | ||
| 3097 | lang_names c-src/etags.c 718 | 2075 | lang_names c-src/etags.c 718 |
| 3098 | language c-src/etags.c 199 | 2076 | language c-src/etags.c 199 |
| 3099 | last-tag el-src/emacs/lisp/progmodes/etags.el /^(defvar last-tag nil$/ | ||
| 3100 | last_abbrev_point c-src/abbrev.c 79 | 2077 | last_abbrev_point c-src/abbrev.c 79 |
| 2078 | lasta c.c 272 | ||
| 2079 | lastargmargin tex-src/texinfo.tex /^\\newskip\\deflastargmargin \\deflastargmargin=18pt$/ | ||
| 2080 | lastargmargin tex-src/texinfo.tex /^\\setbox0=\\hbox{\\hskip \\deflastargmargin{\\rm #2}\\hs/ | ||
| 3101 | last_auto_save c-src/emacs/src/keyboard.c 214 | 2081 | last_auto_save c-src/emacs/src/keyboard.c 214 |
| 2082 | lastb c.c 278 | ||
| 3102 | last_heapinfo c-src/emacs/src/gmalloc.c 403 | 2083 | last_heapinfo c-src/emacs/src/gmalloc.c 403 |
| 3103 | last_mouse_button c-src/emacs/src/keyboard.c 5215 | 2084 | last_mouse_button c-src/emacs/src/keyboard.c 5215 |
| 3104 | last_mouse_x c-src/emacs/src/keyboard.c 5216 | 2085 | last_mouse_x c-src/emacs/src/keyboard.c 5216 |
| 3105 | last_mouse_y c-src/emacs/src/keyboard.c 5217 | 2086 | last_mouse_y c-src/emacs/src/keyboard.c 5217 |
| 2087 | lastnode tex-src/texinfo.tex /^\\def\\nodexxx[#1,#2]{\\gdef\\lastnode{#1}}$/ | ||
| 2088 | lastnode tex-src/texinfo.tex /^\\let\\lastnode=\\relax}$/ | ||
| 2089 | lastnode tex-src/texinfo.tex /^\\let\\lastnode=\\relax$/ | ||
| 3106 | last_non_minibuf_size c-src/emacs/src/keyboard.c 207 | 2090 | last_non_minibuf_size c-src/emacs/src/keyboard.c 207 |
| 3107 | last_point_position c-src/emacs/src/keyboard.c 217 | 2091 | last_point_position c-src/emacs/src/keyboard.c 217 |
| 3108 | last_state_size c-src/emacs/src/gmalloc.c 402 | 2092 | last_state_size c-src/emacs/src/gmalloc.c 402 |
| 2093 | last-tag el-src/emacs/lisp/progmodes/etags.el /^(defvar last-tag nil$/ | ||
| 3109 | last_undo_boundary c-src/emacs/src/keyboard.c 1287 | 2094 | last_undo_boundary c-src/emacs/src/keyboard.c 1287 |
| 3110 | lasta c.c 272 | 2095 | LATEST make-src/Makefile /^LATEST=17$/ |
| 3111 | lastargmargin tex-src/texinfo.tex /^\\newskip\\deflastargmargin \\deflastargmargin=18pt$/ | ||
| 3112 | lastargmargin tex-src/texinfo.tex /^\\setbox0=\\hbox{\\hskip \\deflastargmargin{\\rm #2}\\hs/ | ||
| 3113 | lastb c.c 278 | ||
| 3114 | lastnode tex-src/texinfo.tex /^\\def\\nodexxx[#1,#2]{\\gdef\\lastnode{#1}}$/ | ||
| 3115 | lastnode tex-src/texinfo.tex /^\\let\\lastnode=\\relax$/ | ||
| 3116 | lastnode tex-src/texinfo.tex /^\\let\\lastnode=\\relax}$/ | ||
| 3117 | lb c-src/etags.c 2923 | 2096 | lb c-src/etags.c 2923 |
| 3118 | lbrb tex-src/texinfo.tex /^\\def\\lbrb{{\\bf\\char`\\[}} \\def\\rbrb{{\\bf\\char`\\]}}$/ | 2097 | lbrb tex-src/texinfo.tex /^\\def\\lbrb{{\\bf\\char`\\[}} \\def\\rbrb{{\\bf\\char`\\]}}$/ |
| 3119 | lbs c-src/etags.c 2924 | 2098 | lbs c-src/etags.c 2924 |
| 3120 | lce php-src/lce_functions.php /^ function lce()$/ | ||
| 3121 | lce_bindtextdomain php-src/lce_functions.php /^ function lce_bindtextdomain($d_name, $d_path/ | 2099 | lce_bindtextdomain php-src/lce_functions.php /^ function lce_bindtextdomain($d_name, $d_path/ |
| 3122 | lce_bindtextdomain php-src/lce_functions.php /^ function lce_bindtextdomain($domain, $path)$/ | 2100 | lce_bindtextdomain php-src/lce_functions.php /^ function lce_bindtextdomain($domain, $path)$/ |
| 2101 | LCE_COMMENT php-src/lce_functions.php 13 | ||
| 2102 | LCE_COMMENT_TOOL php-src/lce_functions.php 17 | ||
| 2103 | LCE_COMMENT_USER php-src/lce_functions.php 15 | ||
| 3123 | lce_dgettext php-src/lce_functions.php /^ function lce_dgettext($domain, $msgid)$/ | 2104 | lce_dgettext php-src/lce_functions.php /^ function lce_dgettext($domain, $msgid)$/ |
| 2105 | LCE_FUNCTIONS php-src/lce_functions.php 4 | ||
| 3124 | lce_geteditcode php-src/lce_functions.php /^ function lce_geteditcode($type, $name, $text, $r/ | 2106 | lce_geteditcode php-src/lce_functions.php /^ function lce_geteditcode($type, $name, $text, $r/ |
| 3125 | lce_gettext php-src/lce_functions.php /^ function lce_gettext($msgid)$/ | 2107 | lce_gettext php-src/lce_functions.php /^ function lce_gettext($msgid)$/ |
| 2108 | L_CELL y-src/parse.c 10 | ||
| 2109 | LCE_MSGID php-src/lce_functions.php 19 | ||
| 2110 | LCE_MSGSTR php-src/lce_functions.php 21 | ||
| 2111 | lce php-src/lce_functions.php /^ function lce()$/ | ||
| 3126 | lce_textdomain php-src/lce_functions.php /^ function lce_textdomain($domain)$/ | 2112 | lce_textdomain php-src/lce_functions.php /^ function lce_textdomain($domain)$/ |
| 2113 | LCE_TEXT php-src/lce_functions.php 23 | ||
| 2114 | LCE_UNKNOWN php-src/lce_functions.php 9 | ||
| 2115 | LCE_WS php-src/lce_functions.php 11 | ||
| 2116 | L_CONST y-src/parse.c 13 | ||
| 2117 | LDFLAGS make-src/Makefile /^LDFLAGS=#-static -lc_p$/ | ||
| 3127 | leasqr html-src/software.html /^Leasqr$/ | 2118 | leasqr html-src/software.html /^Leasqr$/ |
| 3128 | left c-src/etags.c 216 | 2119 | left c-src/etags.c 216 |
| 3129 | left_shift y-src/cccp.y /^left_shift (a, b)$/ | 2120 | left_shift y-src/cccp.y /^left_shift (a, b)$/ |
| @@ -3131,56 +2122,102 @@ len c-src/etags.c 237 | |||
| 3131 | length c-src/etags.c 2495 | 2122 | length c-src/etags.c 2495 |
| 3132 | length y-src/cccp.y 113 | 2123 | length y-src/cccp.y 113 |
| 3133 | length y-src/cccp.y 44 | 2124 | length y-src/cccp.y 44 |
| 3134 | less tex-src/texinfo.tex /^\\def\\less{\\realbackslash less}$/ | 2125 | LEQ y-src/cccp.c 14 |
| 2126 | /less ps-src/rfc1245.ps /^\/less \/equal \/greater \/question \/at \/A \/B \/C \/D \/E/ | ||
| 3135 | less tex-src/texinfo.tex /^\\def\\less{\\realbackslash less}%$/ | 2127 | less tex-src/texinfo.tex /^\\def\\less{\\realbackslash less}%$/ |
| 2128 | less tex-src/texinfo.tex /^\\def\\less{\\realbackslash less}$/ | ||
| 3136 | let c-src/emacs/src/lisp.h 2981 | 2129 | let c-src/emacs/src/lisp.h 2981 |
| 3137 | letter tex-src/texinfo.tex /^ {#1}{Appendix \\appendixletter}{\\noexpand\\folio}}/ | 2130 | letter tex-src/texinfo.tex /^ {#1}{Appendix \\appendixletter}{\\noexpand\\folio}}/ |
| 2131 | letter tex-src/texinfo.tex /^{#1}{\\appendixletter}{\\the\\secno}{\\noexpand\\folio}/ | ||
| 2132 | letter tex-src/texinfo.tex /^{#1}{\\appendixletter}{\\the\\secno}{\\the\\subsecno}{\\/ | ||
| 3138 | letter tex-src/texinfo.tex /^ {\\appendixletter}$/ | 2133 | letter tex-src/texinfo.tex /^ {\\appendixletter}$/ |
| 3139 | letter tex-src/texinfo.tex /^ {\\appendixletter}{\\the\\secno}{\\the\\subsecno}{\\th/ | 2134 | letter tex-src/texinfo.tex /^ {\\appendixletter}{\\the\\secno}{\\the\\subsecno}{\\th/ |
| 3140 | letter tex-src/texinfo.tex /^\\chapmacro {#1}{Appendix \\appendixletter}%$/ | 2135 | letter tex-src/texinfo.tex /^\\chapmacro {#1}{Appendix \\appendixletter}%$/ |
| 3141 | letter tex-src/texinfo.tex /^\\gdef\\thissection{#1}\\secheading {#1}{\\appendixlet/ | 2136 | letter tex-src/texinfo.tex /^\\gdef\\thissection{#1}\\secheading {#1}{\\appendixlet/ |
| 3142 | letter tex-src/texinfo.tex /^\\global\\advance \\appendixno by 1 \\message{Appendix/ | 2137 | letter tex-src/texinfo.tex /^\\global\\advance \\appendixno by 1 \\message{Appendix/ |
| 3143 | letter tex-src/texinfo.tex /^\\subsecheading {#1}{\\appendixletter}{\\the\\secno}{\\/ | 2138 | letter tex-src/texinfo.tex /^\\subsecheading {#1}{\\appendixletter}{\\the\\secno}{\\/ |
| 3144 | letter tex-src/texinfo.tex /^{#1}{\\appendixletter}{\\the\\secno}{\\noexpand\\folio}/ | ||
| 3145 | letter tex-src/texinfo.tex /^{#1}{\\appendixletter}{\\the\\secno}{\\the\\subsecno}{\\/ | ||
| 3146 | letter: tex-src/texinfo.tex /^\\xdef\\thischapter{Appendix \\appendixletter: \\noexp/ | 2139 | letter: tex-src/texinfo.tex /^\\xdef\\thischapter{Appendix \\appendixletter: \\noexp/ |
| 3147 | level c-src/emacs/src/lisp.h 3153 | 2140 | level c-src/emacs/src/lisp.h 3153 |
| 3148 | lex prol-src/natded.prolog /^lex(W,SynOut,Sem):-$/ | 2141 | lex prol-src/natded.prolog /^lex(W,SynOut,Sem):-$/ |
| 3149 | lexptr y-src/cccp.y 332 | 2142 | lexptr y-src/cccp.y 332 |
| 3150 | li tex-src/texinfo.tex /^\\let\\li = \\sf % Sometimes we call it \\li, not \\sf./ | 2143 | LE y-src/parse.c 7 |
| 2144 | L_FN0 y-src/parse.c 14 | ||
| 2145 | L_FN1R y-src/parse.c 20 | ||
| 2146 | L_FN1 y-src/parse.c 15 | ||
| 2147 | L_FN2R y-src/parse.c 21 | ||
| 2148 | L_FN2 y-src/parse.c 16 | ||
| 2149 | L_FN3R y-src/parse.c 22 | ||
| 2150 | L_FN3 y-src/parse.c 17 | ||
| 2151 | L_FN4R y-src/parse.c 23 | ||
| 2152 | L_FN4 y-src/parse.c 18 | ||
| 2153 | L_FNNR y-src/parse.c 24 | ||
| 2154 | L_FNN y-src/parse.c 19 | ||
| 2155 | L_getit c-src/etags.c /^L_getit (void)$/ | ||
| 2156 | L_GE y-src/parse.c 27 | ||
| 2157 | __libc_atexit c-src/exit.c 30 | ||
| 2158 | __libc_atexit c-src/exit.strange_suffix 30 | ||
| 3151 | libs merc-src/accumulator.m /^:- import_module libs.$/ | 2159 | libs merc-src/accumulator.m /^:- import_module libs.$/ |
| 3152 | licenze html-src/softwarelibero.html /^Licenze d'uso di un programma$/ | 2160 | licenze html-src/softwarelibero.html /^Licenze d'uso di un programma$/ |
| 2161 | LIGHTBLUE cp-src/screen.hpp 21 | ||
| 2162 | LIGHTCYAN cp-src/screen.hpp 23 | ||
| 2163 | LIGHTGRAY cp-src/screen.hpp 19 | ||
| 2164 | LIGHTGREEN cp-src/screen.hpp 22 | ||
| 2165 | LIGHTMAGENTA cp-src/screen.hpp 25 | ||
| 2166 | LIGHTRED cp-src/screen.hpp 24 | ||
| 3153 | limit cp-src/Range.h /^ double limit (void) const { return rng_limit; }$/ | 2167 | limit cp-src/Range.h /^ double limit (void) const { return rng_limit; }$/ |
| 3154 | line c-src/etags.c 2493 | ||
| 3155 | line perl-src/htlmify-cystic 37 | ||
| 3156 | line y-src/parse.y 87 | ||
| 3157 | lineCount php-src/lce_functions.php /^ function lineCount($entry)$/ | ||
| 3158 | linebuffer c-src/etags.c 239 | 2168 | linebuffer c-src/etags.c 239 |
| 3159 | linebuffer_init c-src/etags.c /^linebuffer_init (linebuffer *lbp)$/ | 2169 | linebuffer_init c-src/etags.c /^linebuffer_init (linebuffer *lbp)$/ |
| 3160 | linebuffer_setlen c-src/etags.c /^linebuffer_setlen (linebuffer *lbp, int toksize)$/ | 2170 | linebuffer_setlen c-src/etags.c /^linebuffer_setlen (linebuffer *lbp, int toksize)$/ |
| 2171 | lineCount php-src/lce_functions.php /^ function lineCount($entry)$/ | ||
| 2172 | line c-src/etags.c 2493 | ||
| 3161 | lineno c-src/emacs/src/lisp.h 3147 | 2173 | lineno c-src/emacs/src/lisp.h 3147 |
| 3162 | lineno c-src/etags.c 2506 | 2174 | lineno c-src/etags.c 2506 |
| 3163 | linenumber tex-src/texinfo.tex /^ \\def\\linenumber{\\the\\inputlineno:\\space}$/ | 2175 | linenumber tex-src/texinfo.tex /^ \\def\\linenumber{\\the\\inputlineno:\\space}$/ |
| 3164 | linenumber tex-src/texinfo.tex /^ \\let\\linenumber = \\empty % Non-3.0.$/ | 2176 | linenumber tex-src/texinfo.tex /^ \\let\\linenumber = \\empty % Non-3.0.$/ |
| 2177 | line perl-src/htlmify-cystic 37 | ||
| 3165 | linepos c-src/etags.c 2507 | 2178 | linepos c-src/etags.c 2507 |
| 3166 | linepos c-src/etags.c 2922 | 2179 | linepos c-src/etags.c 2922 |
| 2180 | line y-src/parse.y 87 | ||
| 3167 | links html-src/software.html /^Links to interesting software$/ | 2181 | links html-src/software.html /^Links to interesting software$/ |
| 3168 | lisp tex-src/texinfo.tex /^\\def\\lisp{\\aboveenvbreak$/ | 2182 | Lisp_Bits c-src/emacs/src/lisp.h 239 |
| 2183 | Lisp_Boolfwd c-src/emacs/src/lisp.h 2284 | ||
| 2184 | Lisp_Bool_Vector c-src/emacs/src/lisp.h 1384 | ||
| 2185 | Lisp_Buffer_Local_Value c-src/emacs/src/lisp.h 2334 | ||
| 2186 | Lisp_Buffer_Objfwd c-src/emacs/src/lisp.h 2302 | ||
| 2187 | Lisp_Char_Table c-src/emacs/src/lisp.h 1575 | ||
| 2188 | Lisp_Compiled c-src/emacs/src/lisp.h 2429 | ||
| 2189 | Lisp_Cons c-src/emacs/src/lisp.h 475 | ||
| 3169 | lisp_eval_depth c-src/emacs/src/lisp.h 3045 | 2190 | lisp_eval_depth c-src/emacs/src/lisp.h 3045 |
| 2191 | Lisp_Finalizer c-src/emacs/src/lisp.h 2186 | ||
| 2192 | Lisp_Float c-src/emacs/src/lisp.h 2391 | ||
| 2193 | Lisp_Float c-src/emacs/src/lisp.h 477 | ||
| 2194 | Lisp_Free c-src/emacs/src/lisp.h 2201 | ||
| 2195 | Lisp_functions c-src/etags.c /^Lisp_functions (FILE *inf)$/ | ||
| 2196 | Lisp_Fwd_Bool c-src/emacs/src/lisp.h 505 | ||
| 2197 | Lisp_Fwd_Buffer_Obj c-src/emacs/src/lisp.h 507 | ||
| 2198 | Lisp_Fwd c-src/emacs/src/lisp.h 2368 | ||
| 2199 | Lisp_Fwd_Int c-src/emacs/src/lisp.h 504 | ||
| 2200 | Lisp_Fwd_Kboard_Obj c-src/emacs/src/lisp.h 508 | ||
| 2201 | Lisp_Fwd_Obj c-src/emacs/src/lisp.h 506 | ||
| 2202 | Lisp_Fwd_Type c-src/emacs/src/lisp.h 502 | ||
| 2203 | Lisp_Hash_Table c-src/emacs/src/lisp.h 1823 | ||
| 2204 | lisp_h_check_cons_list c-src/emacs/src/lisp.h /^# define lisp_h_check_cons_list() ((void) 0)$/ | ||
| 3170 | lisp_h_CHECK_LIST_CONS c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_LIST_CONS(x, y) CHECK_TYPE (C/ | 2205 | lisp_h_CHECK_LIST_CONS c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_LIST_CONS(x, y) CHECK_TYPE (C/ |
| 3171 | lisp_h_CHECK_NUMBER c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_NUMBER(x) CHECK_TYPE (INTEGER/ | 2206 | lisp_h_CHECK_NUMBER c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_NUMBER(x) CHECK_TYPE (INTEGER/ |
| 3172 | lisp_h_CHECK_SYMBOL c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_SYMBOL(x) CHECK_TYPE (SYMBOLP/ | 2207 | lisp_h_CHECK_SYMBOL c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_SYMBOL(x) CHECK_TYPE (SYMBOLP/ |
| 3173 | lisp_h_CHECK_TYPE c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_TYPE(ok, predicate, x) \\$/ | 2208 | lisp_h_CHECK_TYPE c-src/emacs/src/lisp.h /^#define lisp_h_CHECK_TYPE(ok, predicate, x) \\$/ |
| 3174 | lisp_h_CONSP c-src/emacs/src/lisp.h /^#define lisp_h_CONSP(x) (XTYPE (x) == Lisp_Cons)$/ | 2209 | lisp_h_CONSP c-src/emacs/src/lisp.h /^#define lisp_h_CONSP(x) (XTYPE (x) == Lisp_Cons)$/ |
| 2210 | Lisp_help c-src/etags.c 591 | ||
| 3175 | lisp_h_EQ c-src/emacs/src/lisp.h /^#define lisp_h_EQ(x, y) (XLI (x) == XLI (y))$/ | 2211 | lisp_h_EQ c-src/emacs/src/lisp.h /^#define lisp_h_EQ(x, y) (XLI (x) == XLI (y))$/ |
| 3176 | lisp_h_FLOATP c-src/emacs/src/lisp.h /^#define lisp_h_FLOATP(x) (XTYPE (x) == Lisp_Float)/ | 2212 | lisp_h_FLOATP c-src/emacs/src/lisp.h /^#define lisp_h_FLOATP(x) (XTYPE (x) == Lisp_Float)/ |
| 3177 | lisp_h_INTEGERP c-src/emacs/src/lisp.h /^#define lisp_h_INTEGERP(x) ((XTYPE (x) & (Lisp_Int/ | 2213 | lisp_h_INTEGERP c-src/emacs/src/lisp.h /^#define lisp_h_INTEGERP(x) ((XTYPE (x) & (Lisp_Int/ |
| 2214 | lisp_h_make_number c-src/emacs/src/lisp.h /^# define lisp_h_make_number(n) \\$/ | ||
| 3178 | lisp_h_MARKERP c-src/emacs/src/lisp.h /^#define lisp_h_MARKERP(x) (MISCP (x) && XMISCTYPE / | 2215 | lisp_h_MARKERP c-src/emacs/src/lisp.h /^#define lisp_h_MARKERP(x) (MISCP (x) && XMISCTYPE / |
| 3179 | lisp_h_MISCP c-src/emacs/src/lisp.h /^#define lisp_h_MISCP(x) (XTYPE (x) == Lisp_Misc)$/ | 2216 | lisp_h_MISCP c-src/emacs/src/lisp.h /^#define lisp_h_MISCP(x) (XTYPE (x) == Lisp_Misc)$/ |
| 3180 | lisp_h_NILP c-src/emacs/src/lisp.h /^#define lisp_h_NILP(x) EQ (x, Qnil)$/ | 2217 | lisp_h_NILP c-src/emacs/src/lisp.h /^#define lisp_h_NILP(x) EQ (x, Qnil)$/ |
| 3181 | lisp_h_SET_SYMBOL_VAL c-src/emacs/src/lisp.h /^#define lisp_h_SET_SYMBOL_VAL(sym, v) \\$/ | 2218 | lisp_h_SET_SYMBOL_VAL c-src/emacs/src/lisp.h /^#define lisp_h_SET_SYMBOL_VAL(sym, v) \\$/ |
| 3182 | lisp_h_SYMBOLP c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOLP(x) (XTYPE (x) == Lisp_Symbo/ | ||
| 3183 | lisp_h_SYMBOL_CONSTANT_P c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOL_CONSTANT_P(sym) (XSYMBOL (sy/ | 2219 | lisp_h_SYMBOL_CONSTANT_P c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOL_CONSTANT_P(sym) (XSYMBOL (sy/ |
| 2220 | lisp_h_SYMBOLP c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOLP(x) (XTYPE (x) == Lisp_Symbo/ | ||
| 3184 | lisp_h_SYMBOL_VAL c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOL_VAL(sym) \\$/ | 2221 | lisp_h_SYMBOL_VAL c-src/emacs/src/lisp.h /^#define lisp_h_SYMBOL_VAL(sym) \\$/ |
| 3185 | lisp_h_VECTORLIKEP c-src/emacs/src/lisp.h /^#define lisp_h_VECTORLIKEP(x) (XTYPE (x) == Lisp_V/ | 2222 | lisp_h_VECTORLIKEP c-src/emacs/src/lisp.h /^#define lisp_h_VECTORLIKEP(x) (XTYPE (x) == Lisp_V/ |
| 3186 | lisp_h_XCAR c-src/emacs/src/lisp.h /^#define lisp_h_XCAR(c) XCONS (c)->car$/ | 2223 | lisp_h_XCAR c-src/emacs/src/lisp.h /^#define lisp_h_XCAR(c) XCONS (c)->car$/ |
| @@ -3188,18 +2225,64 @@ lisp_h_XCDR c-src/emacs/src/lisp.h /^#define lisp_h_XCDR(c) XCONS (c)->u.cdr$/ | |||
| 3188 | lisp_h_XCONS c-src/emacs/src/lisp.h /^#define lisp_h_XCONS(a) \\$/ | 2225 | lisp_h_XCONS c-src/emacs/src/lisp.h /^#define lisp_h_XCONS(a) \\$/ |
| 3189 | lisp_h_XFASTINT c-src/emacs/src/lisp.h /^# define lisp_h_XFASTINT(a) XINT (a)$/ | 2226 | lisp_h_XFASTINT c-src/emacs/src/lisp.h /^# define lisp_h_XFASTINT(a) XINT (a)$/ |
| 3190 | lisp_h_XHASH c-src/emacs/src/lisp.h /^#define lisp_h_XHASH(a) XUINT (a)$/ | 2227 | lisp_h_XHASH c-src/emacs/src/lisp.h /^#define lisp_h_XHASH(a) XUINT (a)$/ |
| 3191 | lisp_h_XIL c-src/emacs/src/lisp.h /^# define lisp_h_XIL(i) ((Lisp_Object) { i })$/ | ||
| 3192 | lisp_h_XIL c-src/emacs/src/lisp.h /^# define lisp_h_XIL(i) (i)$/ | 2228 | lisp_h_XIL c-src/emacs/src/lisp.h /^# define lisp_h_XIL(i) (i)$/ |
| 2229 | lisp_h_XIL c-src/emacs/src/lisp.h /^# define lisp_h_XIL(i) ((Lisp_Object) { i })$/ | ||
| 3193 | lisp_h_XINT c-src/emacs/src/lisp.h /^# define lisp_h_XINT(a) (XLI (a) >> INTTYPEBITS)$/ | 2230 | lisp_h_XINT c-src/emacs/src/lisp.h /^# define lisp_h_XINT(a) (XLI (a) >> INTTYPEBITS)$/ |
| 3194 | lisp_h_XLI c-src/emacs/src/lisp.h /^# define lisp_h_XLI(o) ((o).i)$/ | ||
| 3195 | lisp_h_XLI c-src/emacs/src/lisp.h /^# define lisp_h_XLI(o) (o)$/ | 2231 | lisp_h_XLI c-src/emacs/src/lisp.h /^# define lisp_h_XLI(o) (o)$/ |
| 2232 | lisp_h_XLI c-src/emacs/src/lisp.h /^# define lisp_h_XLI(o) ((o).i)$/ | ||
| 3196 | lisp_h_XPNTR c-src/emacs/src/lisp.h /^#define lisp_h_XPNTR(a) \\$/ | 2233 | lisp_h_XPNTR c-src/emacs/src/lisp.h /^#define lisp_h_XPNTR(a) \\$/ |
| 3197 | lisp_h_XSYMBOL c-src/emacs/src/lisp.h /^# define lisp_h_XSYMBOL(a) \\$/ | 2234 | lisp_h_XSYMBOL c-src/emacs/src/lisp.h /^# define lisp_h_XSYMBOL(a) \\$/ |
| 3198 | lisp_h_XTYPE c-src/emacs/src/lisp.h /^# define lisp_h_XTYPE(a) ((enum Lisp_Type) (XLI (a/ | 2235 | lisp_h_XTYPE c-src/emacs/src/lisp.h /^# define lisp_h_XTYPE(a) ((enum Lisp_Type) (XLI (a/ |
| 3199 | lisp_h_XUNTAG c-src/emacs/src/lisp.h /^# define lisp_h_XUNTAG(a, type) ((void *) (intptr_/ | 2236 | lisp_h_XUNTAG c-src/emacs/src/lisp.h /^# define lisp_h_XUNTAG(a, type) ((void *) (intptr_/ |
| 3200 | lisp_h_check_cons_list c-src/emacs/src/lisp.h /^# define lisp_h_check_cons_list() ((void) 0)$/ | 2237 | LISP_INITIALLY c-src/emacs/src/lisp.h /^#define LISP_INITIALLY(i) (i)$/ |
| 3201 | lisp_h_make_number c-src/emacs/src/lisp.h /^# define lisp_h_make_number(n) \\$/ | 2238 | LISP_INITIALLY c-src/emacs/src/lisp.h /^#define LISP_INITIALLY(i) {i}$/ |
| 2239 | LISP_INITIALLY_ZERO c-src/emacs/src/lisp.h 582 | ||
| 2240 | Lisp_Int0 c-src/emacs/src/lisp.h 461 | ||
| 2241 | Lisp_Int1 c-src/emacs/src/lisp.h 462 | ||
| 2242 | Lisp_Intfwd c-src/emacs/src/lisp.h 2274 | ||
| 2243 | Lisp_Kboard_Objfwd c-src/emacs/src/lisp.h 2362 | ||
| 2244 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^#define LISP_MACRO_DEFUN(name, type, argdecls, arg/ | ||
| 2245 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (CONSP, bool, (Lisp_Object x), (x/ | ||
| 2246 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (NILP, bool, (Lisp_Object x), (x)/ | ||
| 2247 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (SYMBOL_VAL, Lisp_Object, (struct/ | ||
| 2248 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XCAR, Lisp_Object, (Lisp_Object / | ||
| 2249 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XCONS, struct Lisp_Cons *, (Lisp/ | ||
| 2250 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XHASH, EMACS_INT, (Lisp_Object a/ | ||
| 2251 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XLI, EMACS_INT, (Lisp_Object o),/ | ||
| 2252 | LISP_MACRO_DEFUN c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN (XPNTR, void *, (Lisp_Object a), / | ||
| 2253 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^#define LISP_MACRO_DEFUN_VOID(name, argdecls, args/ | ||
| 2254 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (CHECK_LIST_CONS, (Lisp_Obje/ | ||
| 2255 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (CHECK_TYPE,$/ | ||
| 2256 | LISP_MACRO_DEFUN_VOID c-src/emacs/src/lisp.h /^LISP_MACRO_DEFUN_VOID (SET_SYMBOL_VAL,$/ | ||
| 2257 | Lisp_Marker c-src/emacs/src/lisp.h 1978 | ||
| 2258 | Lisp_Misc_Any c-src/emacs/src/lisp.h 1971 | ||
| 2259 | Lisp_Misc c-src/emacs/src/lisp.h 2212 | ||
| 2260 | Lisp_Misc c-src/emacs/src/lisp.h 458 | ||
| 2261 | Lisp_Misc_Finalizer c-src/emacs/src/lisp.h 491 | ||
| 2262 | Lisp_Misc_Float c-src/emacs/src/lisp.h 494 | ||
| 2263 | Lisp_Misc_Free c-src/emacs/src/lisp.h 487 | ||
| 2264 | Lisp_Misc_Limit c-src/emacs/src/lisp.h 496 | ||
| 2265 | Lisp_Misc_Marker c-src/emacs/src/lisp.h 488 | ||
| 2266 | Lisp_Misc_Overlay c-src/emacs/src/lisp.h 489 | ||
| 2267 | Lisp_Misc_Save_Value c-src/emacs/src/lisp.h 490 | ||
| 2268 | Lisp_Misc_Type c-src/emacs/src/lisp.h 485 | ||
| 2269 | Lisp_Object c-src/emacs/src/lisp.h 567 | ||
| 2270 | Lisp_Object c-src/emacs/src/lisp.h 577 | ||
| 2271 | Lisp_Objfwd c-src/emacs/src/lisp.h 2294 | ||
| 2272 | Lisp_Overlay c-src/emacs/src/lisp.h 2021 | ||
| 3202 | lisppar tex-src/texinfo.tex /^\\gdef\\lisppar{\\null\\endgraf}}$/ | 2273 | lisppar tex-src/texinfo.tex /^\\gdef\\lisppar{\\null\\endgraf}}$/ |
| 2274 | Lisp_Save_Type c-src/emacs/src/lisp.h 2064 | ||
| 2275 | Lisp_Save_Value c-src/emacs/src/lisp.h 2110 | ||
| 2276 | Lisp_String c-src/emacs/src/lisp.h 466 | ||
| 2277 | Lisp_Sub_Char_Table c-src/emacs/src/lisp.h 1606 | ||
| 2278 | Lisp_Subr c-src/emacs/src/lisp.h 1670 | ||
| 2279 | Lisp_suffixes c-src/etags.c 589 | ||
| 2280 | Lisp_Symbol c-src/emacs/src/lisp.h 454 | ||
| 2281 | Lisp_Symbol c-src/emacs/src/lisp.h 654 | ||
| 2282 | lisp tex-src/texinfo.tex /^\\def\\lisp{\\aboveenvbreak$/ | ||
| 2283 | Lisp_Type c-src/emacs/src/lisp.h 451 | ||
| 2284 | Lisp_Vector c-src/emacs/src/lisp.h 1369 | ||
| 2285 | Lisp_Vectorlike c-src/emacs/src/lisp.h 472 | ||
| 3203 | lispy_accent_codes c-src/emacs/src/keyboard.c 4634 | 2286 | lispy_accent_codes c-src/emacs/src/keyboard.c 4634 |
| 3204 | lispy_accent_keys c-src/emacs/src/keyboard.c 4741 | 2287 | lispy_accent_keys c-src/emacs/src/keyboard.c 4741 |
| 3205 | lispy_drag_n_drop_names c-src/emacs/src/keyboard.c 5181 | 2288 | lispy_drag_n_drop_names c-src/emacs/src/keyboard.c 5181 |
| @@ -3209,50 +2292,110 @@ lispy_kana_keys c-src/emacs/src/keyboard.c 5026 | |||
| 3209 | lispy_modifier_list c-src/emacs/src/keyboard.c /^lispy_modifier_list (int modifiers)$/ | 2292 | lispy_modifier_list c-src/emacs/src/keyboard.c /^lispy_modifier_list (int modifiers)$/ |
| 3210 | lispy_multimedia_keys c-src/emacs/src/keyboard.c 4962 | 2293 | lispy_multimedia_keys c-src/emacs/src/keyboard.c 4962 |
| 3211 | lispy_wheel_names c-src/emacs/src/keyboard.c 5174 | 2294 | lispy_wheel_names c-src/emacs/src/keyboard.c 5174 |
| 2295 | list2i c-src/emacs/src/lisp.h /^list2i (EMACS_INT x, EMACS_INT y)$/ | ||
| 2296 | list3i c-src/emacs/src/lisp.h /^list3i (EMACS_INT x, EMACS_INT y, EMACS_INT w)$/ | ||
| 2297 | list4i c-src/emacs/src/lisp.h /^list4i (EMACS_INT x, EMACS_INT y, EMACS_INT w, EMA/ | ||
| 2298 | LISTCONTENTSBUTTON objc-src/PackInsp.m 48 | ||
| 2299 | LISTCONTENTS objc-src/PackInsp.m 39 | ||
| 3212 | list c-src/emacs/src/gmalloc.c 186 | 2300 | list c-src/emacs/src/gmalloc.c 186 |
| 2301 | LISTDESCRIPTIONBUTTON objc-src/PackInsp.m 49 | ||
| 2302 | ListEdit pyt-src/server.py /^class ListEdit(Frame):$/ | ||
| 3213 | list merc-src/accumulator.m /^:- import_module list.$/ | 2303 | list merc-src/accumulator.m /^:- import_module list.$/ |
| 3214 | list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun list-tags (file &optional _next-match)$/ | 2304 | list-tags el-src/emacs/lisp/progmodes/etags.el /^(defun list-tags (file &optional _next-match)$/ |
| 3215 | list-tags-function el-src/emacs/lisp/progmodes/etags.el /^(defvar list-tags-function nil$/ | 2305 | list-tags-function el-src/emacs/lisp/progmodes/etags.el /^(defvar list-tags-function nil$/ |
| 3216 | list2i c-src/emacs/src/lisp.h /^list2i (EMACS_INT x, EMACS_INT y)$/ | ||
| 3217 | list3i c-src/emacs/src/lisp.h /^list3i (EMACS_INT x, EMACS_INT y, EMACS_INT w)$/ | ||
| 3218 | list4i c-src/emacs/src/lisp.h /^list4i (EMACS_INT x, EMACS_INT y, EMACS_INT w, EMA/ | ||
| 3219 | list_to_ord_set prol-src/ordsets.prolog /^list_to_ord_set(List, Set) :-$/ | 2306 | list_to_ord_set prol-src/ordsets.prolog /^list_to_ord_set(List, Set) :-$/ |
| 2307 | li tex-src/texinfo.tex /^\\let\\li = \\sf % Sometimes we call it \\li, not \\sf./ | ||
| 2308 | LL_Assert/p ada-src/2ataspri.adb /^ procedure LL_Assert (B : Boolean; M : String) i/ | ||
| 2309 | LL_Assert/p ada-src/2ataspri.ads /^ procedure LL_Assert (B : Boolean; M : String);$/ | ||
| 2310 | L_LE y-src/parse.c 25 | ||
| 2311 | LL_Task_Procedure_Access/t ada-src/2ataspri.ads /^ type LL_Task_Procedure_Access is access procedu/ | ||
| 2312 | LL_Task_Procedure_Access/t ada-src/etags-test-for.ada /^ type LL_Task_Procedure_Access is access procedu/ | ||
| 2313 | LL_Wrapper/p ada-src/2ataspri.adb /^ procedure LL_Wrapper (T : TCB_Ptr);$/ | ||
| 2314 | LL_Wrapper/p ada-src/2ataspri.adb /^ procedure LL_Wrapper (T : TCB_Ptr) is$/ | ||
| 2315 | LL_Wrapper/p ada-src/etags-test-for.ada /^ procedure LL_Wrapper (T : TCB_Ptr);$/ | ||
| 2316 | L_NE y-src/parse.c 26 | ||
| 3220 | lno c-src/etags.c 223 | 2317 | lno c-src/etags.c 223 |
| 3221 | load objc-src/PackInsp.m /^-load$/ | 2318 | /lnormalize ps-src/rfc1245.ps /^\/lnormalize { $/ |
| 3222 | loadContentsOf objc-src/PackInsp.m /^-loadContentsOf:(const char *)type inTable:(HashTa/ | 2319 | loadContentsOf objc-src/PackInsp.m /^-loadContentsOf:(const char *)type inTable:(HashTa/ |
| 3223 | loadImage objc-src/PackInsp.m /^-loadImage$/ | 2320 | loadImage objc-src/PackInsp.m /^-loadImage$/ |
| 3224 | loadKeyValuesFrom objc-src/PackInsp.m /^-loadKeyValuesFrom:(const char *)type inTable:(Has/ | 2321 | loadKeyValuesFrom objc-src/PackInsp.m /^-loadKeyValuesFrom:(const char *)type inTable:(Has/ |
| 2322 | load objc-src/PackInsp.m /^-load$/ | ||
| 3225 | loadPORManager php-src/lce_functions.php /^ function &loadPORManager()$/ | 2323 | loadPORManager php-src/lce_functions.php /^ function &loadPORManager()$/ |
| 3226 | local_if_set c-src/emacs/src/lisp.h 2338 | 2324 | local_if_set c-src/emacs/src/lisp.h 2338 |
| 3227 | location cp-src/clheir.hpp /^ location() { }$/ | 2325 | LOCALIZE_ARCH objc-src/PackInsp.m /^#define LOCALIZE_ARCH(s) NXLoadLocalizedStringFrom/ |
| 2326 | LOCALIZE objc-src/PackInsp.m /^#define LOCALIZE(s) NXLoadLocalizedStringFromTabl/ | ||
| 2327 | Locate pas-src/common.pas /^function Locate; (*($/ | ||
| 3228 | location cp-src/clheir.hpp 33 | 2328 | location cp-src/clheir.hpp 33 |
| 2329 | location cp-src/clheir.hpp /^ location() { }$/ | ||
| 2330 | LOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define LOCK_ALIGNED_BLOCKS() \\$/ | ||
| 2331 | LOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define LOCK_ALIGNED_BLOCKS()$/ | ||
| 2332 | LOCK c-src/emacs/src/gmalloc.c /^#define LOCK() \\$/ | ||
| 2333 | LOCK c-src/emacs/src/gmalloc.c /^#define LOCK()$/ | ||
| 2334 | Lock/t ada-src/2ataspri.ads /^ type Lock is$/ | ||
| 2335 | Lock/t ada-src/2ataspri.ads /^ type Lock is private;$/ | ||
| 3229 | loggingall tex-src/texinfo.tex /^\\def\\loggingall{\\tracingcommands2 \\tracingstats2 $/ | 2336 | loggingall tex-src/texinfo.tex /^\\def\\loggingall{\\tracingcommands2 \\tracingstats2 $/ |
| 2337 | LONG_TYPE_SIZE y-src/cccp.y 95 | ||
| 2338 | LOOKING_AT c-src/etags.c /^#define LOOKING_AT(cp, kw) \/* kw is the keyword, / | ||
| 2339 | LOOKING_AT_NOCASE c-src/etags.c /^#define LOOKING_AT_NOCASE(cp, kw) \/* the keyword i/ | ||
| 3230 | look tex-src/texinfo.tex /^\\def\\kbd#1{\\def\\look{#1}\\expandafter\\kbdfoo\\look??/ | 2340 | look tex-src/texinfo.tex /^\\def\\kbd#1{\\def\\look{#1}\\expandafter\\kbdfoo\\look??/ |
| 3231 | lookup y-src/cccp.y /^lookup (name, len, hash)$/ | ||
| 3232 | lookup_call merc-src/accumulator.m /^:- pred lookup_call(accu_goal_store::in, accu_goal/ | 2341 | lookup_call merc-src/accumulator.m /^:- pred lookup_call(accu_goal_store::in, accu_goal/ |
| 2342 | LOOKUP objc-src/PackInsp.m 176 | ||
| 2343 | LOOKUP objc-src/PackInsp.m /^#define LOOKUP(key, notfound) ([table isKey:key] ?/ | ||
| 2344 | lookup y-src/cccp.y /^lookup (name, len, hash)$/ | ||
| 2345 | LOOP_ON_INPUT_LINES c-src/etags.c /^#define LOOP_ON_INPUT_LINES(file_pointer, line_buf/ | ||
| 3233 | losespace tex-src/texinfo.tex /^\\def\\losespace #1{#1}$/ | 2346 | losespace tex-src/texinfo.tex /^\\def\\losespace #1{#1}$/ |
| 3234 | lowcase c-src/etags.c /^#define lowcase(c) tolower (CHAR (c))$/ | 2347 | lowcase c-src/etags.c /^#define lowcase(c) tolower (CHAR (c))$/ |
| 3235 | lowercaseenumerate tex-src/texinfo.tex /^\\def\\lowercaseenumerate{%$/ | 2348 | lowercaseenumerate tex-src/texinfo.tex /^\\def\\lowercaseenumerate{%$/ |
| 2349 | LowerCaseNmStr pas-src/common.pas /^function LowerCaseNmStr; (*($/ | ||
| 2350 | /L ps-src/rfc1245.ps /^\/L { $/ | ||
| 2351 | /L ps-src/rfc1245.ps /^\/L \/M \/N \/O \/P \/Q \/R \/S \/T \/U \/V \/W \/X \/Y \/Z \/brac/ | ||
| 2352 | L_RANGE y-src/parse.c 11 | ||
| 2353 | LSH y-src/cccp.c 16 | ||
| 2354 | l tex-src/texinfo.tex /^\\def\\l#1{{\\li #1}\\null} % $/ | ||
| 2355 | l tex-src/texinfo.tex /^\\let\\b=\\ptexb \\let\\c=\\ptexc \\let\\i=\\ptexi \\let\\t=\\/ | ||
| 2356 | L tex-src/texinfo.tex /^\\let\\L=\\ptexL$/ | ||
| 2357 | LTGT cp-src/MDiagArray2.h 144 | ||
| 2358 | LTGT cp-src/MDiagArray2.h 35 | ||
| 2359 | LTGT cp-src/MDiagArray2.h 39 | ||
| 2360 | LTGT cp-src/MDiagArray2.h 42 | ||
| 2361 | Lua_functions c-src/etags.c /^Lua_functions (FILE *inf)$/ | ||
| 2362 | Lua_help c-src/etags.c 600 | ||
| 2363 | LUASRC make-src/Makefile /^LUASRC=allegro.lua$/ | ||
| 2364 | Lua_suffixes c-src/etags.c 598 | ||
| 3236 | lucid_event_type_list_p c-src/emacs/src/keyboard.c /^lucid_event_type_list_p (Lisp_Object object)$/ | 2365 | lucid_event_type_list_p c-src/emacs/src/keyboard.c /^lucid_event_type_list_p (Lisp_Object object)$/ |
| 2366 | L_VAR y-src/parse.c 12 | ||
| 3237 | lvvmode tex-src/texinfo.tex /^\\def\\lvvmode{\\vbox to 0pt{}}$/ | 2367 | lvvmode tex-src/texinfo.tex /^\\def\\lvvmode{\\vbox to 0pt{}}$/ |
| 3238 | mabort c-src/emacs/src/gmalloc.c /^mabort (enum mcheck_status status)$/ | 2368 | mabort c-src/emacs/src/gmalloc.c /^mabort (enum mcheck_status status)$/ |
| 2369 | macheader tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ | ||
| 3239 | mach_host_self c-src/machsyscalls.h /^SYSCALL (mach_host_self, -29,$/ | 2370 | mach_host_self c-src/machsyscalls.h /^SYSCALL (mach_host_self, -29,$/ |
| 2371 | Machine_Exceptions/t ada-src/2ataspri.ads /^ type Machine_Exceptions is new Interfaces.C.POS/ | ||
| 2372 | Machin_T/b ada-src/waroquiers.ada /^ protected body Machin_T is$/ | ||
| 2373 | Machin_T/t ada-src/etags-test-for.ada /^ protected Machin_T is$/ | ||
| 2374 | Machin_T/t ada-src/etags-test-for.ada /^ protected type Machin_T is$/ | ||
| 2375 | Machin_T/t ada-src/waroquiers.ada /^ protected type Machin_T is$/ | ||
| 3240 | mach_msg_trap c-src/machsyscalls.h /^SYSCALL (mach_msg_trap, -25,$/ | 2376 | mach_msg_trap c-src/machsyscalls.h /^SYSCALL (mach_msg_trap, -25,$/ |
| 3241 | mach_reply_port c-src/machsyscalls.h /^SYSCALL (mach_reply_port, -26,$/ | 2377 | mach_reply_port c-src/machsyscalls.h /^SYSCALL (mach_reply_port, -26,$/ |
| 3242 | mach_task_self c-src/machsyscalls.h /^SYSCALL (mach_task_self, -28,$/ | 2378 | mach_task_self c-src/machsyscalls.h /^SYSCALL (mach_task_self, -28,$/ |
| 3243 | mach_thread_self c-src/machsyscalls.h /^SYSCALL (mach_thread_self, -27,$/ | 2379 | mach_thread_self c-src/machsyscalls.h /^SYSCALL (mach_thread_self, -27,$/ |
| 3244 | macheader tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ | ||
| 3245 | macx\defmacheader tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ | 2380 | macx\defmacheader tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ |
| 3246 | magic c-src/emacs/src/gmalloc.c 1868 | 2381 | MAGENTA cp-src/screen.hpp 17 |
| 2382 | MAGICBYTE c-src/emacs/src/gmalloc.c 1864 | ||
| 2383 | magic c-src/emacs/src/gmalloc.c 1871 | ||
| 2384 | MAGICFREE c-src/emacs/src/gmalloc.c 1863 | ||
| 2385 | MAGICWORD c-src/emacs/src/gmalloc.c 1862 | ||
| 3247 | mainmagstep tex-src/texinfo.tex /^\\let\\mainmagstep=\\magstep1$/ | 2386 | mainmagstep tex-src/texinfo.tex /^\\let\\mainmagstep=\\magstep1$/ |
| 3248 | mainmagstep tex-src/texinfo.tex /^\\let\\mainmagstep=\\magstephalf$/ | 2387 | mainmagstep tex-src/texinfo.tex /^\\let\\mainmagstep=\\magstephalf$/ |
| 3249 | maintaining.info make-src/Makefile /^maintaining.info: maintaining.texi$/ | 2388 | maintaining.info make-src/Makefile /^maintaining.info: maintaining.texi$/ |
| 3250 | majorheading tex-src/texinfo.tex /^\\def\\majorheading{\\parsearg\\majorheadingzzz}$/ | 2389 | majorheading tex-src/texinfo.tex /^\\def\\majorheading{\\parsearg\\majorheadingzzz}$/ |
| 3251 | majorheadingzzz tex-src/texinfo.tex /^\\def\\majorheadingzzz #1{%$/ | 2390 | majorheadingzzz tex-src/texinfo.tex /^\\def\\majorheadingzzz #1{%$/ |
| 3252 | make-abbrev-table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/ | 2391 | make-abbrev-table c-src/abbrev.c /^DEFUN ("make-abbrev-table", Fmake_abbrev_table, Sm/ |
| 3253 | make_C_tag c-src/etags.c /^make_C_tag (bool isfun)$/ | ||
| 3254 | make_coor prol-src/natded.prolog /^make_coor(s(_),Alpha,Sem1,Sem2,Alpha@Sem1@Sem2).$/ | 2392 | make_coor prol-src/natded.prolog /^make_coor(s(_),Alpha,Sem1,Sem2,Alpha@Sem1@Sem2).$/ |
| 2393 | make_C_tag c-src/etags.c /^make_C_tag (bool isfun)$/ | ||
| 3255 | make_ctrl_char c-src/emacs/src/keyboard.c /^make_ctrl_char (int c)$/ | 2394 | make_ctrl_char c-src/emacs/src/keyboard.c /^make_ctrl_char (int c)$/ |
| 2395 | MakeDispose pyt-src/server.py /^ def MakeDispose(self):$/ | ||
| 2396 | Makefile_filenames c-src/etags.c 603 | ||
| 2397 | Makefile_help c-src/etags.c 605 | ||
| 2398 | Makefile_targets c-src/etags.c /^Makefile_targets (FILE *inf)$/ | ||
| 3256 | make_fixnum_or_float c-src/emacs/src/lisp.h /^#define make_fixnum_or_float(val) \\$/ | 2399 | make_fixnum_or_float c-src/emacs/src/lisp.h /^#define make_fixnum_or_float(val) \\$/ |
| 3257 | make_formatted_string c-src/emacs/src/lisp.h /^extern Lisp_Object make_formatted_string (char *, / | 2400 | make_formatted_string c-src/emacs/src/lisp.h /^extern Lisp_Object make_formatted_string (char *, / |
| 3258 | make_lisp_ptr c-src/emacs/src/lisp.h /^make_lisp_ptr (void *ptr, enum Lisp_Type type)$/ | 2401 | make_lisp_ptr c-src/emacs/src/lisp.h /^make_lisp_ptr (void *ptr, enum Lisp_Type type)$/ |
| @@ -3263,108 +2406,182 @@ make_lispy_focus_out c-src/emacs/src/keyboard.c /^make_lispy_focus_out (Lisp_Obj | |||
| 3263 | make_lispy_movement c-src/emacs/src/keyboard.c /^make_lispy_movement (struct frame *frame, Lisp_Obj/ | 2406 | make_lispy_movement c-src/emacs/src/keyboard.c /^make_lispy_movement (struct frame *frame, Lisp_Obj/ |
| 3264 | make_lispy_position c-src/emacs/src/keyboard.c /^make_lispy_position (struct frame *f, Lisp_Object / | 2407 | make_lispy_position c-src/emacs/src/keyboard.c /^make_lispy_position (struct frame *f, Lisp_Object / |
| 3265 | make_lispy_switch_frame c-src/emacs/src/keyboard.c /^make_lispy_switch_frame (Lisp_Object frame)$/ | 2408 | make_lispy_switch_frame c-src/emacs/src/keyboard.c /^make_lispy_switch_frame (Lisp_Object frame)$/ |
| 2409 | MAKE make-src/Makefile /^MAKE:=$(MAKE) --no-print-directory$/ | ||
| 3266 | make_number c-src/emacs/src/lisp.h /^# define make_number(n) lisp_h_make_number (n)$/ | 2410 | make_number c-src/emacs/src/lisp.h /^# define make_number(n) lisp_h_make_number (n)$/ |
| 3267 | make_pointer_integer c-src/emacs/src/lisp.h /^make_pointer_integer (void *p)$/ | 2411 | make_pointer_integer c-src/emacs/src/lisp.h /^make_pointer_integer (void *p)$/ |
| 3268 | make_scroll_bar_position c-src/emacs/src/keyboard.c /^make_scroll_bar_position (struct input_event *ev, / | 2412 | make_scroll_bar_position c-src/emacs/src/keyboard.c /^make_scroll_bar_position (struct input_event *ev, / |
| 2413 | MakeSitelist pyt-src/server.py /^ def MakeSitelist(self, master):$/ | ||
| 2414 | MAKESRC make-src/Makefile /^MAKESRC=Makefile$/ | ||
| 3269 | make_tag c-src/etags.c /^make_tag (const char *name, \/* tag name, or NULL / | 2415 | make_tag c-src/etags.c /^make_tag (const char *name, \/* tag name, or NULL / |
| 3270 | make_uninit_sub_char_table c-src/emacs/src/lisp.h /^make_uninit_sub_char_table (int depth, int min_cha/ | 2416 | make_uninit_sub_char_table c-src/emacs/src/lisp.h /^make_uninit_sub_char_table (int depth, int min_cha/ |
| 3271 | make_uninit_vector c-src/emacs/src/lisp.h /^make_uninit_vector (ptrdiff_t size)$/ | 2417 | make_uninit_vector c-src/emacs/src/lisp.h /^make_uninit_vector (ptrdiff_t size)$/ |
| 3272 | malloc c-src/emacs/src/gmalloc.c /^extern void *malloc (size_t size) ATTRIBUTE_MALLOC/ | ||
| 3273 | malloc c-src/emacs/src/gmalloc.c /^malloc (size_t size)$/ | ||
| 3274 | malloc c-src/emacs/src/gmalloc.c 1719 | ||
| 3275 | malloc c-src/emacs/src/gmalloc.c 64 | ||
| 3276 | malloc c-src/emacs/src/gmalloc.c 68 | ||
| 3277 | malloc_atfork_handler_child c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_child (void)$/ | 2418 | malloc_atfork_handler_child c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_child (void)$/ |
| 3278 | malloc_atfork_handler_parent c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_parent (void)$/ | 2419 | malloc_atfork_handler_parent c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_parent (void)$/ |
| 3279 | malloc_atfork_handler_prepare c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_prepare (void)$/ | 2420 | malloc_atfork_handler_prepare c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_prepare (void)$/ |
| 2421 | malloc c-src/emacs/src/gmalloc.c 1722 | ||
| 2422 | malloc c-src/emacs/src/gmalloc.c 64 | ||
| 2423 | malloc c-src/emacs/src/gmalloc.c 68 | ||
| 2424 | malloc c-src/emacs/src/gmalloc.c /^extern void *malloc (size_t size) ATTRIBUTE_MALLOC/ | ||
| 2425 | _malloc c-src/emacs/src/gmalloc.c /^_malloc (size_t size)$/ | ||
| 2426 | malloc c-src/emacs/src/gmalloc.c /^malloc (size_t size)$/ | ||
| 3280 | malloc_enable_thread c-src/emacs/src/gmalloc.c /^malloc_enable_thread (void)$/ | 2427 | malloc_enable_thread c-src/emacs/src/gmalloc.c /^malloc_enable_thread (void)$/ |
| 2428 | __malloc_extra_blocks c-src/emacs/src/gmalloc.c 382 | ||
| 2429 | MALLOCFLOOD c-src/emacs/src/gmalloc.c 1865 | ||
| 2430 | mallochook c-src/emacs/src/gmalloc.c /^mallochook (size_t size)$/ | ||
| 3281 | malloc_info c-src/emacs/src/gmalloc.c 167 | 2431 | malloc_info c-src/emacs/src/gmalloc.c 167 |
| 3282 | malloc_initialize_1 c-src/emacs/src/gmalloc.c /^malloc_initialize_1 (void)$/ | 2432 | malloc_initialize_1 c-src/emacs/src/gmalloc.c /^malloc_initialize_1 (void)$/ |
| 3283 | mallochook c-src/emacs/src/gmalloc.c /^mallochook (size_t size)$/ | 2433 | __malloc_initialize c-src/emacs/src/gmalloc.c /^__malloc_initialize (void)$/ |
| 2434 | __malloc_initialized c-src/emacs/src/gmalloc.c 380 | ||
| 2435 | _malloc_internal c-src/emacs/src/gmalloc.c /^_malloc_internal (size_t size)$/ | ||
| 2436 | _malloc_internal_nolock c-src/emacs/src/gmalloc.c /^_malloc_internal_nolock (size_t size)$/ | ||
| 2437 | _malloc_mutex c-src/emacs/src/gmalloc.c 518 | ||
| 2438 | _malloc_thread_enabled_p c-src/emacs/src/gmalloc.c 520 | ||
| 3284 | man manpage make-src/Makefile /^man manpage: etags.1.man$/ | 2439 | man manpage make-src/Makefile /^man manpage: etags.1.man$/ |
| 2440 | /manualpapersize ps-src/rfc1245.ps /^\/manualpapersize {$/ | ||
| 2441 | MANY c-src/emacs/src/lisp.h 2833 | ||
| 3285 | mao c-src/h.h 101 | 2442 | mao c-src/h.h 101 |
| 3286 | map c-src/emacs/src/keyboard.c 8748 | 2443 | map c-src/emacs/src/keyboard.c 8748 |
| 3287 | map merc-src/accumulator.m /^:- import_module map.$/ | 2444 | map merc-src/accumulator.m /^:- import_module map.$/ |
| 3288 | map_word prol-src/natded.prolog /^map_word([[_]|Ws],Exp):-$/ | ||
| 3289 | mapping html-src/algrthms.html /^Mapping the Channel Symbols$/ | 2445 | mapping html-src/algrthms.html /^Mapping the Channel Symbols$/ |
| 3290 | mapsyn prol-src/natded.prolog /^mapsyn(A\/B,AM\/BM):-$/ | 2446 | mapsyn prol-src/natded.prolog /^mapsyn(A\/B,AM\/BM):-$/ |
| 2447 | map_word prol-src/natded.prolog /^map_word([[_]|Ws],Exp):-$/ | ||
| 2448 | MARKERP c-src/emacs/src/lisp.h /^# define MARKERP(x) lisp_h_MARKERP (x)$/ | ||
| 3291 | mark_kboards c-src/emacs/src/keyboard.c /^mark_kboards (void)$/ | 2449 | mark_kboards c-src/emacs/src/keyboard.c /^mark_kboards (void)$/ |
| 3292 | math tex-src/texinfo.tex /^\\def\\math#1{\\implicitmath #1\\implicitmath}$/ | 2450 | math tex-src/texinfo.tex /^\\def\\math#1{\\implicitmath #1\\implicitmath}$/ |
| 3293 | max c-src/emacs/src/lisp.h /^#define max(a, b) ((a) > (b) ? (a) : (b))$/ | 2451 | MAX_ALLOCA c-src/emacs/src/lisp.h 4556 |
| 3294 | max c-src/emacs/src/lisp.h 58 | 2452 | max_args c-src/emacs/src/lisp.h 1686 |
| 2453 | maxargs c-src/emacs/src/lisp.h 2831 | ||
| 3295 | max c.c /^__attribute__ ((always_inline)) max (int a, int b)/ | 2454 | max c.c /^__attribute__ ((always_inline)) max (int a, int b)/ |
| 3296 | max c.c /^max (int a, int b)$/ | 2455 | max c.c /^max (int a, int b)$/ |
| 3297 | max cp-src/conway.cpp /^#define max(x,y) ((x > y) ? x : y)$/ | 2456 | max cp-src/conway.cpp /^#define max(x,y) ((x > y) ? x : y)$/ |
| 3298 | max_args c-src/emacs/src/lisp.h 1686 | 2457 | max c-src/emacs/src/lisp.h 58 |
| 2458 | max c-src/emacs/src/lisp.h /^#define max(a, b) ((a) > (b) ? (a) : (b))$/ | ||
| 2459 | MAX_ENCODED_BYTES c-src/emacs/src/keyboard.c 2254 | ||
| 2460 | MAX_HASH_VALUE c-src/etags.c 2329 | ||
| 3299 | max_num_directions cp-src/clheir.hpp 31 | 2461 | max_num_directions cp-src/clheir.hpp 31 |
| 3300 | max_num_generic_objects cp-src/clheir.cpp 9 | 2462 | max_num_generic_objects cp-src/clheir.cpp 9 |
| 3301 | maxargs c-src/emacs/src/lisp.h 2831 | 2463 | MAXPATHLEN c-src/etags.c 115 |
| 3302 | maybe merc-src/accumulator.m /^:- import_module maybe.$/ | 2464 | /max ps-src/rfc1245.ps /^\/max {2 copy lt {exch} if pop} bind def$/ |
| 2465 | MAX_WORD_LENGTH c-src/etags.c 2327 | ||
| 3303 | maybe_gc c-src/emacs/src/lisp.h /^maybe_gc (void)$/ | 2466 | maybe_gc c-src/emacs/src/lisp.h /^maybe_gc (void)$/ |
| 2467 | maybe merc-src/accumulator.m /^:- import_module maybe.$/ | ||
| 2468 | MAYBEREL y-src/parse.y /^#define MAYBEREL(p) (*(p)=='[' && (isdigit((p)[1])/ | ||
| 2469 | MBYTES objc-src/PackInsp.m 59 | ||
| 2470 | Mcccp y-src/cccp.y /^main ()$/ | ||
| 2471 | Mc cp-src/c.C /^int main (void) { my_function0(0); my_function1(1)/ | ||
| 3304 | mcCSC cp-src/c.C 6 | 2472 | mcCSC cp-src/c.C 6 |
| 3305 | mcheck c-src/emacs/src/gmalloc.c /^mcheck (void (*func) (enum mcheck_status))$/ | 2473 | mcheck c-src/emacs/src/gmalloc.c /^mcheck (void (*func) (enum mcheck_status))$/ |
| 2474 | MCHECK_DISABLED c-src/emacs/src/gmalloc.c 285 | ||
| 2475 | MCHECK_FREE c-src/emacs/src/gmalloc.c 287 | ||
| 2476 | MCHECK_HEAD c-src/emacs/src/gmalloc.c 288 | ||
| 2477 | MCHECK_OK c-src/emacs/src/gmalloc.c 286 | ||
| 3306 | mcheck_status c-src/emacs/src/gmalloc.c 283 | 2478 | mcheck_status c-src/emacs/src/gmalloc.c 283 |
| 3307 | mcheck_used c-src/emacs/src/gmalloc.c 2017 | 2479 | MCHECK_TAIL c-src/emacs/src/gmalloc.c 289 |
| 2480 | mcheck_used c-src/emacs/src/gmalloc.c 2020 | ||
| 2481 | Mconway.cpp cp-src/conway.cpp /^void main(void)$/ | ||
| 3308 | mdbcomp merc-src/accumulator.m /^:- import_module mdbcomp.$/ | 2482 | mdbcomp merc-src/accumulator.m /^:- import_module mdbcomp.$/ |
| 3309 | me22b lua-src/test.lua /^ local function test.me22b (one)$/ | 2483 | MDiagArray2 cp-src/MDiagArray2.h 78 |
| 2484 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const Array<T>& a) : DiagArray2<T> / | ||
| 2485 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const DiagArray2<T>& a) : DiagArray/ | ||
| 2486 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (const MDiagArray2<T>& a) : DiagArra/ | ||
| 2487 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (int r, int c, const T& val) : DiagA/ | ||
| 2488 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (int r, int c) : DiagArray2<T> (r, c/ | ||
| 2489 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (T *d, int r, int c) : DiagArray2<T>/ | ||
| 2490 | ~MDiagArray2 cp-src/MDiagArray2.h /^ ~MDiagArray2 (void) { }$/ | ||
| 2491 | MDiagArray2 cp-src/MDiagArray2.h /^ MDiagArray2 (void) : DiagArray2<T> () { }$/ | ||
| 3310 | me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ | 2492 | me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ |
| 2493 | me22b lua-src/test.lua /^ local function test.me22b (one)$/ | ||
| 3311 | memalign c-src/emacs/src/gmalloc.c /^memalign (size_t alignment, size_t size)$/ | 2494 | memalign c-src/emacs/src/gmalloc.c /^memalign (size_t alignment, size_t size)$/ |
| 3312 | member prol-src/natded.prolog /^member(X,[X|_]).$/ | ||
| 3313 | member_lessthan_goalid merc-src/accumulator.m /^:- pred member_lessthan_goalid(accu_goal_store::in/ | 2495 | member_lessthan_goalid merc-src/accumulator.m /^:- pred member_lessthan_goalid(accu_goal_store::in/ |
| 2496 | member prol-src/natded.prolog /^member(X,[X|_]).$/ | ||
| 3314 | memclear c-src/emacs/src/lisp.h /^memclear (void *p, ptrdiff_t nbytes)$/ | 2497 | memclear c-src/emacs/src/lisp.h /^memclear (void *p, ptrdiff_t nbytes)$/ |
| 3315 | menu tex-src/texinfo.tex /^\\long\\def\\menu #1\\end menu{}$/ | ||
| 3316 | menu_bar_item c-src/emacs/src/keyboard.c /^menu_bar_item (Lisp_Object key, Lisp_Object item, / | 2498 | menu_bar_item c-src/emacs/src/keyboard.c /^menu_bar_item (Lisp_Object key, Lisp_Object item, / |
| 3317 | menu_bar_items c-src/emacs/src/keyboard.c /^menu_bar_items (Lisp_Object old)$/ | 2499 | menu_bar_items c-src/emacs/src/keyboard.c /^menu_bar_items (Lisp_Object old)$/ |
| 3318 | menu_bar_items_index c-src/emacs/src/keyboard.c 7369 | 2500 | menu_bar_items_index c-src/emacs/src/keyboard.c 7369 |
| 3319 | menu_bar_items_vector c-src/emacs/src/keyboard.c 7368 | 2501 | menu_bar_items_vector c-src/emacs/src/keyboard.c 7368 |
| 3320 | menu_bar_one_keymap_changed_items c-src/emacs/src/keyboard.c 7363 | 2502 | menu_bar_one_keymap_changed_items c-src/emacs/src/keyboard.c 7363 |
| 3321 | menu_item_eval_property c-src/emacs/src/keyboard.c /^menu_item_eval_property (Lisp_Object sexpr)$/ | ||
| 3322 | menu_item_eval_property_1 c-src/emacs/src/keyboard.c /^menu_item_eval_property_1 (Lisp_Object arg)$/ | 2503 | menu_item_eval_property_1 c-src/emacs/src/keyboard.c /^menu_item_eval_property_1 (Lisp_Object arg)$/ |
| 2504 | menu_item_eval_property c-src/emacs/src/keyboard.c /^menu_item_eval_property (Lisp_Object sexpr)$/ | ||
| 3323 | menu_separator_name_p c-src/emacs/src/keyboard.c /^menu_separator_name_p (const char *label)$/ | 2505 | menu_separator_name_p c-src/emacs/src/keyboard.c /^menu_separator_name_p (const char *label)$/ |
| 2506 | menu tex-src/texinfo.tex /^\\long\\def\\menu #1\\end menu{}$/ | ||
| 2507 | Metags c-src/etags.c /^main (int argc, char **argv)$/ | ||
| 3324 | metasource c-src/etags.c 198 | 2508 | metasource c-src/etags.c 198 |
| 3325 | methodheader tex-src/texinfo.tex /^\\def\\defmethod{\\defmethparsebody\\Edefmethod\\defmet/ | 2509 | methodheader tex-src/texinfo.tex /^\\def\\defmethod{\\defmethparsebody\\Edefmethod\\defmet/ |
| 3326 | methodx\defmethodheader tex-src/texinfo.tex /^\\def\\defmethod{\\defmethparsebody\\Edefmethod\\defmet/ | 2510 | methodx\defmethodheader tex-src/texinfo.tex /^\\def\\defmethod{\\defmethparsebody\\Edefmethod\\defmet/ |
| 3327 | methparsebody\Edeffn tex-src/texinfo.tex /^\\def\\deffn{\\defmethparsebody\\Edeffn\\deffnx\\deffnhe/ | 2511 | methparsebody\Edeffn tex-src/texinfo.tex /^\\def\\deffn{\\defmethparsebody\\Edeffn\\deffnx\\deffnhe/ |
| 3328 | methparsebody\Edefmethod tex-src/texinfo.tex /^\\def\\defmethod{\\defmethparsebody\\Edefmethod\\defmet/ | 2512 | methparsebody\Edefmethod tex-src/texinfo.tex /^\\def\\defmethod{\\defmethparsebody\\Edefmethod\\defmet/ |
| 3329 | methparsebody\Edeftypefn tex-src/texinfo.tex /^\\def\\deftypefn{\\defmethparsebody\\Edeftypefn\\deftyp/ | 2513 | methparsebody\Edeftypefn tex-src/texinfo.tex /^\\def\\deftypefn{\\defmethparsebody\\Edeftypefn\\deftyp/ |
| 3330 | min c-src/emacs/src/gmalloc.c /^#define min(a, b) ((a) < (b) ? (a) : (b))$/ | 2514 | Mfail cp-src/fail.C /^main()$/ |
| 3331 | min c-src/emacs/src/lisp.h /^#define min(a, b) ((a) < (b) ? (a) : (b))$/ | ||
| 3332 | min c-src/emacs/src/lisp.h 57 | ||
| 3333 | min cp-src/conway.cpp /^#define min(x,y) ((x > y) ? y : x)$/ | ||
| 3334 | min_args c-src/emacs/src/lisp.h 1686 | 2515 | min_args c-src/emacs/src/lisp.h 1686 |
| 3335 | min_char c-src/emacs/src/lisp.h 1621 | 2516 | min_char c-src/emacs/src/lisp.h 1621 |
| 2517 | min cp-src/conway.cpp /^#define min(x,y) ((x > y) ? y : x)$/ | ||
| 2518 | min c-src/emacs/src/gmalloc.c /^#define min(a, b) ((a) < (b) ? (a) : (b))$/ | ||
| 2519 | min c-src/emacs/src/lisp.h 57 | ||
| 2520 | min c-src/emacs/src/lisp.h /^#define min(a, b) ((a) < (b) ? (a) : (b))$/ | ||
| 2521 | MIN_HASH_VALUE c-src/etags.c 2328 | ||
| 2522 | /min ps-src/rfc1245.ps /^\/min {2 copy gt {exch} if pop} bind def$/ | ||
| 3336 | minus cp-src/functions.cpp /^void Date::minus ( int days , int month , int year/ | 2523 | minus cp-src/functions.cpp /^void Date::minus ( int days , int month , int year/ |
| 3337 | minus tex-src/texinfo.tex /^\\def\\minus{$-$}$/ | 2524 | minus tex-src/texinfo.tex /^\\def\\minus{$-$}$/ |
| 2525 | MIN_WORD_LENGTH c-src/etags.c 2326 | ||
| 2526 | MISCP c-src/emacs/src/lisp.h /^# define MISCP(x) lisp_h_MISCP (x)$/ | ||
| 3338 | miti html-src/softwarelibero.html /^Sfatiamo alcuni miti$/ | 2527 | miti html-src/softwarelibero.html /^Sfatiamo alcuni miti$/ |
| 2528 | Mkai-test.pl perl-src/kai-test.pl /^package main;$/ | ||
| 3339 | modifier_names c-src/emacs/src/keyboard.c 6319 | 2529 | modifier_names c-src/emacs/src/keyboard.c 6319 |
| 3340 | modifier_symbols c-src/emacs/src/keyboard.c 6327 | 2530 | modifier_symbols c-src/emacs/src/keyboard.c 6327 |
| 3341 | modify_event_symbol c-src/emacs/src/keyboard.c /^modify_event_symbol (ptrdiff_t symbol_num, int mod/ | 2531 | modify_event_symbol c-src/emacs/src/keyboard.c /^modify_event_symbol (ptrdiff_t symbol_num, int mod/ |
| 3342 | module_class_method ruby-src/test.rb /^ def ModuleExample.module_class_method$/ | 2532 | module_class_method ruby-src/test.rb /^ def ModuleExample.module_class_method$/ |
| 2533 | ModuleExample ruby-src/test.rb /^module ModuleExample$/ | ||
| 3343 | module_instance_method ruby-src/test.rb /^ def module_instance_method$/ | 2534 | module_instance_method ruby-src/test.rb /^ def module_instance_method$/ |
| 3344 | more= ruby-src/test1.ru /^ :more$/ | ||
| 3345 | more_aligned_int c.c 165 | 2535 | more_aligned_int c.c 165 |
| 3346 | morecore_nolock c-src/emacs/src/gmalloc.c /^morecore_nolock (size_t size)$/ | 2536 | morecore_nolock c-src/emacs/src/gmalloc.c /^morecore_nolock (size_t size)$/ |
| 3347 | morecore_recursing c-src/emacs/src/gmalloc.c 605 | 2537 | morecore_recursing c-src/emacs/src/gmalloc.c 605 |
| 2538 | More_Lisp_Bits c-src/emacs/src/lisp.h 801 | ||
| 2539 | more= ruby-src/test1.ru /^ :more$/ | ||
| 2540 | MOST_NEGATIVE_FIXNUM c-src/emacs/src/lisp.h 835 | ||
| 2541 | MOST_POSITIVE_FIXNUM c-src/emacs/src/lisp.h 834 | ||
| 3348 | mouse_syms c-src/emacs/src/keyboard.c 4627 | 2542 | mouse_syms c-src/emacs/src/keyboard.c 4627 |
| 3349 | move cp-src/clheir.cpp /^void agent::move(int direction)$/ | 2543 | move cp-src/clheir.cpp /^void agent::move(int direction)$/ |
| 2544 | MOVE c-src/sysdep.h /^#define MOVE(x,y) movl x, y$/ | ||
| 2545 | MoveLayerAfter lua-src/allegro.lua /^function MoveLayerAfter (this_one)$/ | ||
| 2546 | MoveLayerBefore lua-src/allegro.lua /^function MoveLayerBefore (this_one)$/ | ||
| 2547 | MoveLayerBottom lua-src/allegro.lua /^function MoveLayerBottom ()$/ | ||
| 2548 | MoveLayerTop lua-src/allegro.lua /^function MoveLayerTop ()$/ | ||
| 3350 | mprobe c-src/emacs/src/gmalloc.c /^mprobe (void *ptr)$/ | 2549 | mprobe c-src/emacs/src/gmalloc.c /^mprobe (void *ptr)$/ |
| 2550 | /M ps-src/rfc1245.ps /^\/M {newpath moveto} bind def$/ | ||
| 2551 | M ruby-src/test1.ru /^module A::M; end$/ | ||
| 2552 | MSDOS c-src/etags.c 100 | ||
| 2553 | MSDOS c-src/etags.c 106 | ||
| 2554 | MSDOS c-src/etags.c 107 | ||
| 2555 | MSDOS c-src/etags.c 110 | ||
| 3351 | msgid php-src/lce_functions.php /^ function msgid($line, $class)$/ | 2556 | msgid php-src/lce_functions.php /^ function msgid($line, $class)$/ |
| 2557 | MSGSEL f-src/entry.for /^ ENTRY MSGSEL ( TYPE )$/ | ||
| 2558 | MSGSEL f-src/entry.strange /^ ENTRY MSGSEL ( TYPE )$/ | ||
| 2559 | MSGSEL f-src/entry.strange_suffix /^ ENTRY MSGSEL ( TYPE )$/ | ||
| 3352 | msgstr php-src/lce_functions.php /^ function msgstr($line, $class)$/ | 2560 | msgstr php-src/lce_functions.php /^ function msgstr($line, $class)$/ |
| 2561 | /ms ps-src/rfc1245.ps /^\/ms { $/ | ||
| 3353 | mstats c-src/emacs/src/gmalloc.c 308 | 2562 | mstats c-src/emacs/src/gmalloc.c 308 |
| 3354 | mt prol-src/natded.prolog /^mt:-$/ | 2563 | Mtest1.go go-src/test1.go 1 |
| 2564 | Mtest1.go go-src/test1.go /^func main() {$/ | ||
| 2565 | Mtest.go go-src/test.go 1 | ||
| 2566 | Mtest.go go-src/test.go /^func main() {$/ | ||
| 2567 | Mtest.rs rs-src/test.rs /^fn main() {$/ | ||
| 3355 | mtg html-src/software.html /^MTG$/ | 2568 | mtg html-src/software.html /^MTG$/ |
| 3356 | multi_line c-src/etags.c 267 | 2569 | mt prol-src/natded.prolog /^mt:-$/ |
| 3357 | multibyte c-src/emacs/src/regex.h 403 | 2570 | multibyte c-src/emacs/src/regex.h 403 |
| 3358 | my_printf c.c /^my_printf (void *my_object, const char *my_format,/ | 2571 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c 6231 |
| 3359 | my_struct c-src/h.h 91 | 2572 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c 6764 |
| 3360 | my_struct c.c 226 | 2573 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c /^#define MULTI_LETTER_MOD(BIT, NAME, LEN) \\$/ |
| 3361 | my_typedef c-src/h.h 93 | 2574 | MULTI_LETTER_MOD c-src/emacs/src/keyboard.c /^#define MULTI_LETTER_MOD(BIT, NAME, LEN) \\$/ |
| 3362 | my_typedef c.c 228 | 2575 | multi_line c-src/etags.c 267 |
| 2576 | Mx.cc cp-src/x.cc /^main(int argc, char *argv[])$/ | ||
| 3363 | mylbrace tex-src/texinfo.tex /^\\def\\mylbrace {{\\tt \\char '173}}$/ | 2577 | mylbrace tex-src/texinfo.tex /^\\def\\mylbrace {{\\tt \\char '173}}$/ |
| 3364 | mypi forth-src/test-forth.fth /^synonym mypi fconst$/ | 2578 | mypi forth-src/test-forth.fth /^synonym mypi fconst$/ |
| 2579 | my_printf c.c /^my_printf (void *my_object, const char *my_format,/ | ||
| 3365 | myrbrace tex-src/texinfo.tex /^\\def\\myrbrace {{\\tt \\char '175}}$/ | 2580 | myrbrace tex-src/texinfo.tex /^\\def\\myrbrace {{\\tt \\char '175}}$/ |
| 3366 | n c-src/exit.c 28 | 2581 | my_struct c.c 226 |
| 3367 | n c-src/exit.strange_suffix 28 | 2582 | my_struct c-src/h.h 91 |
| 2583 | my_typedef c.c 228 | ||
| 2584 | my_typedef c-src/h.h 93 | ||
| 3368 | name c-src/emacs/src/keyboard.c 7241 | 2585 | name c-src/emacs/src/keyboard.c 7241 |
| 3369 | name c-src/emacs/src/lisp.h 1808 | 2586 | name c-src/emacs/src/lisp.h 1808 |
| 3370 | name c-src/emacs/src/lisp.h 3144 | 2587 | name c-src/emacs/src/lisp.h 3144 |
| @@ -3375,7 +2592,11 @@ name c-src/etags.c 2271 | |||
| 3375 | name c-src/etags.c 261 | 2592 | name c-src/etags.c 261 |
| 3376 | name c-src/getopt.h 76 | 2593 | name c-src/getopt.h 76 |
| 3377 | name c-src/getopt.h 78 | 2594 | name c-src/getopt.h 78 |
| 2595 | named c-src/etags.c 2505 | ||
| 2596 | NameHasChar pas-src/common.pas /^function NameHasChar; (* (TheName : NameString; Th/ | ||
| 3378 | name perl-src/htlmify-cystic 357 | 2597 | name perl-src/htlmify-cystic 357 |
| 2598 | namestringequal pas-src/common.pas /^function namestringequal;(*(var Name1,Name2 : Name/ | ||
| 2599 | NameStringLess pas-src/common.pas /^function NameStringLess;(*(var Name1,Name2 : NameS/ | ||
| 3379 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Function}%$/ | 2600 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Function}%$/ |
| 3380 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Macro}%$/ | 2601 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Macro}%$/ |
| 3381 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Special Form}%$/ | 2602 | name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Special Form}%$/ |
| @@ -3384,36 +2605,48 @@ name tex-src/texinfo.tex /^\\begingroup\\defname {#1}{Variable}%$/ | |||
| 3384 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\deftpargs{#3}\\endgrou/ | 2605 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\deftpargs{#3}\\endgrou/ |
| 3385 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defunargs{#3}\\endgrou/ | 2606 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defunargs{#3}\\endgrou/ |
| 3386 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defvarargs{#3}\\endgro/ | 2607 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defvarargs{#3}\\endgro/ |
| 3387 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{Instance Variable of #1}%/ | ||
| 3388 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{Method on #1}%$/ | ||
| 3389 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defcvtype{} of #1}%$/ | 2608 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defcvtype{} of #1}%$/ |
| 3390 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defoptype{} on #1}%$/ | 2609 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defoptype{} on #1}%$/ |
| 2610 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{Instance Variable of #1}%/ | ||
| 2611 | name tex-src/texinfo.tex /^\\begingroup\\defname {#2}{Method on #1}%$/ | ||
| 3391 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#1} #2}{Function}%$/ | 2612 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#1} #2}{Function}%$/ |
| 3392 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#1} #2}{Variable}%$/ | 2613 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#1} #2}{Variable}%$/ |
| 3393 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#2} #3}{#1}$/ | ||
| 3394 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#2} #3}{#1}%$/ | 2614 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#2} #3}{#1}%$/ |
| 2615 | name tex-src/texinfo.tex /^\\begingroup\\defname {\\code{#2} #3}{#1}$/ | ||
| 3395 | name tex-src/texinfo.tex /^\\def\\singlecodeindexer #1{\\doind{\\indexname}{\\code/ | 2616 | name tex-src/texinfo.tex /^\\def\\singlecodeindexer #1{\\doind{\\indexname}{\\code/ |
| 3396 | name tex-src/texinfo.tex /^\\def\\singleindexer #1{\\doind{\\indexname}{#1}}$/ | 2617 | name tex-src/texinfo.tex /^\\def\\singleindexer #1{\\doind{\\indexname}{#1}}$/ |
| 2618 | NAME y-src/cccp.c 8 | ||
| 3397 | name y-src/cccp.y 113 | 2619 | name y-src/cccp.y 113 |
| 3398 | name y-src/cccp.y 43 | 2620 | name y-src/cccp.y 43 |
| 3399 | named c-src/etags.c 2505 | ||
| 3400 | namestringequal pas-src/common.pas /^function namestringequal;(*(var Name1,Name2 : Name/ | ||
| 3401 | nargs c-src/emacs/src/lisp.h 2987 | 2621 | nargs c-src/emacs/src/lisp.h 2987 |
| 3402 | need tex-src/texinfo.tex /^\\def\\need{\\parsearg\\needx}$/ | 2622 | NATNUMP c-src/emacs/src/lisp.h /^NATNUMP (Lisp_Object x)$/ |
| 2623 | /nbluet ps-src/rfc1245.ps /^\/nbluet 256 array def$/ | ||
| 2624 | n c-src/exit.c 28 | ||
| 2625 | n c-src/exit.strange_suffix 28 | ||
| 2626 | NDEBUG c-src/etags.c 88 | ||
| 3403 | need_adjustment c-src/emacs/src/lisp.h 1986 | 2627 | need_adjustment c-src/emacs/src/lisp.h 1986 |
| 2628 | need tex-src/texinfo.tex /^\\def\\need{\\parsearg\\needx}$/ | ||
| 3404 | needx tex-src/texinfo.tex /^\\def\\needx#1{%$/ | 2629 | needx tex-src/texinfo.tex /^\\def\\needx#1{%$/ |
| 2630 | NEG y-src/parse.c 9 | ||
| 3405 | neighbors cp-src/clheir.hpp 59 | 2631 | neighbors cp-src/clheir.hpp 59 |
| 3406 | nelem cp-src/Range.h /^ int nelem (void) const { return rng_nelem; }$/ | 2632 | nelem cp-src/Range.h /^ int nelem (void) const { return rng_nelem; }$/ |
| 3407 | nestlev c-src/etags.c 2525 | 2633 | nestlev c-src/etags.c 2525 |
| 3408 | new objc-src/PackInsp.m /^+new$/ | ||
| 3409 | new perl-src/htlmify-cystic 163 | ||
| 3410 | new_tag perl-src/htlmify-cystic 18 | ||
| 3411 | newcodeindex tex-src/texinfo.tex /^\\def\\newcodeindex #1{$/ | 2634 | newcodeindex tex-src/texinfo.tex /^\\def\\newcodeindex #1{$/ |
| 3412 | newindex tex-src/texinfo.tex /^\\def\\newindex #1{$/ | 2635 | newindex tex-src/texinfo.tex /^\\def\\newindex #1{$/ |
| 2636 | NewLayer lua-src/allegro.lua /^function NewLayer (name, x, y, w, h)$/ | ||
| 2637 | NewLayerSet lua-src/allegro.lua /^function NewLayerSet (name)$/ | ||
| 3413 | newlb c-src/etags.c 2930 | 2638 | newlb c-src/etags.c 2930 |
| 3414 | newlinepos c-src/etags.c 2932 | 2639 | newlinepos c-src/etags.c 2932 |
| 2640 | NewNameString pas-src/common.pas /^procedure NewNameString; (* (var NSP: NameStringPo/ | ||
| 2641 | new objc-src/PackInsp.m /^+new$/ | ||
| 2642 | new perl-src/htlmify-cystic 163 | ||
| 2643 | new_tag perl-src/htlmify-cystic 18 | ||
| 3415 | newtextstring pas-src/common.pas /^function newtextstring; (*: TextString;*)$/ | 2644 | newtextstring pas-src/common.pas /^function newtextstring; (*: TextString;*)$/ |
| 3416 | newwrite tex-src/texinfo.tex /^\\gdef\\newwrite{\\alloc@7\\write\\chardef\\sixt@@n}}$/ | 2645 | newwrite tex-src/texinfo.tex /^\\gdef\\newwrite{\\alloc@7\\write\\chardef\\sixt@@n}}$/ |
| 2646 | next_alive cp-src/conway.hpp 7 | ||
| 2647 | next_almost_prime c-src/emacs/src/lisp.h /^extern EMACS_INT next_almost_prime (EMACS_INT) ATT/ | ||
| 2648 | NEXT_ALMOST_PRIME_LIMIT c-src/emacs/src/lisp.h 3573 | ||
| 2649 | next c.c 174 | ||
| 3417 | next c-src/emacs/src/gmalloc.c 164 | 2650 | next c-src/emacs/src/gmalloc.c 164 |
| 3418 | next c-src/emacs/src/gmalloc.c 188 | 2651 | next c-src/emacs/src/gmalloc.c 188 |
| 3419 | next c-src/emacs/src/gmalloc.c 198 | 2652 | next c-src/emacs/src/gmalloc.c 198 |
| @@ -3427,51 +2660,52 @@ next c-src/emacs/src/lisp.h 3028 | |||
| 3427 | next c-src/emacs/src/lisp.h 3134 | 2660 | next c-src/emacs/src/lisp.h 3134 |
| 3428 | next c-src/emacs/src/lisp.h 700 | 2661 | next c-src/emacs/src/lisp.h 700 |
| 3429 | next c-src/etags.c 203 | 2662 | next c-src/etags.c 203 |
| 3430 | next c.c 174 | 2663 | next-file el-src/emacs/lisp/progmodes/etags.el /^(defun next-file (&optional initialize novisit)$/ |
| 2664 | next-file-list el-src/emacs/lisp/progmodes/etags.el /^(defvar next-file-list nil$/ | ||
| 2665 | next_free c-src/emacs/src/lisp.h 1851 | ||
| 2666 | nextfree c-src/emacs/src/lisp.h 3029 | ||
| 3431 | next tex-src/texinfo.tex /^\\def\\flushcr{\\ifx\\par\\lisppar \\def\\next##1{}\\else / | 2667 | next tex-src/texinfo.tex /^\\def\\flushcr{\\ifx\\par\\lisppar \\def\\next##1{}\\else / |
| 3432 | next tex-src/texinfo.tex /^\\def\\next##1{}\\next}$/ | 2668 | next tex-src/texinfo.tex /^\\def\\next##1{}\\next}$/ |
| 3433 | next tex-src/texinfo.tex /^\\def\\parsearg #1{\\let\\next=#1\\begingroup\\obeylines/ | 2669 | next tex-src/texinfo.tex /^\\def\\parsearg #1{\\let\\next=#1\\begingroup\\obeylines/ |
| 3434 | next tex-src/texinfo.tex /^\\edef\\next{\\write\\auxfile{\\internalsetq {#1}{#2}}}/ | 2670 | next tex-src/texinfo.tex /^\\edef\\next{\\write\\auxfile{\\internalsetq {#1}{#2}}}/ |
| 3435 | next y-src/cccp.y 42 | ||
| 3436 | next-file el-src/emacs/lisp/progmodes/etags.el /^(defun next-file (&optional initialize novisit)$/ | ||
| 3437 | next-file-list el-src/emacs/lisp/progmodes/etags.el /^(defvar next-file-list nil$/ | ||
| 3438 | next_alive cp-src/conway.hpp 7 | ||
| 3439 | next_almost_prime c-src/emacs/src/lisp.h /^extern EMACS_INT next_almost_prime (EMACS_INT) ATT/ | ||
| 3440 | next_free c-src/emacs/src/lisp.h 1851 | ||
| 3441 | next_weak c-src/emacs/src/lisp.h 1875 | 2671 | next_weak c-src/emacs/src/lisp.h 1875 |
| 3442 | nextfree c-src/emacs/src/lisp.h 3029 | 2672 | next y-src/cccp.y 42 |
| 2673 | NE y-src/parse.c 6 | ||
| 3443 | nfree c-src/emacs/src/gmalloc.c 150 | 2674 | nfree c-src/emacs/src/gmalloc.c 150 |
| 2675 | /ngrayt ps-src/rfc1245.ps /^\/ngrayt 256 array def$/ | ||
| 2676 | /ngreent ps-src/rfc1245.ps /^\/ngreent 256 array def$/ | ||
| 2677 | NIL_IS_ZERO c-src/emacs/src/lisp.h 1515 | ||
| 2678 | NILP c-src/emacs/src/lisp.h /^# define NILP(x) lisp_h_NILP (x)$/ | ||
| 3444 | nl c-src/etags.c 2521 | 2679 | nl c-src/etags.c 2521 |
| 2680 | NmStrToErrStr pas-src/common.pas /^function NmStrToErrStr;(*($/ | ||
| 2681 | NmStrToInteger pas-src/common.pas /^function NmStrToInteger; (* (Str : NameString) : i/ | ||
| 3445 | nm tex-src/testenv.tex /^\\newcommand{\\nm}[2]{\\nomenclature{#1}{#2}}$/ | 2682 | nm tex-src/testenv.tex /^\\newcommand{\\nm}[2]{\\nomenclature{#1}{#2}}$/ |
| 3446 | no tex-src/texinfo.tex /^\\def\\appendixletter{\\char\\the\\appendixno}$/ | ||
| 3447 | no tex-src/texinfo.tex /^\\global\\advance \\appendixno by 1 \\message{Appendix/ | ||
| 3448 | no tex-src/texinfo.tex /^\\ifnum\\secno=0 Appendix\\xreftie'char\\the\\appendixn/ | ||
| 3449 | no tex-src/texinfo.tex /^\\newcount \\appendixno \\appendixno = `\\@$/ | ||
| 3450 | no.\the tex-src/texinfo.tex /^Section\\xreftie'char\\the\\appendixno.\\the\\secno.\\th/ | ||
| 3451 | no.\the tex-src/texinfo.tex /^\\else \\ifnum \\subsecno=0 Section\\xreftie'char\\the\\/ | ||
| 3452 | no_argument c-src/getopt.h 89 | 2683 | no_argument c-src/getopt.h 89 |
| 3453 | no_lang_help c-src/etags.c 707 | ||
| 3454 | no_sub c-src/emacs/src/regex.h 387 | ||
| 3455 | nocase_tail c-src/etags.c /^nocase_tail (const char *cp)$/ | 2684 | nocase_tail c-src/etags.c /^nocase_tail (const char *cp)$/ |
| 3456 | node c-src/etags.c 225 | 2685 | node c-src/etags.c 225 |
| 3457 | node tex-src/texinfo.tex /^\\def\\node{\\ENVcheck\\parsearg\\nodezzz}$/ | ||
| 3458 | node_st c-src/etags.c 214 | ||
| 3459 | noderef tex-src/texinfo.tex /^\\appendixnoderef %$/ | 2686 | noderef tex-src/texinfo.tex /^\\appendixnoderef %$/ |
| 2687 | node_st c-src/etags.c 214 | ||
| 2688 | node tex-src/texinfo.tex /^\\def\\node{\\ENVcheck\\parsearg\\nodezzz}$/ | ||
| 3460 | nodexxx tex-src/texinfo.tex /^\\def\\nodexxx[#1,#2]{\\gdef\\lastnode{#1}}$/ | 2689 | nodexxx tex-src/texinfo.tex /^\\def\\nodexxx[#1,#2]{\\gdef\\lastnode{#1}}$/ |
| 3461 | nodezzz tex-src/texinfo.tex /^\\def\\nodezzz#1{\\nodexxx [#1,]}$/ | 2690 | nodezzz tex-src/texinfo.tex /^\\def\\nodezzz#1{\\nodexxx [#1,]}$/ |
| 3462 | nofillexdent tex-src/texinfo.tex /^\\def\\nofillexdent{\\parsearg\\nofillexdentyyy}$/ | 2691 | nofillexdent tex-src/texinfo.tex /^\\def\\nofillexdent{\\parsearg\\nofillexdentyyy}$/ |
| 3463 | nofillexdentyyy tex-src/texinfo.tex /^\\def\\nofillexdentyyy #1{{\\advance \\leftskip by -\\e/ | 2692 | nofillexdentyyy tex-src/texinfo.tex /^\\def\\nofillexdentyyy #1{{\\advance \\leftskip by -\\e/ |
| 3464 | nofonts tex-src/texinfo.tex /^{\\chapternofonts%$/ | 2693 | nofonts tex-src/texinfo.tex /^{\\chapternofonts%$/ |
| 3465 | nofonts tex-src/texinfo.tex /^{\\indexnofonts$/ | 2694 | nofonts tex-src/texinfo.tex /^{\\indexnofonts$/ |
| 2695 | no_lang_help c-src/etags.c 707 | ||
| 3466 | nonarrowing tex-src/texinfo.tex /^ \\let\\nonarrowing=\\comment$/ | 2696 | nonarrowing tex-src/texinfo.tex /^ \\let\\nonarrowing=\\comment$/ |
| 3467 | nonarrowing tex-src/texinfo.tex /^\\let\\nonarrowing=\\relax$/ | 2697 | nonarrowing tex-src/texinfo.tex /^\\let\\nonarrowing=\\relax$/ |
| 3468 | none_help c-src/etags.c 703 | 2698 | none_help c-src/etags.c 703 |
| 2699 | NONPOINTER_BITS c-src/emacs/src/lisp.h 78 | ||
| 2700 | NONPOINTER_BITS c-src/emacs/src/lisp.h 80 | ||
| 2701 | NONSRCS make-src/Makefile /^NONSRCS=entry.strange lists.erl clheir.hpp.gz$/ | ||
| 3469 | normalbackslash tex-src/texinfo.tex /^\\def\\normalbackslash{{\\tt\\rawbackslashxx}}$/ | 2702 | normalbackslash tex-src/texinfo.tex /^\\def\\normalbackslash{{\\tt\\rawbackslashxx}}$/ |
| 3470 | normalcaret tex-src/texinfo.tex /^\\def\\normalcaret{^}$/ | 2703 | normalcaret tex-src/texinfo.tex /^\\def\\normalcaret{^}$/ |
| 3471 | normaldoublequote tex-src/texinfo.tex /^\\def\\normaldoublequote{"}$/ | 2704 | normaldoublequote tex-src/texinfo.tex /^\\def\\normaldoublequote{"}$/ |
| 3472 | normalgreater tex-src/texinfo.tex /^\\def\\normalgreater{>}$/ | 2705 | normalgreater tex-src/texinfo.tex /^\\def\\normalgreater{>}$/ |
| 3473 | normalize prol-src/natded.prolog /^normalize(M,MNorm):-$/ | ||
| 3474 | normalize_fresh prol-src/natded.prolog /^normalize_fresh(M,N):-$/ | 2706 | normalize_fresh prol-src/natded.prolog /^normalize_fresh(M,N):-$/ |
| 2707 | normalize prol-src/natded.prolog /^normalize(M,MNorm):-$/ | ||
| 2708 | /normalize ps-src/rfc1245.ps /^\/normalize {$/ | ||
| 3475 | normalize_tree prol-src/natded.prolog /^normalize_tree(tree(Rule,Syn:Sem,Trees),$/ | 2709 | normalize_tree prol-src/natded.prolog /^normalize_tree(tree(Rule,Syn:Sem,Trees),$/ |
| 3476 | normalize_trees prol-src/natded.prolog /^normalize_trees([],[]).$/ | 2710 | normalize_trees prol-src/natded.prolog /^normalize_trees([],[]).$/ |
| 3477 | normalless tex-src/texinfo.tex /^\\def\\normalless{<}$/ | 2711 | normalless tex-src/texinfo.tex /^\\def\\normalless{<}$/ |
| @@ -3481,42 +2715,67 @@ normaltilde tex-src/texinfo.tex /^\\def\\normaltilde{~}$/ | |||
| 3481 | normalunderscore tex-src/texinfo.tex /^\\def\\normalunderscore{_}$/ | 2715 | normalunderscore tex-src/texinfo.tex /^\\def\\normalunderscore{_}$/ |
| 3482 | normalverticalbar tex-src/texinfo.tex /^\\def\\normalverticalbar{|}$/ | 2716 | normalverticalbar tex-src/texinfo.tex /^\\def\\normalverticalbar{|}$/ |
| 3483 | nosave pyt-src/server.py /^ def nosave(self):$/ | 2717 | nosave pyt-src/server.py /^ def nosave(self):$/ |
| 3484 | not_bol c-src/emacs/src/regex.h 391 | 2718 | no_sub c-src/emacs/src/regex.h 387 |
| 3485 | not_eol c-src/emacs/src/regex.h 394 | ||
| 3486 | not_single_kboard_state c-src/emacs/src/keyboard.c /^not_single_kboard_state (KBOARD *kboard)$/ | ||
| 3487 | notag2 c-src/dostorture.c 26 | 2719 | notag2 c-src/dostorture.c 26 |
| 3488 | notag2 c-src/torture.c 26 | 2720 | notag2 c-src/torture.c 26 |
| 3489 | notag4 c-src/dostorture.c 45 | 2721 | notag4 c-src/dostorture.c 45 |
| 3490 | notag4 c-src/torture.c 45 | 2722 | notag4 c-src/torture.c 45 |
| 2723 | not_bol c-src/emacs/src/regex.h 391 | ||
| 2724 | /.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/.notdef \/.not/ | ||
| 2725 | /.notdef ps-src/rfc1245.ps /^\/.notdef \/.notdef \/.notdef \/.notdef \/space \/exclam/ | ||
| 2726 | not_eol c-src/emacs/src/regex.h 394 | ||
| 2727 | NOTEQUAL y-src/cccp.c 13 | ||
| 2728 | no tex-src/texinfo.tex /^\\def\\appendixletter{\\char\\the\\appendixno}$/ | ||
| 2729 | no tex-src/texinfo.tex /^\\global\\advance \\appendixno by 1 \\message{Appendix/ | ||
| 2730 | no tex-src/texinfo.tex /^\\ifnum\\secno=0 Appendix\\xreftie'char\\the\\appendixn/ | ||
| 2731 | no tex-src/texinfo.tex /^\\newcount \\appendixno \\appendixno = `\\@$/ | ||
| 2732 | no.\the tex-src/texinfo.tex /^\\else \\ifnum \\subsecno=0 Section\\xreftie'char\\the\\/ | ||
| 2733 | no.\the tex-src/texinfo.tex /^Section\\xreftie'char\\the\\appendixno.\\the\\secno.\\th/ | ||
| 3491 | notinname c-src/etags.c /^#define notinname(c) (_nin[CHAR (c)]) \/* c is not / | 2734 | notinname c-src/etags.c /^#define notinname(c) (_nin[CHAR (c)]) \/* c is not / |
| 2735 | not_single_kboard_state c-src/emacs/src/keyboard.c /^not_single_kboard_state (KBOARD *kboard)$/ | ||
| 3492 | npending c-src/emacs/src/keyboard.c 7244 | 2736 | npending c-src/emacs/src/keyboard.c 7244 |
| 2737 | /N ps-src/rfc1245.ps /^\/N { $/ | ||
| 2738 | /nredt ps-src/rfc1245.ps /^\/nredt 256 array def$/ | ||
| 3493 | nsbot tex-src/texinfo.tex /^\\def\\nsbot{\\vbox$/ | 2739 | nsbot tex-src/texinfo.tex /^\\def\\nsbot{\\vbox$/ |
| 3494 | nstop tex-src/texinfo.tex /^\\def\\nstop{\\vbox$/ | 2740 | nstop tex-src/texinfo.tex /^\\def\\nstop{\\vbox$/ |
| 2741 | /Ntilde ps-src/rfc1245.ps /^\/Ntilde \/Odieresis \/Udieresis \/aacute \/agrave \/aci/ | ||
| 3495 | ntool_bar_items c-src/emacs/src/keyboard.c 7974 | 2742 | ntool_bar_items c-src/emacs/src/keyboard.c 7974 |
| 3496 | numOfChannels cp-src/c.C 1 | 2743 | NULL_PTR y-src/cccp.y 63 |
| 3497 | num_columns cp-src/conway.cpp 16 | 2744 | NULL y-src/cccp.y 51 |
| 3498 | num_input_events c-src/emacs/src/keyboard.c 210 | ||
| 3499 | num_regs c-src/emacs/src/regex.h 430 | ||
| 3500 | num_rows cp-src/conway.cpp 15 | ||
| 3501 | numberKeys objcpp-src/SimpleCalc.M /^- numberKeys:sender$/ | ||
| 3502 | number_len c-src/etags.c /^static int number_len (long) ATTRIBUTE_CONST;$/ | ||
| 3503 | numberedsec tex-src/texinfo.tex /^\\outer\\def\\numberedsec{\\parsearg\\seczzz}$/ | 2745 | numberedsec tex-src/texinfo.tex /^\\outer\\def\\numberedsec{\\parsearg\\seczzz}$/ |
| 3504 | numberedsubsec tex-src/texinfo.tex /^\\outer\\def\\numberedsubsec{\\parsearg\\numberedsubsec/ | 2746 | numberedsubsec tex-src/texinfo.tex /^\\outer\\def\\numberedsubsec{\\parsearg\\numberedsubsec/ |
| 3505 | numberedsubseczzz tex-src/texinfo.tex /^\\def\\numberedsubseczzz #1{\\seccheck{subsection}%$/ | 2747 | numberedsubseczzz tex-src/texinfo.tex /^\\def\\numberedsubseczzz #1{\\seccheck{subsection}%$/ |
| 3506 | numberedsubsubsec tex-src/texinfo.tex /^\\outer\\def\\numberedsubsubsec{\\parsearg\\numberedsub/ | 2748 | numberedsubsubsec tex-src/texinfo.tex /^\\outer\\def\\numberedsubsubsec{\\parsearg\\numberedsub/ |
| 3507 | numberedsubsubseczzz tex-src/texinfo.tex /^\\def\\numberedsubsubseczzz #1{\\seccheck{subsubsecti/ | 2749 | numberedsubsubseczzz tex-src/texinfo.tex /^\\def\\numberedsubsubseczzz #1{\\seccheck{subsubsecti/ |
| 2750 | numberKeys objcpp-src/SimpleCalc.M /^- numberKeys:sender$/ | ||
| 2751 | number_len c-src/etags.c /^static int number_len (long) ATTRIBUTE_CONST;$/ | ||
| 2752 | /numbersign ps-src/rfc1245.ps /^\/numbersign \/dollar \/percent \/ampersand \/quotesing/ | ||
| 3508 | numbervars prol-src/natded.prolog /^numbervars(X):-$/ | 2753 | numbervars prol-src/natded.prolog /^numbervars(X):-$/ |
| 2754 | num_columns cp-src/conway.cpp 16 | ||
| 3509 | numericenumerate tex-src/texinfo.tex /^\\def\\numericenumerate{%$/ | 2755 | numericenumerate tex-src/texinfo.tex /^\\def\\numericenumerate{%$/ |
| 2756 | num_input_events c-src/emacs/src/keyboard.c 210 | ||
| 2757 | NUM_MOD_NAMES c-src/emacs/src/keyboard.c 6325 | ||
| 2758 | numOfChannels cp-src/c.C 1 | ||
| 2759 | NUM_RECENT_KEYS c-src/emacs/src/keyboard.c 91 | ||
| 2760 | num_regs c-src/emacs/src/regex.h 430 | ||
| 2761 | num_rows cp-src/conway.cpp 15 | ||
| 2762 | NUMSTATS objc-src/PackInsp.h 36 | ||
| 3510 | nvars c-src/emacs/src/lisp.h 3140 | 2763 | nvars c-src/emacs/src/lisp.h 3140 |
| 3511 | obeyedspace tex-src/texinfo.tex /^\\gdef\\obeyedspace{\\ }$/ | 2764 | obeyedspace tex-src/texinfo.tex /^\\gdef\\obeyedspace{\\ }$/ |
| 2765 | Objc_help c-src/etags.c 613 | ||
| 2766 | OBJCPPSRC make-src/Makefile /^OBJCPPSRC=SimpleCalc.H SimpleCalc.M$/ | ||
| 2767 | OBJCSRC make-src/Makefile /^OBJCSRC=Subprocess.h Subprocess.m PackInsp.h PackI/ | ||
| 2768 | Objc_suffixes c-src/etags.c 609 | ||
| 3512 | objdef c-src/etags.c 2484 | 2769 | objdef c-src/etags.c 2484 |
| 3513 | object c-src/emacs/src/lisp.h 2128 | 2770 | object c-src/emacs/src/lisp.h 2128 |
| 3514 | object_registry cp-src/clheir.cpp 10 | 2771 | object_registry cp-src/clheir.cpp 10 |
| 2772 | OBJS make-src/Makefile /^OBJS=${GETOPTOBJS} ${REGEXOBJS} ${CHECKOBJS}$/ | ||
| 3515 | objtag c-src/etags.c 2453 | 2773 | objtag c-src/etags.c 2453 |
| 3516 | objvar c-src/emacs/src/lisp.h 2297 | 2774 | objvar c-src/emacs/src/lisp.h 2297 |
| 3517 | obstack_chunk_alloc y-src/parse.y 47 | 2775 | obstack_chunk_alloc y-src/parse.y 47 |
| 3518 | obstack_chunk_free y-src/parse.y 48 | 2776 | obstack_chunk_free y-src/parse.y 48 |
| 3519 | ocatseen c-src/etags.c 2477 | 2777 | ocatseen c-src/etags.c 2477 |
| 2778 | /ocircumflex ps-src/rfc1245.ps /^\/ocircumflex \/odieresis \/otilde \/uacute \/ugrave \/u/ | ||
| 3520 | octave_MDiagArray2_h cp-src/MDiagArray2.h 29 | 2779 | octave_MDiagArray2_h cp-src/MDiagArray2.h 29 |
| 3521 | octave_Range_h cp-src/Range.h 24 | 2780 | octave_Range_h cp-src/Range.h 24 |
| 3522 | oddfooting tex-src/texinfo.tex /^\\def\\oddfooting{\\parsearg\\oddfootingxxx}$/ | 2781 | oddfooting tex-src/texinfo.tex /^\\def\\oddfooting{\\parsearg\\oddfootingxxx}$/ |
| @@ -3534,52 +2793,56 @@ oimplementation c-src/etags.c 2474 | |||
| 3534 | oinbody c-src/etags.c 2478 | 2793 | oinbody c-src/etags.c 2478 |
| 3535 | ok objc-src/PackInsp.m /^-ok:sender$/ | 2794 | ok objc-src/PackInsp.m /^-ok:sender$/ |
| 3536 | ok_to_echo_at_next_pause c-src/emacs/src/keyboard.c 159 | 2795 | ok_to_echo_at_next_pause c-src/emacs/src/keyboard.c 159 |
| 3537 | old_value c-src/emacs/src/lisp.h 2980 | ||
| 3538 | oldpage tex-src/texinfo.tex /^ \\let\\oldpage = \\page$/ | 2796 | oldpage tex-src/texinfo.tex /^ \\let\\oldpage = \\page$/ |
| 2797 | old_value c-src/emacs/src/lisp.h 2980 | ||
| 3539 | omethodcolon c-src/etags.c 2481 | 2798 | omethodcolon c-src/etags.c 2481 |
| 3540 | omethodparm c-src/etags.c 2482 | 2799 | omethodparm c-src/etags.c 2482 |
| 3541 | omethodsign c-src/etags.c 2479 | 2800 | omethodsign c-src/etags.c 2479 |
| 3542 | omethodtag c-src/etags.c 2480 | 2801 | omethodtag c-src/etags.c 2480 |
| 3543 | one tex-src/texinfo.tex /^\\def\\kbdfoo#1#2#3\\par{\\def\\one{#1}\\def\\three{#3}\\d/ | ||
| 3544 | onepageout tex-src/texinfo.tex /^\\def\\cropmarks{\\let\\onepageout=\\croppageout }$/ | 2802 | onepageout tex-src/texinfo.tex /^\\def\\cropmarks{\\let\\onepageout=\\croppageout }$/ |
| 3545 | onepageout tex-src/texinfo.tex /^\\def\\onepageout#1{\\hoffset=\\normaloffset$/ | 2803 | onepageout tex-src/texinfo.tex /^\\def\\onepageout#1{\\hoffset=\\normaloffset$/ |
| 2804 | one tex-src/texinfo.tex /^\\def\\kbdfoo#1#2#3\\par{\\def\\one{#1}\\def\\three{#3}\\d/ | ||
| 3546 | onone c-src/etags.c 2472 | 2805 | onone c-src/etags.c 2472 |
| 3547 | oparenseen c-src/etags.c 2476 | 2806 | oparenseen c-src/etags.c 2476 |
| 3548 | open objc-src/PackInsp.m /^-open:sender$/ | 2807 | OPENBUTTON objc-src/PackInsp.m 47 |
| 3549 | open-dribble-file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/ | ||
| 3550 | openInWorkspace objc-src/PackInsp.m /^static void openInWorkspace(const char *filename)$/ | ||
| 3551 | opencontents tex-src/texinfo.tex /^\\def\\opencontents{\\openout \\contentsfile = \\jobnam/ | 2808 | opencontents tex-src/texinfo.tex /^\\def\\opencontents{\\openout \\contentsfile = \\jobnam/ |
| 2809 | open-dribble-file c-src/emacs/src/keyboard.c /^DEFUN ("open-dribble-file", Fopen_dribble_file, So/ | ||
| 3552 | openindices tex-src/texinfo.tex /^\\def\\openindices{%$/ | 2810 | openindices tex-src/texinfo.tex /^\\def\\openindices{%$/ |
| 2811 | openInWorkspace objc-src/PackInsp.m /^static void openInWorkspace(const char *filename)$/ | ||
| 2812 | open objc-src/PackInsp.m /^-open:sender$/ | ||
| 3553 | operationKeys objcpp-src/SimpleCalc.M /^- operationKeys:sender$/ | 2813 | operationKeys objcpp-src/SimpleCalc.M /^- operationKeys:sender$/ |
| 3554 | operator y-src/cccp.y 438 | 2814 | operator+ cp-src/c.C /^ A operator+(A& a) {};$/ |
| 3555 | operator ++ cp-src/functions.cpp /^Date & Date::operator ++ ( void ){$/ | 2815 | operator+ cp-src/c.C /^const A& A::operator+(const A&) { }$/ |
| 3556 | operator += cp-src/functions.cpp /^Date & Date::operator += ( int days ){$/ | ||
| 3557 | operator - cp-src/c.C /^void operator -(int, int) {}$/ | 2816 | operator - cp-src/c.C /^void operator -(int, int) {}$/ |
| 3558 | operator - cp-src/functions.cpp /^int Date::operator - ( Date d ){$/ | 2817 | operator+ cp-src/c.C /^void operator+(int, int) {}$/ |
| 3559 | operator -- cp-src/functions.cpp /^Date & Date::operator -- ( void ){$/ | 2818 | operator = cp-src/functions.cpp /^Date & Date::operator = ( Date d ){$/ |
| 2819 | operator += cp-src/functions.cpp /^Date & Date::operator += ( int days ){$/ | ||
| 3560 | operator -= cp-src/functions.cpp /^Date & Date::operator -= ( int days ){$/ | 2820 | operator -= cp-src/functions.cpp /^Date & Date::operator -= ( int days ){$/ |
| 2821 | operator ++ cp-src/functions.cpp /^Date & Date::operator ++ ( void ){$/ | ||
| 2822 | operator -- cp-src/functions.cpp /^Date & Date::operator -- ( void ){$/ | ||
| 2823 | operator - cp-src/functions.cpp /^int Date::operator - ( Date d ){$/ | ||
| 3561 | operator < cp-src/functions.cpp /^int Date::operator < ( Date d ) {$/ | 2824 | operator < cp-src/functions.cpp /^int Date::operator < ( Date d ) {$/ |
| 3562 | operator << cp-src/functions.cpp /^ostream& operator << ( ostream &c, Date d ) {$/ | ||
| 3563 | operator = cp-src/MDiagArray2.h /^ MDiagArray2<T>& operator = (const MDiagArray2<T>/ | ||
| 3564 | operator = cp-src/functions.cpp /^Date & Date::operator = ( Date d ){$/ | ||
| 3565 | operator == cp-src/functions.cpp /^int Date::operator == ( Date d ) {$/ | 2825 | operator == cp-src/functions.cpp /^int Date::operator == ( Date d ) {$/ |
| 3566 | operator > cp-src/functions.cpp /^int Date::operator > ( Date d ) {$/ | 2826 | operator > cp-src/functions.cpp /^int Date::operator > ( Date d ) {$/ |
| 3567 | operator >> cp-src/functions.cpp /^istream& operator >> ( istream &i, Date & dd ){$/ | 2827 | operator >> cp-src/functions.cpp /^istream& operator >> ( istream &i, Date & dd ){$/ |
| 3568 | operator MArray2<T> cp-src/MDiagArray2.h /^ operator MArray2<T> () const$/ | 2828 | operator << cp-src/functions.cpp /^ostream& operator << ( ostream &c, Date d ) {$/ |
| 2829 | operator = cp-src/MDiagArray2.h /^ MDiagArray2<T>& operator = (const MDiagArray2<T>/ | ||
| 2830 | OperatorFun c-src/h.h 88 | ||
| 3569 | operator int cp-src/c.C /^void operator int(int, int) {}$/ | 2831 | operator int cp-src/c.C /^void operator int(int, int) {}$/ |
| 3570 | operator int cp-src/fail.C /^ operator int() const {return x;}$/ | 2832 | operator int cp-src/fail.C /^ operator int() const {return x;}$/ |
| 3571 | operator+ cp-src/c.C /^ A operator+(A& a) {};$/ | 2833 | operator MArray2<T> cp-src/MDiagArray2.h /^ operator MArray2<T> () const$/ |
| 3572 | operator+ cp-src/c.C /^const A& A::operator+(const A&) { }$/ | 2834 | operator y-src/cccp.y 438 |
| 3573 | operator+ cp-src/c.C /^void operator+(int, int) {}$/ | ||
| 3574 | opheader\defoptype tex-src/texinfo.tex /^\\defopparsebody\\Edefop\\defopx\\defopheader\\defoptyp/ | 2835 | opheader\defoptype tex-src/texinfo.tex /^\\defopparsebody\\Edefop\\defopx\\defopheader\\defoptyp/ |
| 3575 | opnested tex-src/texinfo.tex /^\\gdef\\opnested{\\char`\\(\\global\\advance\\parencount / | 2836 | opnested tex-src/texinfo.tex /^\\gdef\\opnested{\\char`\\(\\global\\advance\\parencount / |
| 3576 | opnr tex-src/texinfo.tex /^\\def\\opnr{{\\sf\\char`\\(}} \\def\\clnr{{\\sf\\char`\\)}} / | 2837 | opnr tex-src/texinfo.tex /^\\def\\opnr{{\\sf\\char`\\(}} \\def\\clnr{{\\sf\\char`\\)}} / |
| 3577 | opparsebody\Edefop tex-src/texinfo.tex /^\\defopparsebody\\Edefop\\defopx\\defopheader\\defoptyp/ | 2838 | opparsebody\Edefop tex-src/texinfo.tex /^\\defopparsebody\\Edefop\\defopx\\defopheader\\defoptyp/ |
| 3578 | oprm tex-src/texinfo.tex /^\\gdef\\oprm#1 {{\\rm\\char`\\(}#1 \\bf \\let(=\\opnested / | 2839 | oprm tex-src/texinfo.tex /^\\gdef\\oprm#1 {{\\rm\\char`\\(}#1 \\bf \\let(=\\opnested / |
| 3579 | oprotocol c-src/etags.c 2473 | 2840 | oprotocol c-src/etags.c 2473 |
| 2841 | /O ps-src/rfc1245.ps /^\/O {closepath} bind def$/ | ||
| 3580 | optheader tex-src/texinfo.tex /^\\def\\defopt{\\defvarparsebody\\Edefopt\\defoptx\\defop/ | 2842 | optheader tex-src/texinfo.tex /^\\def\\defopt{\\defvarparsebody\\Edefopt\\defoptx\\defop/ |
| 3581 | option c-src/getopt.h 73 | ||
| 3582 | optional_argument c-src/getopt.h 91 | 2843 | optional_argument c-src/getopt.h 91 |
| 2844 | option c-src/getopt.h 73 | ||
| 2845 | OPTIONS make-src/Makefile /^OPTIONS=--members --declarations --regex=@regexfil/ | ||
| 3583 | optx\defoptheader tex-src/texinfo.tex /^\\def\\defopt{\\defvarparsebody\\Edefopt\\defoptx\\defop/ | 2846 | optx\defoptheader tex-src/texinfo.tex /^\\def\\defopt{\\defvarparsebody\\Edefopt\\defoptx\\defop/ |
| 3584 | optype tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defoptype{} on #1}%$/ | 2847 | optype tex-src/texinfo.tex /^\\begingroup\\defname {#2}{\\defoptype{} on #1}%$/ |
| 3585 | optype tex-src/texinfo.tex /^\\defopparsebody\\Edefop\\defopx\\defopheader\\defoptyp/ | 2848 | optype tex-src/texinfo.tex /^\\defopparsebody\\Edefop\\defopx\\defopheader\\defoptyp/ |
| @@ -3588,129 +2851,193 @@ opx\defopheader tex-src/texinfo.tex /^\\defopparsebody\\Edefop\\defopx\\defophea | |||
| 3588 | ord_add_element prol-src/ordsets.prolog /^ord_add_element([], Element, [Element]).$/ | 2851 | ord_add_element prol-src/ordsets.prolog /^ord_add_element([], Element, [Element]).$/ |
| 3589 | ord_del_element prol-src/ordsets.prolog /^ord_del_element([], _, []).$/ | 2852 | ord_del_element prol-src/ordsets.prolog /^ord_del_element([], _, []).$/ |
| 3590 | ord_disjoint prol-src/ordsets.prolog /^ord_disjoint(Set1, Set2) :-$/ | 2853 | ord_disjoint prol-src/ordsets.prolog /^ord_disjoint(Set1, Set2) :-$/ |
| 3591 | ord_intersect prol-src/ordsets.prolog /^ord_intersect([Head1|Tail1], [Head2|Tail2]) :-$/ | 2854 | /ordfeminine ps-src/rfc1245.ps /^\/ordfeminine \/ordmasculine \/.notdef \/ae \/oslash \/q/ |
| 3592 | ord_intersection prol-src/ordsets.prolog /^ord_intersection(Sets, Intersection) :- $/ | ||
| 3593 | ord_intersection prol-src/ordsets.prolog /^ord_intersection([], Set2, [], Set2).$/ | ||
| 3594 | ord_intersection prol-src/ordsets.prolog /^ord_intersection([], _, []).$/ | ||
| 3595 | ord_intersection2 prol-src/ordsets.prolog /^ord_intersection2(1, [Set|Sets], Set0, Sets0) :- !/ | 2855 | ord_intersection2 prol-src/ordsets.prolog /^ord_intersection2(1, [Set|Sets], Set0, Sets0) :- !/ |
| 3596 | ord_intersection3 prol-src/ordsets.prolog /^ord_intersection3(<, _, Set1, Head2, Tail2, Inters/ | 2856 | ord_intersection3 prol-src/ordsets.prolog /^ord_intersection3(<, _, Set1, Head2, Tail2, Inters/ |
| 3597 | ord_intersection4 prol-src/ordsets.prolog /^ord_intersection4(<, _, Set1, Head2, Tail2, Inters/ | 2857 | ord_intersection4 prol-src/ordsets.prolog /^ord_intersection4(<, _, Set1, Head2, Tail2, Inters/ |
| 2858 | ord_intersection prol-src/ordsets.prolog /^ord_intersection([], _, []).$/ | ||
| 2859 | ord_intersection prol-src/ordsets.prolog /^ord_intersection([], Set2, [], Set2).$/ | ||
| 2860 | ord_intersection prol-src/ordsets.prolog /^ord_intersection(Sets, Intersection) :- $/ | ||
| 2861 | ord_intersect prol-src/ordsets.prolog /^ord_intersect([Head1|Tail1], [Head2|Tail2]) :-$/ | ||
| 3598 | ord_member prol-src/ordsets.prolog /^ord_member(X, [E|Es]) :-$/ | 2862 | ord_member prol-src/ordsets.prolog /^ord_member(X, [E|Es]) :-$/ |
| 3599 | ord_seteq prol-src/ordsets.prolog /^ord_seteq(Set1, Set2) :-$/ | 2863 | ord_seteq prol-src/ordsets.prolog /^ord_seteq(Set1, Set2) :-$/ |
| 3600 | ord_setproduct prol-src/ordsets.prolog /^ord_setproduct([], _, []).$/ | 2864 | ord_setproduct prol-src/ordsets.prolog /^ord_setproduct([], _, []).$/ |
| 3601 | ord_subset prol-src/ordsets.prolog /^ord_subset([], _).$/ | 2865 | ord_subset prol-src/ordsets.prolog /^ord_subset([], _).$/ |
| 3602 | ord_subtract prol-src/ordsets.prolog /^ord_subtract(Set1, Set2, Union) :-$/ | 2866 | ord_subtract prol-src/ordsets.prolog /^ord_subtract(Set1, Set2, Union) :-$/ |
| 3603 | ord_symdiff prol-src/ordsets.prolog /^ord_symdiff([], Set2, Set2).$/ | 2867 | ord_symdiff prol-src/ordsets.prolog /^ord_symdiff([], Set2, Set2).$/ |
| 3604 | ord_union prol-src/ordsets.prolog /^ord_union(Set1, Set2, Union) :-$/ | ||
| 3605 | ord_union prol-src/ordsets.prolog /^ord_union([], Union) :- !, Union = [].$/ | ||
| 3606 | ord_union4 prol-src/ordsets.prolog /^ord_union4(<, Head, Set1, Head2, Tail2, [Head|Unio/ | 2868 | ord_union4 prol-src/ordsets.prolog /^ord_union4(<, Head, Set1, Head2, Tail2, [Head|Unio/ |
| 3607 | ord_union_all prol-src/ordsets.prolog /^ord_union_all(1, [Set|Sets], Set, Sets) :- !.$/ | 2869 | ord_union_all prol-src/ordsets.prolog /^ord_union_all(1, [Set|Sets], Set, Sets) :- !.$/ |
| 2870 | ord_union prol-src/ordsets.prolog /^ord_union(Set1, Set2, Union) :-$/ | ||
| 2871 | ord_union prol-src/ordsets.prolog /^ord_union([], Union) :- !, Union = [].$/ | ||
| 2872 | OR y-src/cccp.c 10 | ||
| 3608 | oss html-src/softwarelibero.html /^Il movimento open source$/ | 2873 | oss html-src/softwarelibero.html /^Il movimento open source$/ |
| 3609 | otagseen c-src/etags.c 2475 | 2874 | otagseen c-src/etags.c 2475 |
| 3610 | outputTime cp-src/c.C 9 | 2875 | OTAGS make-src/Makefile /^OTAGS: oetags ${SRCS} srclist$/ |
| 2876 | /Otilde ps-src/rfc1245.ps /^\/Otilde \/OE \/oe \/endash \/emdash \/quotedblleft \/quo/ | ||
| 3611 | output_file perl-src/htlmify-cystic 35 | 2877 | output_file perl-src/htlmify-cystic 35 |
| 3612 | output_files perl-src/htlmify-cystic 32 | 2878 | output_files perl-src/htlmify-cystic 32 |
| 3613 | outputtable html-src/algrthms.html /^Output$/ | 2879 | outputtable html-src/algrthms.html /^Output$/ |
| 2880 | outputTime cp-src/c.C 9 | ||
| 3614 | outsyn prol-src/natded.prolog /^outsyn(['Any'],_).$/ | 2881 | outsyn prol-src/natded.prolog /^outsyn(['Any'],_).$/ |
| 3615 | p c-src/emacs/src/lisp.h 4673 | 2882 | OVERLAYP c-src/emacs/src/lisp.h /^OVERLAYP (Lisp_Object x)$/ |
| 3616 | p c-src/emacs/src/lisp.h 4679 | 2883 | Overview tex-src/gzip.texi /^@node Overview, Sample, Copying, Top$/ |
| 3617 | p.x forth-src/test-forth.fth /^ 1 CELLS +FIELD p.x \\ A single cell filed name/ | 2884 | PackageInspector objc-src/PackInsp.h /^@interface PackageInspector:WMInspector$/ |
| 3618 | p.y forth-src/test-forth.fth /^ 1 CELLS +FIELD p.y \\ A single cell field name/ | ||
| 3619 | p/f ada-src/etags-test-for.ada /^ function p pragma Import (C,$/ | ||
| 3620 | p/f ada-src/etags-test-for.ada /^function p ("p");$/ | ||
| 3621 | pD c-src/emacs/src/lisp.h 165 | ||
| 3622 | pD c-src/emacs/src/lisp.h 167 | ||
| 3623 | pD c-src/emacs/src/lisp.h 169 | ||
| 3624 | pD c-src/emacs/src/lisp.h 171 | ||
| 3625 | pI c-src/emacs/src/lisp.h 106 | ||
| 3626 | pI c-src/emacs/src/lisp.h 94 | ||
| 3627 | pI c-src/emacs/src/lisp.h 99 | ||
| 3628 | pMd c-src/emacs/src/lisp.h 150 | ||
| 3629 | pMd c-src/emacs/src/lisp.h 155 | ||
| 3630 | pMu c-src/emacs/src/lisp.h 151 | ||
| 3631 | pMu c-src/emacs/src/lisp.h 156 | ||
| 3632 | p_next c-src/etags.c 258 | ||
| 3633 | page tex-src/texinfo.tex /^ \\let\\page = \\oldpage$/ | ||
| 3634 | page tex-src/texinfo.tex /^ \\def\\page{%$/ | ||
| 3635 | page tex-src/texinfo.tex /^\\def\\page{\\par\\vfill\\supereject}$/ | ||
| 3636 | pagealignmacro tex-src/texinfo.tex /^\\global\\let\\pagealignmacro=\\chapoddpage$/ | 2885 | pagealignmacro tex-src/texinfo.tex /^\\global\\let\\pagealignmacro=\\chapoddpage$/ |
| 3637 | pagealignmacro tex-src/texinfo.tex /^\\global\\let\\pagealignmacro=\\chappager$/ | ||
| 3638 | pagealignmacro tex-src/texinfo.tex /^\\global\\let\\pagealignmacro=\\chappager}$/ | 2886 | pagealignmacro tex-src/texinfo.tex /^\\global\\let\\pagealignmacro=\\chappager}$/ |
| 2887 | pagealignmacro tex-src/texinfo.tex /^\\global\\let\\pagealignmacro=\\chappager$/ | ||
| 3639 | pagebody tex-src/texinfo.tex /^\\def\\pagebody#1{\\vbox to\\pageheight{\\boxmaxdepth=\\/ | 2888 | pagebody tex-src/texinfo.tex /^\\def\\pagebody#1{\\vbox to\\pageheight{\\boxmaxdepth=\\/ |
| 3640 | pagecontents tex-src/texinfo.tex /^\\gdef\\pagecontents#1{\\ifvoid\\topins\\else\\unvbox\\to/ | 2889 | pagecontents tex-src/texinfo.tex /^\\gdef\\pagecontents#1{\\ifvoid\\topins\\else\\unvbox\\to/ |
| 3641 | pagesize c-src/emacs/src/gmalloc.c 1707 | 2890 | /pagedimen ps-src/rfc1245.ps /^\/pagedimen { $/ |
| 2891 | pagesize c-src/emacs/src/gmalloc.c 1710 | ||
| 3642 | pagesofar tex-src/texinfo.tex /^\\def\\pagesofar{\\unvbox\\partialpage %$/ | 2892 | pagesofar tex-src/texinfo.tex /^\\def\\pagesofar{\\unvbox\\partialpage %$/ |
| 2893 | page tex-src/texinfo.tex /^ \\def\\page{%$/ | ||
| 2894 | page tex-src/texinfo.tex /^\\def\\page{\\par\\vfill\\supereject}$/ | ||
| 2895 | page tex-src/texinfo.tex /^ \\let\\page = \\oldpage$/ | ||
| 3643 | pair merc-src/accumulator.m /^:- import_module pair.$/ | 2896 | pair merc-src/accumulator.m /^:- import_module pair.$/ |
| 3644 | par tex-src/texinfo.tex /^\\let\\par=\\lisppar$/ | 2897 | /papersize ps-src/rfc1245.ps /^\/papersize {$/ |
| 3645 | par tex-src/texinfo.tex /^{\\let\\par=\\endgraf \\smallbreak}%$/ | ||
| 3646 | paragraphindent tex-src/texinfo.tex /^\\let\\paragraphindent=\\comment$/ | 2898 | paragraphindent tex-src/texinfo.tex /^\\let\\paragraphindent=\\comment$/ |
| 2899 | /paragraph ps-src/rfc1245.ps /^\/paragraph \/germandbls \/registered \/copyright \/tra/ | ||
| 2900 | /parenright ps-src/rfc1245.ps /^\/parenright \/asterisk \/plus \/comma \/hyphen \/period/ | ||
| 3647 | parent c-src/emacs/src/keyboard.c 8745 | 2901 | parent c-src/emacs/src/keyboard.c 8745 |
| 3648 | parent c-src/emacs/src/lisp.h 1590 | 2902 | parent c-src/emacs/src/lisp.h 1590 |
| 3649 | parse prol-src/natded.prolog /^parse(Ws,Cat):-$/ | 2903 | parseargdiscardspace tex-src/texinfo.tex /^\\gdef\\parseargdiscardspace {\\begingroup\\obeylines\\/ |
| 3650 | parseFromVars php-src/lce_functions.php /^ function parseFromVars($prefix)$/ | 2904 | parseargline tex-src/texinfo.tex /^\\def\\parseargline{\\begingroup \\obeylines \\parsearg/ |
| 2905 | parsearglinex tex-src/texinfo.tex /^\\gdef\\parsearglinex #1^^M{\\endgroup \\next {#1}}}$/ | ||
| 2906 | parsearg tex-src/texinfo.tex /^\\def\\parsearg #1{\\let\\next=#1\\begingroup\\obeylines/ | ||
| 2907 | parseargx tex-src/texinfo.tex /^\\def\\parseargx{%$/ | ||
| 2908 | parsebody\Edefmac tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ | ||
| 2909 | parsebody\Edefspec tex-src/texinfo.tex /^\\def\\defspec{\\defparsebody\\Edefspec\\defspecx\\defsp/ | ||
| 2910 | parsebody\Edeftypefun tex-src/texinfo.tex /^\\def\\deftypefun{\\defparsebody\\Edeftypefun\\deftypef/ | ||
| 2911 | parsebody\Edefun tex-src/texinfo.tex /^\\def\\defun{\\defparsebody\\Edefun\\defunx\\defunheader/ | ||
| 3651 | parse_c_expression y-src/cccp.y /^parse_c_expression (string)$/ | 2912 | parse_c_expression y-src/cccp.y /^parse_c_expression (string)$/ |
| 3652 | parse_cgi prol-src/natded.prolog /^parse_cgi(TokenList,KeyVals):-$/ | 2913 | parse_cgi prol-src/natded.prolog /^parse_cgi(TokenList,KeyVals):-$/ |
| 3653 | parse_error y-src/parse.y 82 | 2914 | parse_error y-src/parse.y 82 |
| 3654 | parse_escape y-src/cccp.y /^parse_escape (string_ptr)$/ | 2915 | parse_escape y-src/cccp.y /^parse_escape (string_ptr)$/ |
| 2916 | parseFromVars php-src/lce_functions.php /^ function parseFromVars($prefix)$/ | ||
| 3655 | parse_hash y-src/parse.y 64 | 2917 | parse_hash y-src/parse.y 64 |
| 3656 | parse_menu_item c-src/emacs/src/keyboard.c /^parse_menu_item (Lisp_Object item, int inmenubar)$/ | 2918 | parse_menu_item c-src/emacs/src/keyboard.c /^parse_menu_item (Lisp_Object item, int inmenubar)$/ |
| 3657 | parse_modifiers c-src/emacs/src/keyboard.c /^parse_modifiers (Lisp_Object symbol)$/ | 2919 | parse_modifiers c-src/emacs/src/keyboard.c /^parse_modifiers (Lisp_Object symbol)$/ |
| 3658 | parse_modifiers_uncached c-src/emacs/src/keyboard.c /^parse_modifiers_uncached (Lisp_Object symbol, ptrd/ | 2920 | parse_modifiers_uncached c-src/emacs/src/keyboard.c /^parse_modifiers_uncached (Lisp_Object symbol, ptrd/ |
| 3659 | parse_number y-src/cccp.y /^parse_number (olen)$/ | 2921 | parse_number y-src/cccp.y /^parse_number (olen)$/ |
| 3660 | parse_return y-src/parse.y 74 | 2922 | parse prol-src/natded.prolog /^parse(Ws,Cat):-$/ |
| 3661 | parse_return_error y-src/cccp.y 70 | 2923 | parse_return_error y-src/cccp.y 70 |
| 2924 | parse_return y-src/parse.y 74 | ||
| 3662 | parse_solitary_modifier c-src/emacs/src/keyboard.c /^parse_solitary_modifier (Lisp_Object symbol)$/ | 2925 | parse_solitary_modifier c-src/emacs/src/keyboard.c /^parse_solitary_modifier (Lisp_Object symbol)$/ |
| 3663 | parse_tool_bar_item c-src/emacs/src/keyboard.c /^parse_tool_bar_item (Lisp_Object key, Lisp_Object / | 2926 | parse_tool_bar_item c-src/emacs/src/keyboard.c /^parse_tool_bar_item (Lisp_Object key, Lisp_Object / |
| 3664 | parse_tree merc-src/accumulator.m /^:- import_module parse_tree.$/ | 2927 | parse_tree merc-src/accumulator.m /^:- import_module parse_tree.$/ |
| 3665 | parsearg tex-src/texinfo.tex /^\\def\\parsearg #1{\\let\\next=#1\\begingroup\\obeylines/ | 2928 | par tex-src/texinfo.tex /^{\\let\\par=\\endgraf \\smallbreak}%$/ |
| 3666 | parseargdiscardspace tex-src/texinfo.tex /^\\gdef\\parseargdiscardspace {\\begingroup\\obeylines\\/ | 2929 | par tex-src/texinfo.tex /^\\let\\par=\\lisppar$/ |
| 3667 | parseargline tex-src/texinfo.tex /^\\def\\parseargline{\\begingroup \\obeylines \\parsearg/ | 2930 | Pascal_functions c-src/etags.c /^Pascal_functions (FILE *inf)$/ |
| 3668 | parsearglinex tex-src/texinfo.tex /^\\gdef\\parsearglinex #1^^M{\\endgroup \\next {#1}}}$/ | 2931 | Pascal_help c-src/etags.c 621 |
| 3669 | parseargx tex-src/texinfo.tex /^\\def\\parseargx{%$/ | 2932 | Pascal_suffixes c-src/etags.c 619 |
| 3670 | parsebody\Edefmac tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ | 2933 | PASSRC make-src/Makefile /^PASSRC=common.pas$/ |
| 3671 | parsebody\Edefspec tex-src/texinfo.tex /^\\def\\defspec{\\defparsebody\\Edefspec\\defspecx\\defsp/ | ||
| 3672 | parsebody\Edeftypefun tex-src/texinfo.tex /^\\def\\deftypefun{\\defparsebody\\Edeftypefun\\deftypef/ | ||
| 3673 | parsebody\Edefun tex-src/texinfo.tex /^\\def\\defun{\\defparsebody\\Edefun\\defunx\\defunheader/ | ||
| 3674 | pat c-src/etags.c 262 | 2934 | pat c-src/etags.c 262 |
| 3675 | pattern c-src/etags.c 260 | 2935 | pattern c-src/etags.c 260 |
| 3676 | pchapsepmacro tex-src/texinfo.tex /^\\global\\let\\pchapsepmacro=\\chapbreak$/ | 2936 | pchapsepmacro tex-src/texinfo.tex /^\\global\\let\\pchapsepmacro=\\chapbreak$/ |
| 3677 | pchapsepmacro tex-src/texinfo.tex /^\\global\\let\\pchapsepmacro=\\chapoddpage$/ | 2937 | pchapsepmacro tex-src/texinfo.tex /^\\global\\let\\pchapsepmacro=\\chapoddpage$/ |
| 3678 | pchapsepmacro tex-src/texinfo.tex /^\\global\\let\\pchapsepmacro=\\chappager$/ | 2938 | pchapsepmacro tex-src/texinfo.tex /^\\global\\let\\pchapsepmacro=\\chappager$/ |
| 2939 | p c-src/emacs/src/lisp.h 4673 | ||
| 2940 | p c-src/emacs/src/lisp.h 4679 | ||
| 2941 | pD c-src/emacs/src/lisp.h 165 | ||
| 2942 | pD c-src/emacs/src/lisp.h 167 | ||
| 2943 | pD c-src/emacs/src/lisp.h 169 | ||
| 2944 | pD c-src/emacs/src/lisp.h 171 | ||
| 3679 | pdlcount c-src/emacs/src/lisp.h 3046 | 2945 | pdlcount c-src/emacs/src/lisp.h 3046 |
| 2946 | PDT c-src/h.h /^ Date 04 May 87 235311 PDT (Mon)$/ | ||
| 3680 | pending-delete-mode el-src/TAGTEST.EL /^(defalias 'pending-delete-mode 'delete-selection-m/ | 2947 | pending-delete-mode el-src/TAGTEST.EL /^(defalias 'pending-delete-mode 'delete-selection-m/ |
| 3681 | pending_funcalls c-src/emacs/src/keyboard.c 4377 | 2948 | pending_funcalls c-src/emacs/src/keyboard.c 4377 |
| 3682 | pending_signals c-src/emacs/src/keyboard.c 80 | 2949 | pending_signals c-src/emacs/src/keyboard.c 80 |
| 2950 | /periodcentered ps-src/rfc1245.ps /^\/periodcentered \/quotesinglbase \/quotedblbase \/per/ | ||
| 2951 | Perl_functions c-src/etags.c /^Perl_functions (FILE *inf)$/ | ||
| 2952 | Perl_help c-src/etags.c 630 | ||
| 2953 | Perl_interpreters c-src/etags.c 628 | ||
| 2954 | PERLSRC make-src/Makefile /^PERLSRC=htlmify-cystic yagrip.pl kai-test.pl mirro/ | ||
| 2955 | Perl_suffixes c-src/etags.c 626 | ||
| 2956 | p/f ada-src/etags-test-for.ada /^function p ("p");$/ | ||
| 2957 | p/f ada-src/etags-test-for.ada /^ function p pragma Import (C,$/ | ||
| 3683 | pfatal c-src/etags.c /^pfatal (const char *s1)$/ | 2958 | pfatal c-src/etags.c /^pfatal (const char *s1)$/ |
| 3684 | pfdset c-src/h.h 57 | 2959 | pfdset c-src/h.h 57 |
| 3685 | pfnote c-src/etags.c /^pfnote (char *name, bool is_func, char *linestart,/ | 2960 | pfnote c-src/etags.c /^pfnote (char *name, bool is_func, char *linestart,/ |
| 2961 | /PF ps-src/rfc1245.ps /^\/PF { $/ | ||
| 2962 | PHP_functions c-src/etags.c /^PHP_functions (FILE *inf)$/ | ||
| 2963 | PHP_help c-src/etags.c 639 | ||
| 2964 | PHPSRC make-src/Makefile /^PHPSRC=lce_functions.php ptest.php sendmail.php$/ | ||
| 2965 | PHP_suffixes c-src/etags.c 637 | ||
| 2966 | pI c-src/emacs/src/lisp.h 106 | ||
| 2967 | pI c-src/emacs/src/lisp.h 94 | ||
| 2968 | pI c-src/emacs/src/lisp.h 99 | ||
| 3686 | pindex tex-src/texinfo.tex /^\\def\\pindex {\\pgindex}$/ | 2969 | pindex tex-src/texinfo.tex /^\\def\\pindex {\\pgindex}$/ |
| 3687 | pinned c-src/emacs/src/lisp.h 679 | 2970 | pinned c-src/emacs/src/lisp.h 679 |
| 2971 | Pkg1/b ada-src/etags-test-for.ada /^package body Pkg1 is$/ | ||
| 2972 | Pkg1/b ada-src/waroquiers.ada /^package body Pkg1 is$/ | ||
| 2973 | Pkg1_Func1/f ada-src/etags-test-for.ada /^ function Pkg1_Func1 return Boolean;$/ | ||
| 2974 | Pkg1_Func1/f ada-src/etags-test-for.ada /^function Pkg1_Func1 return Boolean is$/ | ||
| 2975 | Pkg1_Func1/f ada-src/etags-test-for.ada /^ function Pkg1_Func1 return Boolean is separate;$/ | ||
| 2976 | Pkg1_Func1/f ada-src/waroquiers.ada /^ function Pkg1_Func1 return Boolean;$/ | ||
| 2977 | Pkg1_Func1/f ada-src/waroquiers.ada /^function Pkg1_Func1 return Boolean is$/ | ||
| 2978 | Pkg1_Func1/f ada-src/waroquiers.ada /^ function Pkg1_Func1 return Boolean is separate;$/ | ||
| 2979 | Pkg1_Func2/f ada-src/etags-test-for.ada /^ function Pkg1_Func2 (Ijk : Integer; Z : Integer)/ | ||
| 2980 | Pkg1_Func2/f ada-src/waroquiers.ada /^ function Pkg1_Func2 (Ijk : Integer; Z : Integer)/ | ||
| 2981 | Pkg1_Pkg1/b ada-src/etags-test-for.ada /^package body Pkg1_Pkg1 is$/ | ||
| 2982 | Pkg1_Pkg1/b ada-src/etags-test-for.ada /^ package body Pkg1_Pkg1 is separate;$/ | ||
| 2983 | Pkg1_Pkg1/b ada-src/waroquiers.ada /^package body Pkg1_Pkg1 is$/ | ||
| 2984 | Pkg1_Pkg1/b ada-src/waroquiers.ada /^ package body Pkg1_Pkg1 is separate;$/ | ||
| 2985 | Pkg1_Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Pkg1_Proc1;$/ | ||
| 2986 | Pkg1_Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Pkg1_Proc1 is$/ | ||
| 2987 | Pkg1_Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Pkg1_Proc1;$/ | ||
| 2988 | Pkg1_Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Pkg1_Proc1 is$/ | ||
| 2989 | Pkg1_Pkg1/s ada-src/etags-test-for.ada /^ package Pkg1_Pkg1 is$/ | ||
| 2990 | Pkg1_Pkg1/s ada-src/waroquiers.ada /^ package Pkg1_Pkg1 is$/ | ||
| 2991 | Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc1;$/ | ||
| 2992 | Pkg1_Proc1/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc1 is$/ | ||
| 2993 | Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc1;$/ | ||
| 2994 | Pkg1_Proc1/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc1 is$/ | ||
| 2995 | Pkg1_Proc2/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc2 (I : Integer);$/ | ||
| 2996 | Pkg1_Proc2/p ada-src/etags-test-for.ada /^ procedure Pkg1_Proc2 (I : Integer) is$/ | ||
| 2997 | Pkg1_Proc2/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc2 (I : Integer);$/ | ||
| 2998 | Pkg1_Proc2/p ada-src/waroquiers.ada /^ procedure Pkg1_Proc2 (I : Integer) is$/ | ||
| 2999 | Pkg1/s ada-src/etags-test-for.ada /^package Pkg1 is$/ | ||
| 3000 | Pkg1/s ada-src/waroquiers.ada /^package Pkg1 is$/ | ||
| 3001 | plainc c-src/etags.c 2934 | ||
| 3688 | plain_C_entries c-src/etags.c /^plain_C_entries (FILE *inf)$/ | 3002 | plain_C_entries c-src/etags.c /^plain_C_entries (FILE *inf)$/ |
| 3689 | plain_C_suffixes c-src/etags.c 643 | 3003 | plain_C_suffixes c-src/etags.c 643 |
| 3690 | plainc c-src/etags.c 2934 | ||
| 3691 | plainsecheading tex-src/texinfo.tex /^\\def\\plainsecheading #1{\\secheadingi {#1}}$/ | 3004 | plainsecheading tex-src/texinfo.tex /^\\def\\plainsecheading #1{\\secheadingi {#1}}$/ |
| 3692 | plist c-src/emacs/src/lisp.h 2040 | 3005 | plist c-src/emacs/src/lisp.h 2040 |
| 3693 | plist c-src/emacs/src/lisp.h 697 | 3006 | plist c-src/emacs/src/lisp.h 697 |
| 3694 | plus cp-src/functions.cpp /^void Date::plus ( int days , int month , int year / | 3007 | plus cp-src/functions.cpp /^void Date::plus ( int days , int month , int year / |
| 3695 | plus go-src/test1.go 5 | 3008 | plus go-src/test1.go 5 |
| 3696 | plusvalseq prol-src/natded.prolog /^plusvalseq([]) --> [].$/ | 3009 | plusvalseq prol-src/natded.prolog /^plusvalseq([]) --> [].$/ |
| 3010 | pMd c-src/emacs/src/lisp.h 150 | ||
| 3011 | pMd c-src/emacs/src/lisp.h 155 | ||
| 3012 | pMu c-src/emacs/src/lisp.h 151 | ||
| 3013 | pMu c-src/emacs/src/lisp.h 156 | ||
| 3014 | p_next c-src/etags.c 258 | ||
| 3015 | POEntryAD php-src/lce_functions.php 29 | ||
| 3016 | POEntry php-src/lce_functions.php 105 | ||
| 3017 | POEntry php-src/lce_functions.php /^ function POEntry()$/ | ||
| 3018 | pointer c-src/emacs/src/lisp.h 2125 | ||
| 3697 | point forth-src/test-forth.fth /^BEGIN-STRUCTURE point \\ create the named structure/ | 3019 | point forth-src/test-forth.fth /^BEGIN-STRUCTURE point \\ create the named structure/ |
| 3698 | point tex-src/texinfo.tex /^\\def\\point{$\\star$}$/ | 3020 | point tex-src/texinfo.tex /^\\def\\point{$\\star$}$/ |
| 3699 | pointer c-src/emacs/src/lisp.h 2125 | ||
| 3700 | poll_for_input c-src/emacs/src/keyboard.c /^poll_for_input (struct atimer *timer)$/ | ||
| 3701 | poll_for_input_1 c-src/emacs/src/keyboard.c /^poll_for_input_1 (void)$/ | 3021 | poll_for_input_1 c-src/emacs/src/keyboard.c /^poll_for_input_1 (void)$/ |
| 3022 | poll_for_input c-src/emacs/src/keyboard.c /^poll_for_input (struct atimer *timer)$/ | ||
| 3702 | poll_suppress_count c-src/emacs/src/keyboard.c 1908 | 3023 | poll_suppress_count c-src/emacs/src/keyboard.c 1908 |
| 3703 | poll_suppress_count c-src/emacs/src/lisp.h 3047 | 3024 | poll_suppress_count c-src/emacs/src/lisp.h 3047 |
| 3704 | poll_timer c-src/emacs/src/keyboard.c 1915 | 3025 | poll_timer c-src/emacs/src/keyboard.c 1915 |
| 3705 | pop-tag-mark el-src/emacs/lisp/progmodes/etags.el /^(defalias 'pop-tag-mark 'xref-pop-marker-stack)$/ | ||
| 3706 | pop_kboard c-src/emacs/src/keyboard.c /^pop_kboard (void)$/ | ||
| 3707 | popclass_above c-src/etags.c /^popclass_above (int bracelev)$/ | 3026 | popclass_above c-src/etags.c /^popclass_above (int bracelev)$/ |
| 3027 | pop_kboard c-src/emacs/src/keyboard.c /^pop_kboard (void)$/ | ||
| 3028 | pop-tag-mark el-src/emacs/lisp/progmodes/etags.el /^(defalias 'pop-tag-mark 'xref-pop-marker-stack)$/ | ||
| 3029 | POReader php-src/lce_functions.php 163 | ||
| 3030 | POReader php-src/lce_functions.php /^ function POReader($domain, $filename)$/ | ||
| 3031 | PORManager php-src/lce_functions.php 498 | ||
| 3032 | PORManager php-src/lce_functions.php /^ function PORManager()$/ | ||
| 3708 | position_to_Time c-src/emacs/src/keyboard.c /^position_to_Time (ptrdiff_t pos)$/ | 3033 | position_to_Time c-src/emacs/src/keyboard.c /^position_to_Time (ptrdiff_t pos)$/ |
| 3709 | posix_memalign c-src/emacs/src/gmalloc.c /^posix_memalign (void **memptr, size_t alignment, s/ | 3034 | posix_memalign c-src/emacs/src/gmalloc.c /^posix_memalign (void **memptr, size_t alignment, s/ |
| 3710 | posn-at-point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/ | 3035 | posn-at-point c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_p/ |
| 3711 | posn-at-x-y c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, / | 3036 | posn-at-x-y c-src/emacs/src/keyboard.c /^DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, / |
| 3712 | possible_sum_sign y-src/cccp.y /^#define possible_sum_sign(a, b, sum) ((((a) ^ (b))/ | 3037 | possible_sum_sign y-src/cccp.y /^#define possible_sum_sign(a, b, sum) ((((a) ^ (b))/ |
| 3038 | PostControls pyt-src/server.py /^ def PostControls(self):$/ | ||
| 3713 | post pyt-src/server.py /^ def post(self):$/ | 3039 | post pyt-src/server.py /^ def post(self):$/ |
| 3040 | POSTSCRIPTFLAGS make-src/Makefile /^POSTSCRIPTFLAGS=--language=none --regex='#\/[^ \\t{]/ | ||
| 3714 | pot_etags_version c-src/etags.c 81 | 3041 | pot_etags_version c-src/etags.c 81 |
| 3715 | pp1 c-src/dostorture.c /^int pp1($/ | 3042 | pp1 c-src/dostorture.c /^int pp1($/ |
| 3716 | pp1 c-src/torture.c /^int pp1($/ | 3043 | pp1 c-src/torture.c /^int pp1($/ |
| @@ -3727,139 +3054,243 @@ pp_html_table_fitch_tree prol-src/natded.prolog /^pp_html_table_fitch_tree(T):-$ | |||
| 3727 | pp_html_table_tree prol-src/natded.prolog /^pp_html_table_tree(T):-$/ | 3054 | pp_html_table_tree prol-src/natded.prolog /^pp_html_table_tree(T):-$/ |
| 3728 | pp_html_tree prol-src/natded.prolog /^pp_html_tree(ass(Syn,V,'$VAR'(N))):-$/ | 3055 | pp_html_tree prol-src/natded.prolog /^pp_html_tree(ass(Syn,V,'$VAR'(N))):-$/ |
| 3729 | pp_html_trees prol-src/natded.prolog /^pp_html_trees([T|Ts],N,M):-$/ | 3056 | pp_html_trees prol-src/natded.prolog /^pp_html_trees([T|Ts],N,M):-$/ |
| 3730 | pp_lam prol-src/natded.prolog /^pp_lam(Var^Alpha):-$/ | ||
| 3731 | pp_lam_bracket prol-src/natded.prolog /^pp_lam_bracket(A^B):-$/ | 3057 | pp_lam_bracket prol-src/natded.prolog /^pp_lam_bracket(A^B):-$/ |
| 3732 | pp_lam_paren prol-src/natded.prolog /^pp_lam_paren(Var^Alpha):-$/ | 3058 | pp_lam_paren prol-src/natded.prolog /^pp_lam_paren(Var^Alpha):-$/ |
| 3059 | pp_lam prol-src/natded.prolog /^pp_lam(Var^Alpha):-$/ | ||
| 3733 | pp_paren prol-src/natded.prolog /^pp_paren(C):-$/ | 3060 | pp_paren prol-src/natded.prolog /^pp_paren(C):-$/ |
| 3734 | pp_rule prol-src/natded.prolog /^pp_rule(fe):-write('\/E').$/ | 3061 | pp_rule prol-src/natded.prolog /^pp_rule(fe):-write('\/E').$/ |
| 3735 | pp_syn prol-src/natded.prolog /^pp_syn(A\/B):-$/ | 3062 | /P ps-src/rfc1245.ps /^\/P { $/ |
| 3736 | pp_syn_back prol-src/natded.prolog /^pp_syn_back(A\/B):-$/ | 3063 | pp_syn_back prol-src/natded.prolog /^pp_syn_back(A\/B):-$/ |
| 3737 | pp_syn_paren prol-src/natded.prolog /^pp_syn_paren(A\/B):-$/ | 3064 | pp_syn_paren prol-src/natded.prolog /^pp_syn_paren(A\/B):-$/ |
| 3065 | pp_syn prol-src/natded.prolog /^pp_syn(A\/B):-$/ | ||
| 3738 | pp_tree prol-src/natded.prolog /^pp_tree(T):-$/ | 3066 | pp_tree prol-src/natded.prolog /^pp_tree(T):-$/ |
| 3739 | pp_trees prol-src/natded.prolog /^pp_trees([T|Ts],Column):-$/ | 3067 | pp_trees prol-src/natded.prolog /^pp_trees([T|Ts],Column):-$/ |
| 3740 | pp_word prol-src/natded.prolog /^pp_word(W):-$/ | ||
| 3741 | pp_word_list prol-src/natded.prolog /^pp_word_list([]).$/ | 3068 | pp_word_list prol-src/natded.prolog /^pp_word_list([]).$/ |
| 3742 | pp_word_list_rest prol-src/natded.prolog /^pp_word_list_rest([]).$/ | 3069 | pp_word_list_rest prol-src/natded.prolog /^pp_word_list_rest([]).$/ |
| 3070 | pp_word prol-src/natded.prolog /^pp_word(W):-$/ | ||
| 3071 | Pre_Call_State/t ada-src/2ataspri.ads /^ type Pre_Call_State is new System.Address;$/ | ||
| 3072 | .PRECIOUS make-src/Makefile /^.PRECIOUS: ETAGS CTAGS ETAGS16 CTAGS16 ETAGS17 CTA/ | ||
| 3743 | predicate c-src/emacs/src/lisp.h 2307 | 3073 | predicate c-src/emacs/src/lisp.h 2307 |
| 3074 | prev c.c 175 | ||
| 3744 | prev c-src/emacs/src/gmalloc.c 165 | 3075 | prev c-src/emacs/src/gmalloc.c 165 |
| 3745 | prev c-src/emacs/src/gmalloc.c 189 | 3076 | prev c-src/emacs/src/gmalloc.c 189 |
| 3746 | prev c-src/emacs/src/lisp.h 2191 | 3077 | prev c-src/emacs/src/lisp.h 2191 |
| 3747 | prev c.c 175 | ||
| 3748 | primary tex-src/texinfo.tex /^\\def\\primary #1{\\line{#1\\hfil}}$/ | 3078 | primary tex-src/texinfo.tex /^\\def\\primary #1{\\line{#1\\hfil}}$/ |
| 3749 | print tex-src/texinfo.tex /^\\def\\print{\\leavevmode\\lower.1ex\\hbox to 1em{\\hfil/ | 3079 | PrintAdd go-src/test1.go /^func (n intNumber) PrintAdd() {$/ |
| 3750 | print tex-src/texinfo.tex /^\\def\\print{\\realbackslash print}$/ | 3080 | PrintAdd go-src/test1.go /^func (s str) PrintAdd() {$/ |
| 3751 | printClassification php-src/lce_functions.php /^ function printClassification()$/ | 3081 | printClassification php-src/lce_functions.php /^ function printClassification()$/ |
| 3752 | print_help c-src/etags.c /^print_help (argument *argbuffer)$/ | ||
| 3753 | print_language_names c-src/etags.c /^print_language_names (void)$/ | ||
| 3754 | print_version c-src/etags.c /^print_version (void)$/ | ||
| 3755 | printedmanual tex-src/texinfo.tex /^\\def\\printedmanual{\\ignorespaces #5}%$/ | 3082 | printedmanual tex-src/texinfo.tex /^\\def\\printedmanual{\\ignorespaces #5}%$/ |
| 3756 | printedmanual tex-src/texinfo.tex /^section ``\\printednodename'' in \\cite{\\printedmanu/ | 3083 | printedmanual tex-src/texinfo.tex /^section ``\\printednodename'' in \\cite{\\printedmanu/ |
| 3757 | printednodename tex-src/texinfo.tex /^\\def\\printednodename{\\ignorespaces #1}%$/ | 3084 | printednodename tex-src/texinfo.tex /^\\def\\printednodename{\\ignorespaces #1}%$/ |
| 3758 | printednodename tex-src/texinfo.tex /^\\def\\printednodename{\\ignorespaces #3}%$/ | 3085 | printednodename tex-src/texinfo.tex /^\\def\\printednodename{\\ignorespaces #3}%$/ |
| 3086 | print_help c-src/etags.c /^print_help (argument *argbuffer)$/ | ||
| 3759 | printindex tex-src/texinfo.tex /^\\def\\printindex{\\parsearg\\doprintindex}$/ | 3087 | printindex tex-src/texinfo.tex /^\\def\\printindex{\\parsearg\\doprintindex}$/ |
| 3088 | print_language_names c-src/etags.c /^print_language_names (void)$/ | ||
| 3760 | printmax_t c-src/emacs/src/lisp.h 148 | 3089 | printmax_t c-src/emacs/src/lisp.h 148 |
| 3761 | printmax_t c-src/emacs/src/lisp.h 153 | 3090 | printmax_t c-src/emacs/src/lisp.h 153 |
| 3091 | print tex-src/texinfo.tex /^\\def\\print{\\leavevmode\\lower.1ex\\hbox to 1em{\\hfil/ | ||
| 3092 | print tex-src/texinfo.tex /^\\def\\print{\\realbackslash print}$/ | ||
| 3093 | PRINT_UNDOCUMENTED_OPTIONS_HELP c-src/etags.c 804 | ||
| 3094 | print_version c-src/etags.c /^print_version (void)$/ | ||
| 3095 | Private objc-src/Subprocess.m /^@interface Subprocess(Private)$/ | ||
| 3096 | Private_T/b ada-src/etags-test-for.ada /^ task body Private_T is$/ | ||
| 3097 | Private_T/b ada-src/waroquiers.ada /^ task body Private_T is$/ | ||
| 3098 | Private_T/k ada-src/etags-test-for.ada /^ task Private_T;$/ | ||
| 3099 | Private_T/k ada-src/waroquiers.ada /^ task Private_T;$/ | ||
| 3100 | Private_T/p ada-src/etags-test-for.ada /^ procedure Private_T;$/ | ||
| 3101 | Private_T/p ada-src/etags-test-for.ada /^ procedure Private_T is$/ | ||
| 3102 | Private_T/p ada-src/waroquiers.ada /^ procedure Private_T;$/ | ||
| 3103 | Private_T/p ada-src/waroquiers.ada /^ procedure Private_T is$/ | ||
| 3104 | Private_T/t ada-src/etags-test-for.ada /^ type Private_T is$/ | ||
| 3105 | Private_T/t ada-src/etags-test-for.ada /^ type Private_T is private;$/ | ||
| 3106 | Private_T/t ada-src/waroquiers.ada /^ type Private_T is$/ | ||
| 3107 | Private_T/t ada-src/waroquiers.ada /^ type Private_T is private;$/ | ||
| 3108 | Problems tex-src/gzip.texi /^@node Problems, Concept Index, Tapes, Top$/ | ||
| 3762 | proc c-src/h.h 87 | 3109 | proc c-src/h.h 87 |
| 3763 | process_file c-src/etags.c /^process_file (FILE *fh, char *fn, language *lang)$/ | 3110 | process_file c-src/etags.c /^process_file (FILE *fh, char *fn, language *lang)$/ |
| 3764 | process_file_name c-src/etags.c /^process_file_name (char *file, language *lang)$/ | 3111 | process_file_name c-src/etags.c /^process_file_name (char *file, language *lang)$/ |
| 3112 | PROCESSP c-src/emacs/src/lisp.h /^PROCESSP (Lisp_Object a)$/ | ||
| 3765 | process_pending_signals c-src/emacs/src/keyboard.c /^process_pending_signals (void)$/ | 3113 | process_pending_signals c-src/emacs/src/keyboard.c /^process_pending_signals (void)$/ |
| 3766 | process_special_events c-src/emacs/src/keyboard.c /^process_special_events (void)$/ | 3114 | process_special_events c-src/emacs/src/keyboard.c /^process_special_events (void)$/ |
| 3767 | process_tool_bar_item c-src/emacs/src/keyboard.c /^process_tool_bar_item (Lisp_Object key, Lisp_Objec/ | 3115 | process_tool_bar_item c-src/emacs/src/keyboard.c /^process_tool_bar_item (Lisp_Object key, Lisp_Objec/ |
| 3116 | Proc/t ada-src/2ataspri.ads /^ type Proc is access procedure (Addr : System.Ad/ | ||
| 3768 | prof make-src/Makefile /^prof: ETAGS$/ | 3117 | prof make-src/Makefile /^prof: ETAGS$/ |
| 3769 | prolog_atom c-src/etags.c /^prolog_atom (char *s, size_t pos)$/ | 3118 | prolog_atom c-src/etags.c /^prolog_atom (char *s, size_t pos)$/ |
| 3119 | Prolog_functions c-src/etags.c /^Prolog_functions (FILE *inf)$/ | ||
| 3120 | Prolog_help c-src/etags.c 654 | ||
| 3770 | prolog_pr c-src/etags.c /^prolog_pr (char *s, char *last)$/ | 3121 | prolog_pr c-src/etags.c /^prolog_pr (char *s, char *last)$/ |
| 3771 | prolog_skip_comment c-src/etags.c /^prolog_skip_comment (linebuffer *plb, FILE *inf)$/ | 3122 | prolog_skip_comment c-src/etags.c /^prolog_skip_comment (linebuffer *plb, FILE *inf)$/ |
| 3123 | Prolog_suffixes c-src/etags.c 652 | ||
| 3124 | PROLSRC make-src/Makefile /^PROLSRC=ordsets.prolog natded.prolog$/ | ||
| 3125 | PROP c-src/emacs/src/keyboard.c 8379 | ||
| 3126 | PROP c-src/emacs/src/keyboard.c /^#define PROP(IDX) AREF (tool_bar_item_properties, / | ||
| 3772 | prop c-src/etags.c 209 | 3127 | prop c-src/etags.c 209 |
| 3128 | PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) \/* empty *\/$/ | ||
| 3129 | PROTECT_MALLOC_STATE c-src/emacs/src/gmalloc.c /^#define PROTECT_MALLOC_STATE(PROT) protect_malloc_/ | ||
| 3773 | protect_malloc_state c-src/emacs/src/gmalloc.c /^protect_malloc_state (int protect_p)$/ | 3130 | protect_malloc_state c-src/emacs/src/gmalloc.c /^protect_malloc_state (int protect_p)$/ |
| 3774 | ptexL tex-src/texinfo.tex /^\\let\\ptexL=\\L$/ | 3131 | PRTPKG f-src/entry.for /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/ |
| 3132 | PRTPKG f-src/entry.strange /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/ | ||
| 3133 | PRTPKG f-src/entry.strange_suffix /^ LOGICAL FUNCTION PRTPKG ( SHORT, LONG, EXPL,/ | ||
| 3134 | PSEUDO c-src/sysdep.h /^#define PSEUDO(name, syscall_name, args) / | ||
| 3135 | PSEUDOVECSIZE c-src/emacs/src/lisp.h /^#define PSEUDOVECSIZE(type, nonlispfield) \\$/ | ||
| 3136 | PSEUDOVECTOR_AREA_BITS c-src/emacs/src/lisp.h 818 | ||
| 3137 | PSEUDOVECTOR_FLAG c-src/emacs/src/lisp.h 774 | ||
| 3138 | PSEUDOVECTORP c-src/emacs/src/lisp.h /^PSEUDOVECTORP (Lisp_Object a, int code)$/ | ||
| 3139 | PSEUDOVECTOR_REST_BITS c-src/emacs/src/lisp.h 813 | ||
| 3140 | PSEUDOVECTOR_REST_MASK c-src/emacs/src/lisp.h 814 | ||
| 3141 | PSEUDOVECTOR_SIZE_BITS c-src/emacs/src/lisp.h 808 | ||
| 3142 | PSEUDOVECTOR_SIZE_MASK c-src/emacs/src/lisp.h 809 | ||
| 3143 | PSEUDOVECTOR_TYPEP c-src/emacs/src/lisp.h /^PSEUDOVECTOR_TYPEP (struct vectorlike_header *a, i/ | ||
| 3144 | PS_functions c-src/etags.c /^PS_functions (FILE *inf)$/ | ||
| 3145 | PS_help c-src/etags.c 649 | ||
| 3146 | PSSRC make-src/Makefile /^PSSRC=rfc1245.ps$/ | ||
| 3147 | PS_suffixes c-src/etags.c 647 | ||
| 3775 | ptexb tex-src/texinfo.tex /^\\let\\ptexb=\\b$/ | 3148 | ptexb tex-src/texinfo.tex /^\\let\\ptexb=\\b$/ |
| 3776 | ptexbullet tex-src/texinfo.tex /^\\let\\ptexbullet=\\bullet$/ | 3149 | ptexbullet tex-src/texinfo.tex /^\\let\\ptexbullet=\\bullet$/ |
| 3777 | ptexc tex-src/texinfo.tex /^\\let\\ptexc=\\c$/ | 3150 | ptexc tex-src/texinfo.tex /^\\let\\ptexc=\\c$/ |
| 3778 | ptexdot tex-src/texinfo.tex /^\\let\\ptexdot=\\.$/ | ||
| 3779 | ptexdots tex-src/texinfo.tex /^\\let\\ptexdots=\\dots$/ | 3151 | ptexdots tex-src/texinfo.tex /^\\let\\ptexdots=\\dots$/ |
| 3152 | ptexdot tex-src/texinfo.tex /^\\let\\ptexdot=\\.$/ | ||
| 3780 | ptexend tex-src/texinfo.tex /^\\let\\ptexend=\\end$/ | 3153 | ptexend tex-src/texinfo.tex /^\\let\\ptexend=\\end$/ |
| 3781 | ptexequiv tex-src/texinfo.tex /^\\let\\ptexequiv = \\equiv$/ | 3154 | ptexequiv tex-src/texinfo.tex /^\\let\\ptexequiv = \\equiv$/ |
| 3782 | ptexfootnote tex-src/texinfo.tex /^\\let\\ptexfootnote=\\footnote$/ | 3155 | ptexfootnote tex-src/texinfo.tex /^\\let\\ptexfootnote=\\footnote$/ |
| 3783 | ptexi tex-src/texinfo.tex /^\\let\\ptexi=\\i$/ | 3156 | ptexi tex-src/texinfo.tex /^\\let\\ptexi=\\i$/ |
| 3784 | ptexl tex-src/texinfo.tex /^\\let\\ptexl=\\l$/ | ||
| 3785 | ptexlbrace tex-src/texinfo.tex /^\\let\\ptexlbrace=\\{$/ | 3157 | ptexlbrace tex-src/texinfo.tex /^\\let\\ptexlbrace=\\{$/ |
| 3158 | ptexl tex-src/texinfo.tex /^\\let\\ptexl=\\l$/ | ||
| 3159 | ptexL tex-src/texinfo.tex /^\\let\\ptexL=\\L$/ | ||
| 3786 | ptexrbrace tex-src/texinfo.tex /^\\let\\ptexrbrace=\\}$/ | 3160 | ptexrbrace tex-src/texinfo.tex /^\\let\\ptexrbrace=\\}$/ |
| 3787 | ptexstar tex-src/texinfo.tex /^\\let\\ptexstar=\\*$/ | 3161 | ptexstar tex-src/texinfo.tex /^\\let\\ptexstar=\\*$/ |
| 3788 | ptext tex-src/texinfo.tex /^\\let\\ptext=\\t$/ | 3162 | ptext tex-src/texinfo.tex /^\\let\\ptext=\\t$/ |
| 3789 | pthread_mutexattr_setprio_ceiling/f ada-src/2ataspri.adb /^ function pthread_mutexattr_setprio_ceiling$/ | 3163 | pthread_mutexattr_setprio_ceiling/f ada-src/2ataspri.adb /^ function pthread_mutexattr_setprio_ceiling$/ |
| 3790 | pthread_mutexattr_setprotocol/f ada-src/2ataspri.adb /^ function pthread_mutexattr_setprotocol$/ | 3164 | pthread_mutexattr_setprotocol/f ada-src/2ataspri.adb /^ function pthread_mutexattr_setprotocol$/ |
| 3165 | PTY_LENGTH objc-src/Subprocess.m 21 | ||
| 3166 | PTY_TEMPLATE objc-src/Subprocess.m 20 | ||
| 3167 | Public_T/t ada-src/etags-test-for.ada /^ type Public_T is$/ | ||
| 3168 | Public_T/t ada-src/waroquiers.ada /^ type Public_T is$/ | ||
| 3791 | purpose c-src/emacs/src/lisp.h 1594 | 3169 | purpose c-src/emacs/src/lisp.h 1594 |
| 3792 | push_kboard c-src/emacs/src/keyboard.c /^push_kboard (struct kboard *k)$/ | ||
| 3793 | pushclass_above c-src/etags.c /^pushclass_above (int bracelev, char *str, int len)/ | 3170 | pushclass_above c-src/etags.c /^pushclass_above (int bracelev, char *str, int len)/ |
| 3171 | PUSH_C_STR c-src/emacs/src/keyboard.c /^#define PUSH_C_STR(str, listvar) \\$/ | ||
| 3172 | PUSH_HANDLER c-src/emacs/src/lisp.h /^#define PUSH_HANDLER(c, tag_ch_val, handlertype) \\/ | ||
| 3173 | push_kboard c-src/emacs/src/keyboard.c /^push_kboard (struct kboard *k)$/ | ||
| 3794 | put_entries c-src/etags.c /^put_entries (register node *np)$/ | 3174 | put_entries c-src/etags.c /^put_entries (register node *np)$/ |
| 3175 | PVEC_BOOL_VECTOR c-src/emacs/src/lisp.h 787 | ||
| 3176 | PVEC_BUFFER c-src/emacs/src/lisp.h 788 | ||
| 3177 | PVEC_CHAR_TABLE c-src/emacs/src/lisp.h 796 | ||
| 3178 | PVEC_COMPILED c-src/emacs/src/lisp.h 795 | ||
| 3179 | PVEC_FONT c-src/emacs/src/lisp.h 798 | ||
| 3180 | PVEC_FRAME c-src/emacs/src/lisp.h 785 | ||
| 3181 | PVEC_FREE c-src/emacs/src/lisp.h 783 | ||
| 3182 | PVEC_HASH_TABLE c-src/emacs/src/lisp.h 789 | ||
| 3183 | PVEC_NORMAL_VECTOR c-src/emacs/src/lisp.h 782 | ||
| 3184 | PVEC_OTHER c-src/emacs/src/lisp.h 793 | ||
| 3185 | PVEC_PROCESS c-src/emacs/src/lisp.h 784 | ||
| 3186 | PVEC_SUB_CHAR_TABLE c-src/emacs/src/lisp.h 797 | ||
| 3187 | PVEC_SUBR c-src/emacs/src/lisp.h 792 | ||
| 3188 | PVEC_TERMINAL c-src/emacs/src/lisp.h 790 | ||
| 3795 | pvec_type c-src/emacs/src/lisp.h 780 | 3189 | pvec_type c-src/emacs/src/lisp.h 780 |
| 3190 | PVEC_TYPE_MASK c-src/emacs/src/lisp.h 819 | ||
| 3191 | PVEC_WINDOW_CONFIGURATION c-src/emacs/src/lisp.h 791 | ||
| 3192 | PVEC_WINDOW c-src/emacs/src/lisp.h 786 | ||
| 3193 | p.x forth-src/test-forth.fth /^ 1 CELLS +FIELD p.x \\ A single cell filed name/ | ||
| 3796 | pxref tex-src/texinfo.tex /^\\def\\pxref#1{see \\xrefX[#1,,,,,,,]}$/ | 3194 | pxref tex-src/texinfo.tex /^\\def\\pxref#1{see \\xrefX[#1,,,,,,,]}$/ |
| 3195 | p.y forth-src/test-forth.fth /^ 1 CELLS +FIELD p.y \\ A single cell field name/ | ||
| 3196 | Python_functions c-src/etags.c /^Python_functions (FILE *inf)$/ | ||
| 3197 | Python_help c-src/etags.c 660 | ||
| 3198 | Python_suffixes c-src/etags.c 658 | ||
| 3199 | PYTSRC make-src/Makefile /^PYTSRC=server.py$/ | ||
| 3797 | quantizing html-src/algrthms.html /^Quantizing the Received$/ | 3200 | quantizing html-src/algrthms.html /^Quantizing the Received$/ |
| 3798 | questo ../c/c.web 34 | 3201 | questo ../c/c.web 34 |
| 3799 | quiettest make-src/Makefile /^quiettest:$/ | 3202 | quiettest make-src/Makefile /^quiettest:$/ |
| 3800 | quit_char c-src/emacs/src/keyboard.c 192 | 3203 | quit_char c-src/emacs/src/keyboard.c 192 |
| 3204 | QUIT c-src/emacs/src/lisp.h 3101 | ||
| 3205 | QUITP c-src/emacs/src/lisp.h 3112 | ||
| 3801 | quit_throw_to_read_char c-src/emacs/src/keyboard.c /^quit_throw_to_read_char (bool from_signal)$/ | 3206 | quit_throw_to_read_char c-src/emacs/src/keyboard.c /^quit_throw_to_read_char (bool from_signal)$/ |
| 3802 | quotation tex-src/texinfo.tex /^\\def\\quotation{%$/ | 3207 | quotation tex-src/texinfo.tex /^\\def\\quotation{%$/ |
| 3803 | qux ruby-src/test1.ru /^ alias_method :qux, :tee, attr_accessor(:bogus)/ | 3208 | /quoteleft ps-src/rfc1245.ps /^\/quoteleft \/quoteright \/.notdef \/.notdef \/ydieresi/ |
| 3804 | qux1 ruby-src/test1.ru /^ :qux1)$/ | 3209 | qux1 ruby-src/test1.ru /^ :qux1)$/ |
| 3210 | qux ruby-src/test1.ru /^ alias_method :qux, :tee, attr_accessor(:bogus)/ | ||
| 3805 | qux= ruby-src/test1.ru /^ def qux=(tee)$/ | 3211 | qux= ruby-src/test1.ru /^ def qux=(tee)$/ |
| 3806 | r tex-src/texinfo.tex /^\\def\\r##1{\\realbackslash r {##1}}$/ | ||
| 3807 | r tex-src/texinfo.tex /^\\def\\r##1{\\realbackslash r {##1}}%$/ | ||
| 3808 | r tex-src/texinfo.tex /^\\def\\r#1{{\\rm #1}} % roman font$/ | ||
| 3809 | r tex-src/texinfo.tex /^\\let\\r=\\indexdummyfont$/ | ||
| 3810 | r0 c-src/sysdep.h 54 | 3212 | r0 c-src/sysdep.h 54 |
| 3811 | r1 c-src/sysdep.h 55 | 3213 | r1 c-src/sysdep.h 55 |
| 3812 | r_alloc c-src/emacs/src/lisp.h /^extern void *r_alloc (void **, size_t) ATTRIBUTE_A/ | 3214 | r_alloc c-src/emacs/src/lisp.h /^extern void *r_alloc (void **, size_t) ATTRIBUTE_A/ |
| 3813 | range_exp y-src/parse.y 269 | 3215 | Range cp-src/Range.h 35 |
| 3216 | Range cp-src/Range.h /^ Range (const Range& r)$/ | ||
| 3217 | Range cp-src/Range.h /^ Range (double b, double l)$/ | ||
| 3218 | Range cp-src/Range.h /^ Range (double b, double l, double i)$/ | ||
| 3219 | Range cp-src/Range.h /^ Range (void)$/ | ||
| 3220 | RANGED_INTEGERP c-src/emacs/src/lisp.h /^RANGED_INTEGERP (intmax_t lo, Lisp_Object x, intma/ | ||
| 3814 | range_exp_list y-src/parse.y 273 | 3221 | range_exp_list y-src/parse.y 273 |
| 3815 | raw_keybuf c-src/emacs/src/keyboard.c 116 | 3222 | range_exp y-src/parse.y 269 |
| 3816 | raw_keybuf_count c-src/emacs/src/keyboard.c 117 | ||
| 3817 | rawbackslash tex-src/texinfo.tex /^\\let\\rawbackslash=\\relax%$/ | 3223 | rawbackslash tex-src/texinfo.tex /^\\let\\rawbackslash=\\relax%$/ |
| 3818 | rawbackslashxx tex-src/texinfo.tex /^\\def\\rawbackslashxx{\\indexbackslash}% \\indexbacksl/ | ||
| 3819 | rawbackslashxx tex-src/texinfo.tex /^\\def\\rawbackslashxx{\\indexbackslash}%$/ | 3224 | rawbackslashxx tex-src/texinfo.tex /^\\def\\rawbackslashxx{\\indexbackslash}%$/ |
| 3225 | rawbackslashxx tex-src/texinfo.tex /^\\def\\rawbackslashxx{\\indexbackslash}% \\indexbacksl/ | ||
| 3226 | raw_keybuf_count c-src/emacs/src/keyboard.c 117 | ||
| 3227 | raw_keybuf c-src/emacs/src/keyboard.c 116 | ||
| 3820 | rbrb tex-src/texinfo.tex /^\\def\\lbrb{{\\bf\\char`\\[}} \\def\\rbrb{{\\bf\\char`\\]}}$/ | 3228 | rbrb tex-src/texinfo.tex /^\\def\\lbrb{{\\bf\\char`\\[}} \\def\\rbrb{{\\bf\\char`\\]}}$/ |
| 3821 | rbtp c.c 240 | 3229 | rbtp c.c 240 |
| 3822 | re_iswctype c-src/emacs/src/regex.h 602 | 3230 | RCSid objc-src/PackInsp.m 30 |
| 3823 | re_nsub c-src/emacs/src/regex.h 364 | ||
| 3824 | re_pattern_buffer c-src/emacs/src/regex.h 335 | ||
| 3825 | re_pattern_buffer c-src/h.h 119 | ||
| 3826 | re_registers c-src/emacs/src/regex.h 428 | ||
| 3827 | re_wchar_t c-src/emacs/src/regex.h 600 | ||
| 3828 | re_wchar_t c-src/emacs/src/regex.h 623 | ||
| 3829 | re_wctype c-src/emacs/src/regex.h 601 | ||
| 3830 | re_wctype_t c-src/emacs/src/regex.h 599 | ||
| 3831 | re_wctype_t c-src/emacs/src/regex.h 618 | ||
| 3832 | re_wctype_to_bit c-src/emacs/src/regex.h /^# define re_wctype_to_bit(cc) 0$/ | ||
| 3833 | read cp-src/conway.hpp /^ char read() { return alive; }$/ | ||
| 3834 | read php-src/lce_functions.php /^ function read()$/ | ||
| 3835 | read-key-sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/ | ||
| 3836 | read-key-sequence-vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/ | ||
| 3837 | read1 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ | 3231 | read1 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ |
| 3838 | read2 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ | 3232 | read2 ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ |
| 3233 | readable_events c-src/emacs/src/keyboard.c /^readable_events (int flags)$/ | ||
| 3234 | READABLE_EVENTS_DO_TIMERS_NOW c-src/emacs/src/keyboard.c 346 | ||
| 3235 | READABLE_EVENTS_FILTER_EVENTS c-src/emacs/src/keyboard.c 347 | ||
| 3236 | READABLE_EVENTS_IGNORE_SQUEEZABLES c-src/emacs/src/keyboard.c 348 | ||
| 3237 | readauxfile tex-src/texinfo.tex /^\\def\\readauxfile{%$/ | ||
| 3839 | read_char c-src/emacs/src/keyboard.c /^read_char (int commandflag, Lisp_Object map,$/ | 3238 | read_char c-src/emacs/src/keyboard.c /^read_char (int commandflag, Lisp_Object map,$/ |
| 3840 | read_char_help_form_unwind c-src/emacs/src/keyboard.c /^read_char_help_form_unwind (void)$/ | 3239 | read_char_help_form_unwind c-src/emacs/src/keyboard.c /^read_char_help_form_unwind (void)$/ |
| 3841 | read_char_minibuf_menu_prompt c-src/emacs/src/keyboard.c /^read_char_minibuf_menu_prompt (int commandflag,$/ | 3240 | read_char_minibuf_menu_prompt c-src/emacs/src/keyboard.c /^read_char_minibuf_menu_prompt (int commandflag,$/ |
| 3842 | read_char_x_menu_prompt c-src/emacs/src/keyboard.c /^read_char_x_menu_prompt (Lisp_Object map,$/ | 3241 | read_char_x_menu_prompt c-src/emacs/src/keyboard.c /^read_char_x_menu_prompt (Lisp_Object map,$/ |
| 3242 | read cp-src/conway.hpp /^ char read() { return alive; }$/ | ||
| 3843 | read_decoded_event_from_main_queue c-src/emacs/src/keyboard.c /^read_decoded_event_from_main_queue (struct timespe/ | 3243 | read_decoded_event_from_main_queue c-src/emacs/src/keyboard.c /^read_decoded_event_from_main_queue (struct timespe/ |
| 3844 | read_event_from_main_queue c-src/emacs/src/keyboard.c /^read_event_from_main_queue (struct timespec *end_t/ | 3244 | read_event_from_main_queue c-src/emacs/src/keyboard.c /^read_event_from_main_queue (struct timespec *end_t/ |
| 3845 | read_key_sequence c-src/emacs/src/keyboard.c /^read_key_sequence (Lisp_Object *keybuf, int bufsiz/ | ||
| 3846 | read_key_sequence_cmd c-src/emacs/src/keyboard.c 232 | 3245 | read_key_sequence_cmd c-src/emacs/src/keyboard.c 232 |
| 3246 | read-key-sequence c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence", Fread_key_sequence, Sr/ | ||
| 3247 | read_key_sequence c-src/emacs/src/keyboard.c /^read_key_sequence (Lisp_Object *keybuf, int bufsiz/ | ||
| 3847 | read_key_sequence_remapped c-src/emacs/src/keyboard.c 233 | 3248 | read_key_sequence_remapped c-src/emacs/src/keyboard.c 233 |
| 3249 | read-key-sequence-vector c-src/emacs/src/keyboard.c /^DEFUN ("read-key-sequence-vector", Fread_key_seque/ | ||
| 3848 | read_key_sequence_vs c-src/emacs/src/keyboard.c /^read_key_sequence_vs (Lisp_Object prompt, Lisp_Obj/ | 3250 | read_key_sequence_vs c-src/emacs/src/keyboard.c /^read_key_sequence_vs (Lisp_Object prompt, Lisp_Obj/ |
| 3849 | read_menu_command c-src/emacs/src/keyboard.c /^read_menu_command (void)$/ | ||
| 3850 | read_toc perl-src/htlmify-cystic /^sub read_toc ()$/ | ||
| 3851 | readable_events c-src/emacs/src/keyboard.c /^readable_events (int flags)$/ | ||
| 3852 | readauxfile tex-src/texinfo.tex /^\\def\\readauxfile{%$/ | ||
| 3853 | readline c-src/etags.c /^readline (linebuffer *lbp, FILE *stream)$/ | 3251 | readline c-src/etags.c /^readline (linebuffer *lbp, FILE *stream)$/ |
| 3854 | readline_internal c-src/etags.c /^readline_internal (linebuffer *lbp, register FILE / | 3252 | readline_internal c-src/etags.c /^readline_internal (linebuffer *lbp, register FILE / |
| 3855 | realloc c-src/emacs/src/gmalloc.c /^realloc (void *ptr, size_t size)$/ | 3253 | Read_Lock/p ada-src/2ataspri.adb /^ procedure Read_Lock (L : in out Lock; Ceiling_V/ |
| 3856 | realloc c-src/emacs/src/gmalloc.c 1720 | 3254 | Read_Lock/p ada-src/2ataspri.ads /^ procedure Read_Lock (L : in out Lock; Ceiling_V/ |
| 3255 | read_menu_command c-src/emacs/src/keyboard.c /^read_menu_command (void)$/ | ||
| 3256 | read php-src/lce_functions.php /^ function read()$/ | ||
| 3257 | read_toc perl-src/htlmify-cystic /^sub read_toc ()$/ | ||
| 3258 | ReadVacation cp-src/functions.cpp /^void ReadVacation ( char *filename ) {$/ | ||
| 3259 | realloc c-src/emacs/src/gmalloc.c 1723 | ||
| 3857 | realloc c-src/emacs/src/gmalloc.c 65 | 3260 | realloc c-src/emacs/src/gmalloc.c 65 |
| 3858 | realloc c-src/emacs/src/gmalloc.c 69 | 3261 | realloc c-src/emacs/src/gmalloc.c 69 |
| 3262 | _realloc c-src/emacs/src/gmalloc.c /^_realloc (void *ptr, size_t size)$/ | ||
| 3263 | realloc c-src/emacs/src/gmalloc.c /^realloc (void *ptr, size_t size)$/ | ||
| 3859 | reallochook c-src/emacs/src/gmalloc.c /^reallochook (void *ptr, size_t size)$/ | 3264 | reallochook c-src/emacs/src/gmalloc.c /^reallochook (void *ptr, size_t size)$/ |
| 3860 | recent-keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, / | 3265 | _realloc_internal c-src/emacs/src/gmalloc.c /^_realloc_internal (void *ptr, size_t size)$/ |
| 3266 | _realloc_internal_nolock c-src/emacs/src/gmalloc.c /^_realloc_internal_nolock (void *ptr, size_t size)$/ | ||
| 3267 | RE_BACKSLASH_ESCAPE_IN_LISTS c-src/emacs/src/regex.h 47 | ||
| 3268 | RE_BK_PLUS_QM c-src/emacs/src/regex.h 52 | ||
| 3269 | RECC_ALNUM c-src/emacs/src/regex.h 610 | ||
| 3270 | RECC_ALPHA c-src/emacs/src/regex.h 610 | ||
| 3271 | RECC_ASCII c-src/emacs/src/regex.h 617 | ||
| 3272 | RECC_BLANK c-src/emacs/src/regex.h 615 | ||
| 3273 | RECC_CNTRL c-src/emacs/src/regex.h 613 | ||
| 3274 | RECC_DIGIT c-src/emacs/src/regex.h 614 | ||
| 3275 | RECC_ERROR c-src/emacs/src/regex.h 609 | ||
| 3276 | RECC_GRAPH c-src/emacs/src/regex.h 611 | ||
| 3277 | RECC_LOWER c-src/emacs/src/regex.h 612 | ||
| 3278 | RECC_MULTIBYTE c-src/emacs/src/regex.h 616 | ||
| 3279 | RECC_NONASCII c-src/emacs/src/regex.h 616 | ||
| 3280 | RECC_PRINT c-src/emacs/src/regex.h 611 | ||
| 3281 | RECC_PUNCT c-src/emacs/src/regex.h 613 | ||
| 3282 | RECC_SPACE c-src/emacs/src/regex.h 615 | ||
| 3283 | RECC_UNIBYTE c-src/emacs/src/regex.h 617 | ||
| 3284 | RECC_UPPER c-src/emacs/src/regex.h 612 | ||
| 3285 | RECC_WORD c-src/emacs/src/regex.h 610 | ||
| 3286 | RECC_XDIGIT c-src/emacs/src/regex.h 614 | ||
| 3861 | recent_keys c-src/emacs/src/keyboard.c 100 | 3287 | recent_keys c-src/emacs/src/keyboard.c 100 |
| 3288 | recent-keys c-src/emacs/src/keyboard.c /^DEFUN ("recent-keys", Frecent_keys, Srecent_keys, / | ||
| 3862 | recent_keys_index c-src/emacs/src/keyboard.c 94 | 3289 | recent_keys_index c-src/emacs/src/keyboard.c 94 |
| 3290 | RE_CHAR_CLASSES c-src/emacs/src/regex.h 58 | ||
| 3291 | RE_CONTEXT_INDEP_ANCHORS c-src/emacs/src/regex.h 72 | ||
| 3292 | RE_CONTEXT_INDEP_OPS c-src/emacs/src/regex.h 80 | ||
| 3293 | RE_CONTEXT_INVALID_OPS c-src/emacs/src/regex.h 84 | ||
| 3863 | record_asynch_buffer_change c-src/emacs/src/keyboard.c /^record_asynch_buffer_change (void)$/ | 3294 | record_asynch_buffer_change c-src/emacs/src/keyboard.c /^record_asynch_buffer_change (void)$/ |
| 3864 | record_auto_save c-src/emacs/src/keyboard.c /^record_auto_save (void)$/ | 3295 | record_auto_save c-src/emacs/src/keyboard.c /^record_auto_save (void)$/ |
| 3865 | record_char c-src/emacs/src/keyboard.c /^record_char (Lisp_Object c)$/ | 3296 | record_char c-src/emacs/src/keyboard.c /^record_char (Lisp_Object c)$/ |
| @@ -3867,71 +3298,176 @@ record_menu_key c-src/emacs/src/keyboard.c /^record_menu_key (Lisp_Object c)$/ | |||
| 3867 | record_single_kboard_state c-src/emacs/src/keyboard.c /^record_single_kboard_state ()$/ | 3298 | record_single_kboard_state c-src/emacs/src/keyboard.c /^record_single_kboard_state ()$/ |
| 3868 | record_xmalloc c-src/emacs/src/lisp.h /^extern void *record_xmalloc (size_t) ATTRIBUTE_ALL/ | 3299 | record_xmalloc c-src/emacs/src/lisp.h /^extern void *record_xmalloc (size_t) ATTRIBUTE_ALL/ |
| 3869 | recover_top_level_message c-src/emacs/src/keyboard.c 138 | 3300 | recover_top_level_message c-src/emacs/src/keyboard.c 138 |
| 3301 | Rectangle.getPos lua-src/test.lua /^function Rectangle.getPos ()$/ | ||
| 3870 | recursion-depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/ | 3302 | recursion-depth c-src/emacs/src/keyboard.c /^DEFUN ("recursion-depth", Frecursion_depth, Srecur/ |
| 3871 | recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/ | ||
| 3872 | recursive_edit_1 c-src/emacs/src/keyboard.c /^recursive_edit_1 (void)$/ | 3303 | recursive_edit_1 c-src/emacs/src/keyboard.c /^recursive_edit_1 (void)$/ |
| 3304 | recursive-edit c-src/emacs/src/keyboard.c /^DEFUN ("recursive-edit", Frecursive_edit, Srecursi/ | ||
| 3873 | recursive_edit_unwind c-src/emacs/src/keyboard.c /^recursive_edit_unwind (Lisp_Object buffer)$/ | 3305 | recursive_edit_unwind c-src/emacs/src/keyboard.c /^recursive_edit_unwind (Lisp_Object buffer)$/ |
| 3306 | RED cp-src/screen.hpp 16 | ||
| 3307 | RE_DEBUG c-src/emacs/src/regex.h 161 | ||
| 3874 | redirect c-src/emacs/src/lisp.h 663 | 3308 | redirect c-src/emacs/src/lisp.h 663 |
| 3309 | RE_DOT_NEWLINE c-src/emacs/src/regex.h 88 | ||
| 3310 | RE_DOT_NOT_NULL c-src/emacs/src/regex.h 92 | ||
| 3875 | reduce prol-src/natded.prolog /^reduce((X^M)@N,L):- % beta reduction$/ | 3311 | reduce prol-src/natded.prolog /^reduce((X^M)@N,L):- % beta reduction$/ |
| 3876 | reduce_subterm prol-src/natded.prolog /^reduce_subterm(M,M2):-$/ | 3312 | reduce_subterm prol-src/natded.prolog /^reduce_subterm(M,M2):-$/ |
| 3877 | ref tex-src/texinfo.tex /^\\def\\ref#1{\\xrefX[#1,,,,,,,]}$/ | 3313 | RE_DUP_MAX c-src/emacs/src/regex.h 253 |
| 3314 | RE_DUP_MAX c-src/emacs/src/regex.h 256 | ||
| 3315 | /ReEncode ps-src/rfc1245.ps /^\/ReEncode { $/ | ||
| 3878 | refill tex-src/texinfo.tex /^\\let\\refill=\\relax$/ | 3316 | refill tex-src/texinfo.tex /^\\let\\refill=\\relax$/ |
| 3879 | refreshPort pyt-src/server.py /^ def refreshPort(self):$/ | 3317 | refreshPort pyt-src/server.py /^ def refreshPort(self):$/ |
| 3318 | RE_FRUGAL c-src/emacs/src/regex.h 147 | ||
| 3319 | ref tex-src/texinfo.tex /^\\def\\ref#1{\\xrefX[#1,,,,,,,]}$/ | ||
| 3880 | refx tex-src/texinfo.tex /^\\def\\refx#1#2{%$/ | 3320 | refx tex-src/texinfo.tex /^\\def\\refx#1#2{%$/ |
| 3881 | reg_errcode_t c-src/emacs/src/regex.h 323 | 3321 | REG_BADBR c-src/emacs/src/regex.h 313 |
| 3322 | REG_BADPAT c-src/emacs/src/regex.h 305 | ||
| 3323 | REG_BADRPT c-src/emacs/src/regex.h 316 | ||
| 3324 | REG_EBRACE c-src/emacs/src/regex.h 312 | ||
| 3325 | REG_EBRACK c-src/emacs/src/regex.h 310 | ||
| 3326 | REG_ECOLLATE c-src/emacs/src/regex.h 306 | ||
| 3327 | REG_ECTYPE c-src/emacs/src/regex.h 307 | ||
| 3328 | REG_EEND c-src/emacs/src/regex.h 319 | ||
| 3329 | REG_EESCAPE c-src/emacs/src/regex.h 308 | ||
| 3330 | REG_ENOSYS c.c 279 | ||
| 3331 | REG_ENOSYS c-src/emacs/src/regex.h 297 | ||
| 3332 | REG_EPAREN c-src/emacs/src/regex.h 311 | ||
| 3333 | REG_ERANGE c-src/emacs/src/regex.h 314 | ||
| 3334 | REG_ERANGEX c-src/emacs/src/regex.h 322 | ||
| 3335 | REG_ERPAREN c-src/emacs/src/regex.h 321 | ||
| 3882 | reg_errcode_t c.c 279 | 3336 | reg_errcode_t c.c 279 |
| 3883 | reg_syntax_t c-src/emacs/src/regex.h 43 | 3337 | reg_errcode_t c-src/emacs/src/regex.h 323 |
| 3338 | REG_ESIZE c-src/emacs/src/regex.h 320 | ||
| 3339 | REG_ESPACE c-src/emacs/src/regex.h 315 | ||
| 3340 | REG_ESUBREG c-src/emacs/src/regex.h 309 | ||
| 3884 | regex c-src/etags.c 219 | 3341 | regex c-src/etags.c 219 |
| 3885 | regex.o make-src/Makefile /^regex.o: emacs\/src\/regex.c$/ | ||
| 3886 | regex_t c-src/emacs/src/regex.h 416 | ||
| 3887 | regex_tag_multiline c-src/etags.c /^regex_tag_multiline (void)$/ | ||
| 3888 | regexfile make-src/Makefile /^regexfile: Makefile$/ | 3342 | regexfile make-src/Makefile /^regexfile: Makefile$/ |
| 3343 | _REGEX_H c-src/emacs/src/regex.h 21 | ||
| 3344 | REGEX make-src/Makefile /^REGEX=\/[ \\t]*DEFVAR_[A-Z_ \\t\\n(]+"\\([^"]+\\)"\/$/ | ||
| 3345 | REGEXOBJS make-src/Makefile /^REGEXOBJS=regex.o$/ | ||
| 3346 | regex.o make-src/Makefile /^regex.o: emacs\/src\/regex.c$/ | ||
| 3889 | regexp c-src/etags.c 256 | 3347 | regexp c-src/etags.c 256 |
| 3890 | regexp c-src/etags.c 268 | 3348 | regexp c-src/etags.c 268 |
| 3349 | regex_tag_multiline c-src/etags.c /^regex_tag_multiline (void)$/ | ||
| 3350 | regex_t c-src/emacs/src/regex.h 416 | ||
| 3351 | REG_EXTENDED c-src/emacs/src/regex.h 263 | ||
| 3352 | REG_ICASE c-src/emacs/src/regex.h 267 | ||
| 3891 | registerAction objcpp-src/SimpleCalc.M /^- registerAction:(SEL)action$/ | 3353 | registerAction objcpp-src/SimpleCalc.M /^- registerAction:(SEL)action$/ |
| 3892 | register_heapinfo c-src/emacs/src/gmalloc.c /^register_heapinfo (void)$/ | 3354 | register_heapinfo c-src/emacs/src/gmalloc.c /^register_heapinfo (void)$/ |
| 3893 | regmatch_t c-src/emacs/src/regex.h 451 | 3355 | regmatch_t c-src/emacs/src/regex.h 451 |
| 3356 | REG_NEWLINE c-src/emacs/src/regex.h 272 | ||
| 3357 | REG_NOERROR c-src/emacs/src/regex.h 300 | ||
| 3358 | REG_NOMATCH c-src/emacs/src/regex.h 301 | ||
| 3359 | REG_NOSUB c-src/emacs/src/regex.h 276 | ||
| 3360 | REG_NOTBOL c-src/emacs/src/regex.h 286 | ||
| 3361 | REG_NOTEOL c-src/emacs/src/regex.h 289 | ||
| 3894 | regoff_t c-src/emacs/src/regex.h 423 | 3362 | regoff_t c-src/emacs/src/regex.h 423 |
| 3895 | regs c-src/etags.c 263 | ||
| 3896 | regs cp-src/screen.cpp 16 | ||
| 3897 | regs_allocated c-src/emacs/src/regex.h 379 | 3363 | regs_allocated c-src/emacs/src/regex.h 379 |
| 3364 | regs cp-src/screen.cpp 16 | ||
| 3365 | regs c-src/etags.c 263 | ||
| 3898 | regset c-src/h.h 31 | 3366 | regset c-src/h.h 31 |
| 3367 | REGS_FIXED c-src/emacs/src/regex.h 378 | ||
| 3368 | REGS_REALLOCATE c-src/emacs/src/regex.h 377 | ||
| 3369 | REGS_UNALLOCATED c-src/emacs/src/regex.h 376 | ||
| 3370 | reg_syntax_t c-src/emacs/src/regex.h 43 | ||
| 3899 | regular_top_level_message c-src/emacs/src/keyboard.c 143 | 3371 | regular_top_level_message c-src/emacs/src/keyboard.c 143 |
| 3900 | rehash_size c-src/emacs/src/lisp.h 1835 | 3372 | rehash_size c-src/emacs/src/lisp.h 1835 |
| 3901 | rehash_threshold c-src/emacs/src/lisp.h 1839 | 3373 | rehash_threshold c-src/emacs/src/lisp.h 1839 |
| 3374 | RE_HAT_LISTS_NOT_NEWLINE c-src/emacs/src/regex.h 96 | ||
| 3375 | RE_INTERVALS c-src/emacs/src/regex.h 101 | ||
| 3376 | re_iswctype c-src/emacs/src/regex.h 602 | ||
| 3902 | relative_filename c-src/etags.c /^relative_filename (char *file, char *dir)$/ | 3377 | relative_filename c-src/etags.c /^relative_filename (char *file, char *dir)$/ |
| 3903 | release distrib make-src/Makefile /^release distrib: web$/ | 3378 | release distrib make-src/Makefile /^release distrib: web$/ |
| 3379 | RELEASELIST make-src/Makefile /^RELEASELIST=pot@gnu.org xemacs-review@xemacs.org j/ | ||
| 3380 | ReleaseNameString pas-src/common.pas /^procedure ReleaseNameString; (* (var NSP: NameStri/ | ||
| 3381 | RE_LIMITED_OPS c-src/emacs/src/regex.h 105 | ||
| 3904 | removeexp prol-src/natded.prolog /^removeexp(E,E,'NIL'):-!.$/ | 3382 | removeexp prol-src/natded.prolog /^removeexp(E,E,'NIL'):-!.$/ |
| 3383 | RemoveLayer lua-src/allegro.lua /^function RemoveLayer ()$/ | ||
| 3384 | RemoveUnderlineControl pas-src/common.pas /^function RemoveUnderlineControl; (*($/ | ||
| 3385 | RE_NEWLINE_ALT c-src/emacs/src/regex.h 109 | ||
| 3386 | RE_NO_BK_BRACES c-src/emacs/src/regex.h 114 | ||
| 3387 | RE_NO_BK_PARENS c-src/emacs/src/regex.h 118 | ||
| 3388 | RE_NO_BK_REFS c-src/emacs/src/regex.h 122 | ||
| 3389 | RE_NO_BK_VBAR c-src/emacs/src/regex.h 126 | ||
| 3390 | RE_NO_EMPTY_RANGES c-src/emacs/src/regex.h 132 | ||
| 3391 | RE_NO_GNU_OPS c-src/emacs/src/regex.h 144 | ||
| 3392 | RE_NO_NEWLINE_ANCHOR c-src/emacs/src/regex.h 153 | ||
| 3393 | RE_NO_POSIX_BACKTRACKING c-src/emacs/src/regex.h 140 | ||
| 3394 | RE_NREGS c-src/emacs/src/regex.h 440 | ||
| 3395 | re_nsub c-src/emacs/src/regex.h 364 | ||
| 3905 | reorder_modifiers c-src/emacs/src/keyboard.c /^reorder_modifiers (Lisp_Object symbol)$/ | 3396 | reorder_modifiers c-src/emacs/src/keyboard.c /^reorder_modifiers (Lisp_Object symbol)$/ |
| 3397 | re_pattern_buffer c-src/emacs/src/regex.h 335 | ||
| 3398 | re_pattern_buffer c-src/h.h 119 | ||
| 3399 | ReprOfChar pas-src/common.pas /^function ReprOfChar; (*( ch : char) : NameString;*/ | ||
| 3400 | __repr__ pyt-src/server.py /^ def __repr__(self):$/ | ||
| 3906 | request c.c /^request request (a, b)$/ | 3401 | request c.c /^request request (a, b)$/ |
| 3907 | requeued_events_pending_p c-src/emacs/src/keyboard.c /^requeued_events_pending_p (void)$/ | 3402 | requeued_events_pending_p c-src/emacs/src/keyboard.c /^requeued_events_pending_p (void)$/ |
| 3908 | require merc-src/accumulator.m /^:- import_module require.$/ | ||
| 3909 | required_argument c-src/getopt.h 90 | 3403 | required_argument c-src/getopt.h 90 |
| 3910 | reset-this-command-lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/ | 3404 | require merc-src/accumulator.m /^:- import_module require.$/ |
| 3405 | re_registers c-src/emacs/src/regex.h 428 | ||
| 3911 | resetmathfonts tex-src/texinfo.tex /^\\def\\resetmathfonts{%$/ | 3406 | resetmathfonts tex-src/texinfo.tex /^\\def\\resetmathfonts{%$/ |
| 3912 | rest tex-src/texinfo.tex /^\\def\\splitoff#1#2\\endmark{\\def\\first{#1}\\def\\rest{/ | 3407 | reset-this-command-lengths c-src/emacs/src/keyboard.c /^DEFUN ("reset-this-command-lengths", Freset_this_c/ |
| 3408 | RE_SHY_GROUPS c-src/emacs/src/regex.h 150 | ||
| 3913 | restore_getcjmp c-src/emacs/src/keyboard.c /^restore_getcjmp (sys_jmp_buf temp)$/ | 3409 | restore_getcjmp c-src/emacs/src/keyboard.c /^restore_getcjmp (sys_jmp_buf temp)$/ |
| 3914 | restore_kboard_configuration c-src/emacs/src/keyboard.c /^restore_kboard_configuration (int was_locked)$/ | 3410 | restore_kboard_configuration c-src/emacs/src/keyboard.c /^restore_kboard_configuration (int was_locked)$/ |
| 3411 | /restorematrix ps-src/rfc1245.ps /^\/restorematrix {$/ | ||
| 3412 | _Restrict_arr_ c-src/emacs/src/regex.h 555 | ||
| 3413 | _Restrict_arr_ c-src/emacs/src/regex.h 557 | ||
| 3414 | _Restrict_ c-src/emacs/src/regex.h 540 | ||
| 3415 | _Restrict_ c-src/emacs/src/regex.h 542 | ||
| 3416 | _Restrict_ c-src/emacs/src/regex.h 544 | ||
| 3417 | rest tex-src/texinfo.tex /^\\def\\splitoff#1#2\\endmark{\\def\\first{#1}\\def\\rest{/ | ||
| 3915 | result tex-src/texinfo.tex /^\\def\\result{\\leavevmode\\raise.15ex\\hbox to 1em{\\hf/ | 3418 | result tex-src/texinfo.tex /^\\def\\result{\\leavevmode\\raise.15ex\\hbox to 1em{\\hf/ |
| 3916 | result tex-src/texinfo.tex /^\\def\\result{\\realbackslash result}$/ | 3419 | result tex-src/texinfo.tex /^\\def\\result{\\realbackslash result}$/ |
| 3420 | RESUME_POLLING c-src/emacs/src/keyboard.c 2170 | ||
| 3421 | RE_SYNTAX_AWK c-src/emacs/src/regex.h 186 | ||
| 3422 | RE_SYNTAX_ED c-src/emacs/src/regex.h 216 | ||
| 3423 | RE_SYNTAX_EGREP c-src/emacs/src/regex.h 206 | ||
| 3424 | RE_SYNTAX_EMACS c-src/emacs/src/regex.h 183 | ||
| 3425 | RE_SYNTAX_GNU_AWK c-src/emacs/src/regex.h 193 | ||
| 3426 | RE_SYNTAX_GREP c-src/emacs/src/regex.h 201 | ||
| 3427 | RE_SYNTAX_POSIX_AWK c-src/emacs/src/regex.h 197 | ||
| 3428 | RE_SYNTAX_POSIX_BASIC c-src/emacs/src/regex.h 225 | ||
| 3429 | _RE_SYNTAX_POSIX_COMMON c-src/emacs/src/regex.h 221 | ||
| 3430 | RE_SYNTAX_POSIX_EGREP c-src/emacs/src/regex.h 212 | ||
| 3431 | RE_SYNTAX_POSIX_EXTENDED c-src/emacs/src/regex.h 234 | ||
| 3432 | RE_SYNTAX_POSIX_MINIMAL_BASIC c-src/emacs/src/regex.h 231 | ||
| 3433 | RE_SYNTAX_POSIX_MINIMAL_EXTENDED c-src/emacs/src/regex.h 242 | ||
| 3434 | RE_SYNTAX_SED c-src/emacs/src/regex.h 218 | ||
| 3435 | RE_TRANSLATE_TYPE c-src/emacs/src/regex.h 332 | ||
| 3917 | return_to_command_loop c-src/emacs/src/keyboard.c 135 | 3436 | return_to_command_loop c-src/emacs/src/keyboard.c 135 |
| 3437 | RETURN_UNGCPRO c-src/emacs/src/lisp.h /^#define RETURN_UNGCPRO(expr) \\$/ | ||
| 3438 | RE_UNMATCHED_RIGHT_PAREN_ORD c-src/emacs/src/regex.h 136 | ||
| 3918 | reverse prol-src/natded.prolog /^reverse([],Ws,Ws).$/ | 3439 | reverse prol-src/natded.prolog /^reverse([],Ws,Ws).$/ |
| 3919 | revert objc-src/PackInsp.m /^-revert:sender$/ | 3440 | revert objc-src/PackInsp.m /^-revert:sender$/ |
| 3441 | re_wchar_t c-src/emacs/src/regex.h 600 | ||
| 3442 | re_wchar_t c-src/emacs/src/regex.h 623 | ||
| 3443 | re_wctype c-src/emacs/src/regex.h 601 | ||
| 3444 | re_wctype_t c-src/emacs/src/regex.h 599 | ||
| 3445 | re_wctype_t c-src/emacs/src/regex.h 618 | ||
| 3446 | re_wctype_to_bit c-src/emacs/src/regex.h /^# define re_wctype_to_bit(cc) 0$/ | ||
| 3447 | /RF ps-src/rfc1245.ps /^\/RF { $/ | ||
| 3920 | right c-src/etags.c 216 | 3448 | right c-src/etags.c 216 |
| 3921 | right_shift y-src/cccp.y /^right_shift (a, b)$/ | 3449 | right_shift y-src/cccp.y /^right_shift (a, b)$/ |
| 3922 | ring1 c.c 241 | 3450 | ring1 c.c 241 |
| 3923 | ring2 c.c 242 | 3451 | ring2 c.c 242 |
| 3924 | rm tex-src/texinfo.tex /^ \\let\\rm=\\shortcontrm \\let\\bf=\\shortcontbf \\l/ | ||
| 3925 | rm tex-src/texinfo.tex /^\\def\\rm{\\realbackslash rm }%$/ | ||
| 3926 | rm_eo c-src/emacs/src/regex.h 450 | 3452 | rm_eo c-src/emacs/src/regex.h 450 |
| 3927 | rm_so c-src/emacs/src/regex.h 449 | 3453 | rm_so c-src/emacs/src/regex.h 449 |
| 3454 | rm tex-src/texinfo.tex /^\\def\\rm{\\realbackslash rm }%$/ | ||
| 3455 | rm tex-src/texinfo.tex /^ \\let\\rm=\\shortcontrm \\let\\bf=\\shortcontbf \\l/ | ||
| 3928 | rng_base cp-src/Range.h 79 | 3456 | rng_base cp-src/Range.h 79 |
| 3929 | rng_inc cp-src/Range.h 81 | 3457 | rng_inc cp-src/Range.h 81 |
| 3930 | rng_limit cp-src/Range.h 80 | 3458 | rng_limit cp-src/Range.h 80 |
| 3931 | rng_nelem cp-src/Range.h 83 | 3459 | rng_nelem cp-src/Range.h 83 |
| 3932 | rosso cp-src/c.C 40 | 3460 | rosso cp-src/c.C 40 |
| 3461 | /R ps-src/rfc1245.ps /^\/R { $/ | ||
| 3462 | /RR ps-src/rfc1245.ps /^\/RR { $/ | ||
| 3463 | RSH y-src/cccp.c 17 | ||
| 3933 | rsyncfromfly make-src/Makefile /^rsyncfromfly:$/ | 3464 | rsyncfromfly make-src/Makefile /^rsyncfromfly:$/ |
| 3934 | rsynctofly make-src/Makefile /^rsynctofly:$/ | 3465 | rsynctofly make-src/Makefile /^rsynctofly:$/ |
| 3466 | RTE/s ada-src/2ataspri.adb /^ package RTE renames Interfaces.C.POSIX_RTE;$/ | ||
| 3467 | r tex-src/texinfo.tex /^\\def\\r##1{\\realbackslash r {##1}}%$/ | ||
| 3468 | r tex-src/texinfo.tex /^\\def\\r##1{\\realbackslash r {##1}}$/ | ||
| 3469 | r tex-src/texinfo.tex /^\\def\\r#1{{\\rm #1}} % roman font$/ | ||
| 3470 | r tex-src/texinfo.tex /^\\let\\r=\\indexdummyfont$/ | ||
| 3935 | rtint c-src/h.h 60 | 3471 | rtint c-src/h.h 60 |
| 3936 | rtint c-src/h.h 68 | 3472 | rtint c-src/h.h 68 |
| 3937 | rtstr c-src/h.h 61 | 3473 | rtstr c-src/h.h 61 |
| @@ -3941,153 +3477,239 @@ rtunion_def c-src/h.h 64 | |||
| 3941 | rtx c-src/h.h 62 | 3477 | rtx c-src/h.h 62 |
| 3942 | rtxnp c-src/h.h 71 | 3478 | rtxnp c-src/h.h 71 |
| 3943 | rtxp c-src/h.h 70 | 3479 | rtxp c-src/h.h 70 |
| 3944 | s c-src/emacs/src/lisp.h 4672 | 3480 | ` ruby-src/test.rb /^ def `(command)$/ |
| 3945 | s c-src/emacs/src/lisp.h 4678 | 3481 | + ruby-src/test.rb /^ def +(y)$/ |
| 3482 | << ruby-src/test.rb /^ def <<(y)$/ | ||
| 3483 | <= ruby-src/test.rb /^ def <=(y)$/ | ||
| 3484 | <=> ruby-src/test.rb /^ def <=>(y)$/ | ||
| 3485 | == ruby-src/test.rb /^ def ==(y)$/ | ||
| 3486 | === ruby-src/test.rb /^ def ===(y)$/ | ||
| 3487 | [] ruby-src/test.rb /^ def [](y)$/ | ||
| 3488 | []= ruby-src/test.rb /^ def []=(y, val)$/ | ||
| 3489 | RUN make-src/Makefile /^RUN=$/ | ||
| 3490 | RUN make-src/Makefile /^RUN=time --quiet --format '%U + %S: %E'$/ | ||
| 3491 | RXINCLUDE make-src/Makefile /^RXINCLUDE=-Iemacs\/src$/ | ||
| 3946 | s1 cp-src/c.C 32 | 3492 | s1 cp-src/c.C 32 |
| 3493 | /s1 ps-src/rfc1245.ps /^\/s1 1 string def$/ | ||
| 3947 | s2 cp-src/c.C 35 | 3494 | s2 cp-src/c.C 35 |
| 3495 | SAFE_ALLOCA c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA(size) ((size) <= sa_avail \\/ | ||
| 3496 | SAFE_ALLOCA_LISP c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA_LISP(buf, nelt) \\$/ | ||
| 3497 | SAFE_ALLOCA_STRING c-src/emacs/src/lisp.h /^#define SAFE_ALLOCA_STRING(ptr, string) \\$/ | ||
| 3498 | SAFE_FREE c-src/emacs/src/lisp.h /^#define SAFE_FREE() \\$/ | ||
| 3499 | SAFE_NALLOCA c-src/emacs/src/lisp.h /^#define SAFE_NALLOCA(buf, multiplier, nitems) \\/ | ||
| 3948 | safe_run_hook_funcall c-src/emacs/src/keyboard.c /^safe_run_hook_funcall (ptrdiff_t nargs, Lisp_Objec/ | 3500 | safe_run_hook_funcall c-src/emacs/src/keyboard.c /^safe_run_hook_funcall (ptrdiff_t nargs, Lisp_Objec/ |
| 3949 | safe_run_hooks c-src/emacs/src/keyboard.c /^safe_run_hooks (Lisp_Object hook)$/ | ||
| 3950 | safe_run_hooks_1 c-src/emacs/src/keyboard.c /^safe_run_hooks_1 (ptrdiff_t nargs, Lisp_Object *ar/ | 3501 | safe_run_hooks_1 c-src/emacs/src/keyboard.c /^safe_run_hooks_1 (ptrdiff_t nargs, Lisp_Object *ar/ |
| 3502 | safe_run_hooks c-src/emacs/src/keyboard.c /^safe_run_hooks (Lisp_Object hook)$/ | ||
| 3951 | safe_run_hooks_error c-src/emacs/src/keyboard.c /^safe_run_hooks_error (Lisp_Object error, ptrdiff_t/ | 3503 | safe_run_hooks_error c-src/emacs/src/keyboard.c /^safe_run_hooks_error (Lisp_Object error, ptrdiff_t/ |
| 3952 | samp tex-src/texinfo.tex /^\\def\\samp #1{`\\tclose{#1}'\\null}$/ | 3504 | Sample tex-src/gzip.texi /^@node Sample, Invoking gzip, Overview, Top$/ |
| 3953 | samp tex-src/texinfo.tex /^\\def\\samp##1{\\realbackslash samp {##1}}$/ | ||
| 3954 | samp tex-src/texinfo.tex /^\\def\\samp##1{\\realbackslash samp {##1}}%$/ | 3505 | samp tex-src/texinfo.tex /^\\def\\samp##1{\\realbackslash samp {##1}}%$/ |
| 3506 | samp tex-src/texinfo.tex /^\\def\\samp##1{\\realbackslash samp {##1}}$/ | ||
| 3507 | samp tex-src/texinfo.tex /^\\def\\samp #1{`\\tclose{#1}'\\null}$/ | ||
| 3955 | samp tex-src/texinfo.tex /^\\let\\samp=\\indexdummyfont$/ | 3508 | samp tex-src/texinfo.tex /^\\let\\samp=\\indexdummyfont$/ |
| 3956 | save pyt-src/server.py /^ def save(self):$/ | 3509 | /sangle ps-src/rfc1245.ps /^\/sangle 1 0 dmatrix defaultmatrix dtransform exch / |
| 3510 | SAVE_FUNCPOINTER c-src/emacs/src/lisp.h 2049 | ||
| 3957 | save_getcjmp c-src/emacs/src/keyboard.c /^save_getcjmp (sys_jmp_buf temp)$/ | 3511 | save_getcjmp c-src/emacs/src/keyboard.c /^save_getcjmp (sys_jmp_buf temp)$/ |
| 3958 | save_type c-src/emacs/src/lisp.h /^save_type (struct Lisp_Save_Value *v, int n)$/ | 3512 | SAVE_INTEGER c-src/emacs/src/lisp.h 2048 |
| 3513 | /savematrix ps-src/rfc1245.ps /^\/savematrix {$/ | ||
| 3959 | savenstr c-src/etags.c /^savenstr (const char *cp, int len)$/ | 3514 | savenstr c-src/etags.c /^savenstr (const char *cp, int len)$/ |
| 3515 | SAVE_OBJECT c-src/emacs/src/lisp.h 2051 | ||
| 3516 | SAVE_POINTER c-src/emacs/src/lisp.h 2050 | ||
| 3517 | save pyt-src/server.py /^ def save(self):$/ | ||
| 3518 | SAVE_SLOT_BITS c-src/emacs/src/lisp.h 2055 | ||
| 3960 | savestr c-src/etags.c /^savestr (const char *cp)$/ | 3519 | savestr c-src/etags.c /^savestr (const char *cp)$/ |
| 3520 | SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2062 | ||
| 3521 | SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2114 | ||
| 3522 | SAVE_TYPE_BITS c-src/emacs/src/lisp.h 2123 | ||
| 3523 | save_type c-src/emacs/src/lisp.h /^save_type (struct Lisp_Save_Value *v, int n)$/ | ||
| 3524 | SAVE_TYPE_FUNCPTR_PTR_OBJ c-src/emacs/src/lisp.h 2076 | ||
| 3525 | SAVE_TYPE_INT_INT c-src/emacs/src/lisp.h 2066 | ||
| 3526 | SAVE_TYPE_INT_INT_INT c-src/emacs/src/lisp.h 2067 | ||
| 3527 | SAVE_TYPE_MEMORY c-src/emacs/src/lisp.h 2080 | ||
| 3528 | SAVE_TYPE_OBJ_OBJ c-src/emacs/src/lisp.h 2069 | ||
| 3529 | SAVE_TYPE_OBJ_OBJ_OBJ c-src/emacs/src/lisp.h 2070 | ||
| 3530 | SAVE_TYPE_OBJ_OBJ_OBJ_OBJ c-src/emacs/src/lisp.h 2071 | ||
| 3531 | SAVE_TYPE_PTR_INT c-src/emacs/src/lisp.h 2073 | ||
| 3532 | SAVE_TYPE_PTR_OBJ c-src/emacs/src/lisp.h 2074 | ||
| 3533 | SAVE_TYPE_PTR_PTR c-src/emacs/src/lisp.h 2075 | ||
| 3534 | SAVE_UNUSED c-src/emacs/src/lisp.h 2047 | ||
| 3535 | SAVE_VALUEP c-src/emacs/src/lisp.h /^SAVE_VALUEP (Lisp_Object x)$/ | ||
| 3536 | SAVE_VALUE_SLOTS c-src/emacs/src/lisp.h 2058 | ||
| 3961 | say go-src/test.go /^func say(msg string) {$/ | 3537 | say go-src/test.go /^func say(msg string) {$/ |
| 3962 | sc tex-src/texinfo.tex /^\\def\\sc#1{{\\smallcaps#1}} % smallcaps font$/ | 3538 | __sbrk c-src/emacs/src/gmalloc.c 1518 |
| 3963 | sc tex-src/texinfo.tex /^\\let\\sc=\\indexdummyfont$/ | 3539 | SBYTES c-src/emacs/src/lisp.h /^SBYTES (Lisp_Object string)$/ |
| 3964 | scan_separators c-src/etags.c /^scan_separators (char *name)$/ | 3540 | scan_separators c-src/etags.c /^scan_separators (char *name)$/ |
| 3541 | S c.c 156 | ||
| 3542 | SCHARS c-src/emacs/src/lisp.h /^SCHARS (Lisp_Object string)$/ | ||
| 3543 | Scheme_functions c-src/etags.c /^Scheme_functions (FILE *inf)$/ | ||
| 3544 | Scheme_help c-src/etags.c 667 | ||
| 3545 | Scheme_suffixes c-src/etags.c 665 | ||
| 3965 | scolonseen c-src/etags.c 2447 | 3546 | scolonseen c-src/etags.c 2447 |
| 3966 | scratch c-src/sysdep.h 56 | 3547 | scratch c-src/sysdep.h 56 |
| 3548 | SCREEN_FP cp-src/screen.hpp /^#define SCREEN_FP(x,y) \\$/ | ||
| 3549 | SCREEN_START cp-src/screen.hpp 33 | ||
| 3967 | scroll_bar_parts c-src/emacs/src/keyboard.c 5189 | 3550 | scroll_bar_parts c-src/emacs/src/keyboard.c 5189 |
| 3968 | sec tex-src/texinfo.tex /^\\global\\let\\section = \\appendixsec$/ | 3551 | s c-src/emacs/src/lisp.h 4672 |
| 3552 | s c-src/emacs/src/lisp.h 4678 | ||
| 3553 | sc tex-src/texinfo.tex /^\\def\\sc#1{{\\smallcaps#1}} % smallcaps font$/ | ||
| 3554 | sc tex-src/texinfo.tex /^\\let\\sc=\\indexdummyfont$/ | ||
| 3555 | SDATA c-src/emacs/src/lisp.h /^SDATA (Lisp_Object string)$/ | ||
| 3556 | SDTrefGetInteger pas-src/common.pas /^function SDTrefGetInteger : integer;$/ | ||
| 3557 | SDTrefIsEnd pas-src/common.pas /^function SDTrefIsEnd : Boolean;$/ | ||
| 3558 | SDTrefRecToString pas-src/common.pas /^procedure SDTrefRecToString (* ($/ | ||
| 3559 | SDTrefSkipSpaces pas-src/common.pas /^procedure SDTrefSkipSpaces;$/ | ||
| 3560 | SDTrefStringToRec pas-src/common.pas /^procedure SDTrefStringToRec (* ($/ | ||
| 3969 | seccheck tex-src/texinfo.tex /^\\def\\seccheck#1{\\if \\pageno<0 %$/ | 3561 | seccheck tex-src/texinfo.tex /^\\def\\seccheck#1{\\if \\pageno<0 %$/ |
| 3562 | secentryfonts tex-src/texinfo.tex /^\\def\\secentryfonts{\\textfonts}$/ | ||
| 3970 | secentry tex-src/texinfo.tex /^ \\def\\secentry ##1##2##3##4{}$/ | 3563 | secentry tex-src/texinfo.tex /^ \\def\\secentry ##1##2##3##4{}$/ |
| 3971 | secentry tex-src/texinfo.tex /^\\def\\secentry#1#2#3#4{\\dosecentry{#2.#3\\labelspace/ | 3564 | secentry tex-src/texinfo.tex /^\\def\\secentry#1#2#3#4{\\dosecentry{#2.#3\\labelspace/ |
| 3972 | secentryfonts tex-src/texinfo.tex /^\\def\\secentryfonts{\\textfonts}$/ | ||
| 3973 | secfonts tex-src/texinfo.tex /^\\def\\secfonts{%$/ | 3565 | secfonts tex-src/texinfo.tex /^\\def\\secfonts{%$/ |
| 3974 | secheading tex-src/texinfo.tex /^\\def\\secheading #1#2#3{\\secheadingi {#2.#3\\enspace/ | ||
| 3975 | secheadingbreak tex-src/texinfo.tex /^\\def\\secheadingbreak{\\dobreak \\secheadingskip {-10/ | 3566 | secheadingbreak tex-src/texinfo.tex /^\\def\\secheadingbreak{\\dobreak \\secheadingskip {-10/ |
| 3976 | secheadingi tex-src/texinfo.tex /^\\def\\secheadingi #1{{\\advance \\secheadingskip by \\/ | 3567 | secheadingi tex-src/texinfo.tex /^\\def\\secheadingi #1{{\\advance \\secheadingskip by \\/ |
| 3568 | secheading tex-src/texinfo.tex /^\\def\\secheading #1#2#3{\\secheadingi {#2.#3\\enspace/ | ||
| 3977 | secondary tex-src/texinfo.tex /^\\def\\secondary #1#2{$/ | 3569 | secondary tex-src/texinfo.tex /^\\def\\secondary #1#2{$/ |
| 3570 | sec tex-src/texinfo.tex /^\\global\\let\\section = \\appendixsec$/ | ||
| 3571 | section_href perl-src/htlmify-cystic /^sub section_href ($)$/ | ||
| 3572 | section_name perl-src/htlmify-cystic 12 | ||
| 3573 | section_name perl-src/htlmify-cystic /^sub section_name ($)$/ | ||
| 3978 | section perl-src/htlmify-cystic 25 | 3574 | section perl-src/htlmify-cystic 25 |
| 3979 | section tex-src/texinfo.tex /^\\global\\let\\section = \\appendixsec$/ | 3575 | section tex-src/texinfo.tex /^\\global\\let\\section = \\appendixsec$/ |
| 3980 | section tex-src/texinfo.tex /^\\global\\let\\section = \\numberedsec$/ | 3576 | section tex-src/texinfo.tex /^\\global\\let\\section = \\numberedsec$/ |
| 3981 | section tex-src/texinfo.tex /^\\global\\let\\section = \\unnumberedsec$/ | 3577 | section tex-src/texinfo.tex /^\\global\\let\\section = \\unnumberedsec$/ |
| 3982 | section tex-src/texinfo.tex /^\\let\\section=\\relax$/ | 3578 | section tex-src/texinfo.tex /^\\let\\section=\\relax$/ |
| 3983 | section_href perl-src/htlmify-cystic /^sub section_href ($)$/ | ||
| 3984 | section_name perl-src/htlmify-cystic /^sub section_name ($)$/ | ||
| 3985 | section_name perl-src/htlmify-cystic 12 | ||
| 3986 | section_toc perl-src/htlmify-cystic 15 | 3579 | section_toc perl-src/htlmify-cystic 15 |
| 3987 | section_url perl-src/htlmify-cystic /^sub section_url ()$/ | ||
| 3988 | section_url_base perl-src/htlmify-cystic /^sub section_url_base ()$/ | 3580 | section_url_base perl-src/htlmify-cystic /^sub section_url_base ()$/ |
| 3989 | section_url_name perl-src/htlmify-cystic /^sub section_url_name ()$/ | 3581 | section_url_name perl-src/htlmify-cystic /^sub section_url_name ()$/ |
| 3990 | sectionzzz tex-src/texinfo.tex /^\\outer\\def\\appendixsection{\\parsearg\\appendixsecti/ | 3582 | section_url perl-src/htlmify-cystic /^sub section_url ()$/ |
| 3991 | sectionzzz tex-src/texinfo.tex /^\\outer\\def\\appendixsec{\\parsearg\\appendixsectionzz/ | 3583 | sectionzzz tex-src/texinfo.tex /^\\outer\\def\\appendixsec{\\parsearg\\appendixsectionzz/ |
| 3584 | sectionzzz tex-src/texinfo.tex /^\\outer\\def\\appendixsection{\\parsearg\\appendixsecti/ | ||
| 3992 | seczzz tex-src/texinfo.tex /^\\def\\infoappendixsec{\\parsearg\\appendixseczzz}$/ | 3585 | seczzz tex-src/texinfo.tex /^\\def\\infoappendixsec{\\parsearg\\appendixseczzz}$/ |
| 3993 | seczzz tex-src/texinfo.tex /^\\def\\seczzz #1{\\seccheck{section}%$/ | 3586 | seczzz tex-src/texinfo.tex /^\\def\\seczzz #1{\\seccheck{section}%$/ |
| 3587 | select_last prol-src/natded.prolog /^select_last([X],X,[]).$/ | ||
| 3588 | SelectLayer lua-src/allegro.lua /^function SelectLayer (layer)$/ | ||
| 3994 | select prol-src/natded.prolog /^select(X,[X|Xs],Xs).$/ | 3589 | select prol-src/natded.prolog /^select(X,[X|Xs],Xs).$/ |
| 3995 | select-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table ()$/ | 3590 | select-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table ()$/ |
| 3996 | select-tags-table-mode el-src/emacs/lisp/progmodes/etags.el /^(define-derived-mode select-tags-table-mode specia/ | 3591 | select-tags-table-mode el-src/emacs/lisp/progmodes/etags.el /^(define-derived-mode select-tags-table-mode specia/ |
| 3997 | select-tags-table-mode-map el-src/emacs/lisp/progmodes/etags.el /^(defvar select-tags-table-mode-map ; Doc string?$/ | 3592 | select-tags-table-mode-map el-src/emacs/lisp/progmodes/etags.el /^(defvar select-tags-table-mode-map ; Doc string?$/ |
| 3998 | select-tags-table-quit el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table-quit ()$/ | 3593 | select-tags-table-quit el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table-quit ()$/ |
| 3999 | select-tags-table-select el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table-select (button)$/ | 3594 | select-tags-table-select el-src/emacs/lisp/progmodes/etags.el /^(defun select-tags-table-select (button)$/ |
| 4000 | select_last prol-src/natded.prolog /^select_last([X],X,[]).$/ | 3595 | Self/f ada-src/2ataspri.adb /^ function Self return TCB_Ptr is$/ |
| 4001 | send objc-src/Subprocess.m /^- send:(const char *)string withNewline:(BOOL)want/ | 3596 | Self/f ada-src/2ataspri.ads /^ function Self return TCB_Ptr;$/ |
| 4002 | send objc-src/Subprocess.m /^- send:(const char *)string$/ | 3597 | send objc-src/Subprocess.m /^- send:(const char *)string$/ |
| 3598 | send objc-src/Subprocess.m /^- send:(const char *)string withNewline:(BOOL)want/ | ||
| 4003 | separator_names c-src/emacs/src/keyboard.c 7372 | 3599 | separator_names c-src/emacs/src/keyboard.c 7372 |
| 4004 | sepspaces tex-src/texinfo.tex /^\\gdef\\sepspaces{\\def {\\ }}}$/ | 3600 | sepspaces tex-src/texinfo.tex /^\\gdef\\sepspaces{\\def {\\ }}}$/ |
| 4005 | serializeToVars php-src/lce_functions.php /^ function serializeToVars($prefix)$/ | 3601 | serializeToVars php-src/lce_functions.php /^ function serializeToVars($prefix)$/ |
| 4006 | set cp-src/conway.hpp /^ void set(void) { alive = 1; }$/ | 3602 | ServerEdit pyt-src/server.py /^class ServerEdit(Frame):$/ |
| 4007 | set merc-src/accumulator.m /^:- import_module set.$/ | 3603 | Server pyt-src/server.py /^class Server:$/ |
| 4008 | set tex-src/texinfo.tex /^\\def\\set{\\parsearg\\setxxx}$/ | ||
| 4009 | set-input-interrupt-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/ | ||
| 4010 | set-input-meta-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/ | ||
| 4011 | set-input-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/ | ||
| 4012 | set-output-flow-control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/ | ||
| 4013 | set-quit-char c-src/emacs/src/keyboard.c /^DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_/ | ||
| 4014 | setDate cp-src/functions.cpp /^void Date::setDate ( int d , int m , int y ){$/ | ||
| 4015 | setDelegate objc-src/Subprocess.m /^- setDelegate:anObject$/ | ||
| 4016 | setRevertButtonTitle objc-src/PackInsp.m /^-setRevertButtonTitle$/ | ||
| 4017 | set_base cp-src/Range.h /^ void set_base (double b) { rng_base = b; }$/ | 3604 | set_base cp-src/Range.h /^ void set_base (double b) { rng_base = b; }$/ |
| 3605 | setchapternewpage tex-src/texinfo.tex /^\\def\\setchapternewpage #1 {\\csname CHAPPAG#1\\endcs/ | ||
| 3606 | setchapterstyle tex-src/texinfo.tex /^\\def\\setchapterstyle #1 {\\csname CHAPF#1\\endcsname/ | ||
| 4018 | set_char_table_contents c-src/emacs/src/lisp.h /^set_char_table_contents (Lisp_Object table, ptrdif/ | 3607 | set_char_table_contents c-src/emacs/src/lisp.h /^set_char_table_contents (Lisp_Object table, ptrdif/ |
| 4019 | set_char_table_defalt c-src/emacs/src/lisp.h /^set_char_table_defalt (Lisp_Object table, Lisp_Obj/ | 3608 | set_char_table_defalt c-src/emacs/src/lisp.h /^set_char_table_defalt (Lisp_Object table, Lisp_Obj/ |
| 4020 | set_char_table_extras c-src/emacs/src/lisp.h /^set_char_table_extras (Lisp_Object table, ptrdiff_/ | 3609 | set_char_table_extras c-src/emacs/src/lisp.h /^set_char_table_extras (Lisp_Object table, ptrdiff_/ |
| 4021 | set_char_table_purpose c-src/emacs/src/lisp.h /^set_char_table_purpose (Lisp_Object table, Lisp_Ob/ | 3610 | set_char_table_purpose c-src/emacs/src/lisp.h /^set_char_table_purpose (Lisp_Object table, Lisp_Ob/ |
| 3611 | set cp-src/conway.hpp /^ void set(void) { alive = 1; }$/ | ||
| 3612 | setDate cp-src/functions.cpp /^void Date::setDate ( int d , int m , int y ){$/ | ||
| 3613 | setdeffont tex-src/texinfo.tex /^\\def\\setdeffont #1 {\\csname DEF#1\\endcsname}$/ | ||
| 3614 | setDelegate objc-src/Subprocess.m /^- setDelegate:anObject$/ | ||
| 3615 | setfilename tex-src/texinfo.tex /^\\def\\setfilename{%$/ | ||
| 3616 | setfilename tex-src/texinfo.tex /^ \\global\\let\\setfilename=\\comment % Ignore extra/ | ||
| 4022 | set_hash_key_slot c-src/emacs/src/lisp.h /^set_hash_key_slot (struct Lisp_Hash_Table *h, ptrd/ | 3617 | set_hash_key_slot c-src/emacs/src/lisp.h /^set_hash_key_slot (struct Lisp_Hash_Table *h, ptrd/ |
| 4023 | set_hash_value_slot c-src/emacs/src/lisp.h /^set_hash_value_slot (struct Lisp_Hash_Table *h, pt/ | 3618 | set_hash_value_slot c-src/emacs/src/lisp.h /^set_hash_value_slot (struct Lisp_Hash_Table *h, pt/ |
| 4024 | set_inc cp-src/Range.h /^ void set_inc (double i) { rng_inc = i; }$/ | 3619 | set_inc cp-src/Range.h /^ void set_inc (double i) { rng_inc = i; }$/ |
| 3620 | set-input-interrupt-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-interrupt-mode", Fset_input_inte/ | ||
| 3621 | set-input-meta-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-meta-mode", Fset_input_meta_mode/ | ||
| 3622 | set-input-mode c-src/emacs/src/keyboard.c /^DEFUN ("set-input-mode", Fset_input_mode, Sset_inp/ | ||
| 4025 | set_limit cp-src/Range.h /^ void set_limit (double l) { rng_limit = l; }$/ | 3623 | set_limit cp-src/Range.h /^ void set_limit (double l) { rng_limit = l; }$/ |
| 3624 | /setmanualfeed ps-src/rfc1245.ps /^\/setmanualfeed {$/ | ||
| 3625 | set merc-src/accumulator.m /^:- import_module set.$/ | ||
| 3626 | set-output-flow-control c-src/emacs/src/keyboard.c /^DEFUN ("set-output-flow-control", Fset_output_flow/ | ||
| 4026 | set_overlay_plist c-src/emacs/src/lisp.h /^set_overlay_plist (Lisp_Object overlay, Lisp_Objec/ | 3627 | set_overlay_plist c-src/emacs/src/lisp.h /^set_overlay_plist (Lisp_Object overlay, Lisp_Objec/ |
| 3628 | Set_Own_Priority/p ada-src/2ataspri.adb /^ procedure Set_Own_Priority (Prio : System.Any_P/ | ||
| 3629 | Set_Own_Priority/p ada-src/2ataspri.ads /^ procedure Set_Own_Priority (Prio : System.Any_P/ | ||
| 3630 | /setpapername ps-src/rfc1245.ps /^\/setpapername { $/ | ||
| 3631 | /setpattern ps-src/rfc1245.ps /^\/setpattern {$/ | ||
| 4027 | set_poll_suppress_count c-src/emacs/src/keyboard.c /^set_poll_suppress_count (int count)$/ | 3632 | set_poll_suppress_count c-src/emacs/src/keyboard.c /^set_poll_suppress_count (int count)$/ |
| 3633 | Set_Priority/p ada-src/2ataspri.adb /^ procedure Set_Priority$/ | ||
| 3634 | Set_Priority/p ada-src/2ataspri.ads /^ procedure Set_Priority (T : TCB_Ptr; Prio : Sys/ | ||
| 4028 | set_prop c-src/emacs/src/keyboard.c /^set_prop (ptrdiff_t idx, Lisp_Object val)$/ | 3635 | set_prop c-src/emacs/src/keyboard.c /^set_prop (ptrdiff_t idx, Lisp_Object val)$/ |
| 3636 | SETPRT f-src/entry.for /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/ | ||
| 3637 | SETPRT f-src/entry.strange /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/ | ||
| 3638 | SETPRT f-src/entry.strange_suffix /^ ENTRY SETPRT ( SHORT, EXPL, LONG, TRACE, D/ | ||
| 3639 | set-quit-char c-src/emacs/src/keyboard.c /^DEFUN ("set-quit-char", Fset_quit_char, Sset_quit_/ | ||
| 3640 | setref tex-src/texinfo.tex /^\\def\\setref#1{%$/ | ||
| 3641 | setref tex-src/texinfo.tex /^\\expandafter\\expandafter\\expandafter\\appendixsetre/ | ||
| 3642 | setRevertButtonTitle objc-src/PackInsp.m /^-setRevertButtonTitle$/ | ||
| 4029 | set_save_integer c-src/emacs/src/lisp.h /^set_save_integer (Lisp_Object obj, int n, ptrdiff_/ | 3643 | set_save_integer c-src/emacs/src/lisp.h /^set_save_integer (Lisp_Object obj, int n, ptrdiff_/ |
| 4030 | set_save_pointer c-src/emacs/src/lisp.h /^set_save_pointer (Lisp_Object obj, int n, void *va/ | 3644 | set_save_pointer c-src/emacs/src/lisp.h /^set_save_pointer (Lisp_Object obj, int n, void *va/ |
| 4031 | set_string_intervals c-src/emacs/src/lisp.h /^set_string_intervals (Lisp_Object s, INTERVAL i)$/ | 3645 | set_string_intervals c-src/emacs/src/lisp.h /^set_string_intervals (Lisp_Object s, INTERVAL i)$/ |
| 4032 | set_sub_char_table_contents c-src/emacs/src/lisp.h /^set_sub_char_table_contents (Lisp_Object table, pt/ | 3646 | set_sub_char_table_contents c-src/emacs/src/lisp.h /^set_sub_char_table_contents (Lisp_Object table, pt/ |
| 3647 | SET_SYMBOL_BLV c-src/emacs/src/lisp.h /^SET_SYMBOL_BLV (struct Lisp_Symbol *sym, struct Li/ | ||
| 4033 | set_symbol_function c-src/emacs/src/lisp.h /^set_symbol_function (Lisp_Object sym, Lisp_Object / | 3648 | set_symbol_function c-src/emacs/src/lisp.h /^set_symbol_function (Lisp_Object sym, Lisp_Object / |
| 3649 | SET_SYMBOL_FWD c-src/emacs/src/lisp.h /^SET_SYMBOL_FWD (struct Lisp_Symbol *sym, union Lis/ | ||
| 4034 | set_symbol_next c-src/emacs/src/lisp.h /^set_symbol_next (Lisp_Object sym, struct Lisp_Symb/ | 3650 | set_symbol_next c-src/emacs/src/lisp.h /^set_symbol_next (Lisp_Object sym, struct Lisp_Symb/ |
| 4035 | set_symbol_plist c-src/emacs/src/lisp.h /^set_symbol_plist (Lisp_Object sym, Lisp_Object pli/ | 3651 | set_symbol_plist c-src/emacs/src/lisp.h /^set_symbol_plist (Lisp_Object sym, Lisp_Object pli/ |
| 4036 | set_upto merc-src/accumulator.m /^:- func set_upto(accu_case, int) = set(accu_goal_i/ | 3652 | SET_SYMBOL_VAL c-src/emacs/src/lisp.h /^# define SET_SYMBOL_VAL(sym, v) lisp_h_SET_SYMBOL_/ |
| 4037 | set_waiting_for_input c-src/emacs/src/keyboard.c /^set_waiting_for_input (struct timespec *time_to_cl/ | 3653 | set tex-src/texinfo.tex /^\\def\\set{\\parsearg\\setxxx}$/ |
| 4038 | setchapternewpage tex-src/texinfo.tex /^\\def\\setchapternewpage #1 {\\csname CHAPPAG#1\\endcs/ | ||
| 4039 | setchapterstyle tex-src/texinfo.tex /^\\def\\setchapterstyle #1 {\\csname CHAPF#1\\endcsname/ | ||
| 4040 | setdeffont tex-src/texinfo.tex /^\\def\\setdeffont #1 {\\csname DEF#1\\endcsname}$/ | ||
| 4041 | setfilename tex-src/texinfo.tex /^ \\global\\let\\setfilename=\\comment % Ignore extra/ | ||
| 4042 | setfilename tex-src/texinfo.tex /^\\def\\setfilename{%$/ | ||
| 4043 | setref tex-src/texinfo.tex /^\\def\\setref#1{%$/ | ||
| 4044 | setref tex-src/texinfo.tex /^\\expandafter\\expandafter\\expandafter\\appendixsetre/ | ||
| 4045 | settitle tex-src/texinfo.tex /^\\def\\settitle{\\parsearg\\settitlezzz}$/ | 3654 | settitle tex-src/texinfo.tex /^\\def\\settitle{\\parsearg\\settitlezzz}$/ |
| 4046 | settitlezzz tex-src/texinfo.tex /^\\def\\settitlezzz #1{\\gdef\\thistitle{#1}}$/ | 3655 | settitlezzz tex-src/texinfo.tex /^\\def\\settitlezzz #1{\\gdef\\thistitle{#1}}$/ |
| 4047 | setup cp-src/c.C 5 | 3656 | setup cp-src/c.C 5 |
| 3657 | set_upto merc-src/accumulator.m /^:- func set_upto(accu_case, int) = set(accu_goal_i/ | ||
| 3658 | set_waiting_for_input c-src/emacs/src/keyboard.c /^set_waiting_for_input (struct timespec *time_to_cl/ | ||
| 4048 | setxxx tex-src/texinfo.tex /^\\def\\setxxx #1{$/ | 3659 | setxxx tex-src/texinfo.tex /^\\def\\setxxx #1{$/ |
| 3660 | /SF ps-src/rfc1245.ps /^\/SF { $/ | ||
| 4049 | sf tex-src/texinfo.tex /^\\def\\sf{\\fam=\\sffam \\tensf}$/ | 3661 | sf tex-src/texinfo.tex /^\\def\\sf{\\fam=\\sffam \\tensf}$/ |
| 4050 | sf tex-src/texinfo.tex /^\\def\\sf{\\realbackslash sf}%$/ | 3662 | sf tex-src/texinfo.tex /^\\def\\sf{\\realbackslash sf}%$/ |
| 3663 | @sf tex-src/texinfo.tex /^\\ifhmode\\edef\\@sf{\\spacefactor\\the\\spacefactor}\\\/\\/ | ||
| 3664 | @sf tex-src/texinfo.tex /^\\let\\@sf\\empty$/ | ||
| 4051 | sf tex-src/texinfo.tex /^{\\let\\tentt=\\sectt \\let\\tt=\\sectt \\let\\sf=\\sectt$/ | 3665 | sf tex-src/texinfo.tex /^{\\let\\tentt=\\sectt \\let\\tt=\\sectt \\let\\sf=\\sectt$/ |
| 4052 | shift cp-src/functions.cpp /^void Date::shift ( void ){\/\/Shift this date to pre/ | 3666 | shift cp-src/functions.cpp /^void Date::shift ( void ){\/\/Shift this date to pre/ |
| 4053 | shortchapentry tex-src/texinfo.tex /^\\def\\shortchapentry#1#2#3{%$/ | 3667 | shortchapentry tex-src/texinfo.tex /^\\def\\shortchapentry#1#2#3{%$/ |
| 4054 | shortcontents tex-src/texinfo.tex /^\\let\\shortcontents = \\summarycontents$/ | 3668 | shortcontents tex-src/texinfo.tex /^\\let\\shortcontents = \\summarycontents$/ |
| 4055 | shortunnumberedentry tex-src/texinfo.tex /^\\def\\shortunnumberedentry#1#2{%$/ | 3669 | shortunnumberedentry tex-src/texinfo.tex /^\\def\\shortunnumberedentry#1#2{%$/ |
| 4056 | shouldLoad objc-src/PackInsp.m /^-(BOOL)shouldLoad$/ | ||
| 4057 | should_attempt_accu_transform merc-src/accumulator.m /^:- pred should_attempt_accu_transform(module_info:/ | ||
| 4058 | should_attempt_accu_transform_2 merc-src/accumulator.m /^:- pred should_attempt_accu_transform_2(module_inf/ | 3670 | should_attempt_accu_transform_2 merc-src/accumulator.m /^:- pred should_attempt_accu_transform_2(module_inf/ |
| 3671 | should_attempt_accu_transform merc-src/accumulator.m /^:- pred should_attempt_accu_transform(module_info:/ | ||
| 3672 | shouldLoad objc-src/PackInsp.m /^-(BOOL)shouldLoad$/ | ||
| 4059 | should_see_this_array_type cp-src/c.C 156 | 3673 | should_see_this_array_type cp-src/c.C 156 |
| 4060 | should_see_this_function_pointer cp-src/c.C 153 | 3674 | should_see_this_function_pointer cp-src/c.C 153 |
| 4061 | should_see_this_one_enclosed_in_extern_C cp-src/c.C 149 | 3675 | should_see_this_one_enclosed_in_extern_C cp-src/c.C 149 |
| 4062 | show erl-src/gs_dialog.erl /^show(Module, Title, Message, Args) ->$/ | 3676 | show erl-src/gs_dialog.erl /^show(Module, Title, Message, Args) ->$/ |
| 4063 | showError objc-src/Subprocess.m /^showError (const char *errorString, id theDelegate/ | 3677 | showError objc-src/Subprocess.m /^showError (const char *errorString, id theDelegate/ |
| 4064 | showInfo objc-src/PackInsp.m /^-showInfo:sender$/ | ||
| 4065 | show_help_echo c-src/emacs/src/keyboard.c /^show_help_echo (Lisp_Object help, Lisp_Object wind/ | 3678 | show_help_echo c-src/emacs/src/keyboard.c /^show_help_echo (Lisp_Object help, Lisp_Object wind/ |
| 3679 | showInfo objc-src/PackInsp.m /^-showInfo:sender$/ | ||
| 4066 | sig c-src/emacs/src/keyboard.c 7238 | 3680 | sig c-src/emacs/src/keyboard.c 7238 |
| 4067 | signal_handler c-src/h.h 82 | ||
| 4068 | signal_handler1 c-src/h.h 83 | 3681 | signal_handler1 c-src/h.h 83 |
| 3682 | signal_handler c-src/h.h 82 | ||
| 4069 | signal_handler_t c-src/h.h 94 | 3683 | signal_handler_t c-src/h.h 94 |
| 3684 | SimpleCalc objcpp-src/SimpleCalc.H /^@interface SimpleCalc:Object$/ | ||
| 4070 | simulation html-src/software.html /^Software that I wrote for supporting my research a/ | 3685 | simulation html-src/software.html /^Software that I wrote for supporting my research a/ |
| 4071 | single_kboard c-src/emacs/src/keyboard.c 89 | ||
| 4072 | single_kboard_state c-src/emacs/src/keyboard.c /^single_kboard_state ()$/ | ||
| 4073 | singlecodeindexer tex-src/texinfo.tex /^\\def\\singlecodeindexer #1{\\doind{\\indexname}{\\code/ | 3686 | singlecodeindexer tex-src/texinfo.tex /^\\def\\singlecodeindexer #1{\\doind{\\indexname}{\\code/ |
| 4074 | singleindexer tex-src/texinfo.tex /^\\def\\singleindexer #1{\\doind{\\indexname}{#1}}$/ | 3687 | singleindexer tex-src/texinfo.tex /^\\def\\singleindexer #1{\\doind{\\indexname}{#1}}$/ |
| 3688 | single_kboard c-src/emacs/src/keyboard.c 89 | ||
| 3689 | single_kboard_state c-src/emacs/src/keyboard.c /^single_kboard_state ()$/ | ||
| 3690 | SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c 6212 | ||
| 3691 | SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c 6763 | ||
| 3692 | SINGLE_LETTER_MOD c-src/emacs/src/keyboard.c /^#define SINGLE_LETTER_MOD(BIT) \\$/ | ||
| 4075 | singlespace tex-src/texinfo.tex /^\\def\\singlespace{%$/ | 3693 | singlespace tex-src/texinfo.tex /^\\def\\singlespace{%$/ |
| 4076 | site cp-src/conway.hpp /^ site(int xi, int yi): x(xi), y(yi), alive(0) {/ | ||
| 4077 | site cp-src/conway.hpp 5 | 3694 | site cp-src/conway.hpp 5 |
| 3695 | site cp-src/conway.hpp /^ site(int xi, int yi): x(xi), y(yi), alive(0) {/ | ||
| 4078 | size c-src/emacs/src/gmalloc.c 156 | 3696 | size c-src/emacs/src/gmalloc.c 156 |
| 4079 | size c-src/emacs/src/gmalloc.c 163 | 3697 | size c-src/emacs/src/gmalloc.c 163 |
| 4080 | size c-src/emacs/src/gmalloc.c 1867 | 3698 | size c-src/emacs/src/gmalloc.c 1870 |
| 4081 | size c-src/emacs/src/lisp.h 1364 | 3699 | size c-src/emacs/src/lisp.h 1364 |
| 4082 | size c-src/emacs/src/lisp.h 1390 | 3700 | size c-src/emacs/src/lisp.h 1390 |
| 4083 | size c-src/etags.c 236 | 3701 | size c-src/etags.c 236 |
| 4084 | size c-src/etags.c 2522 | 3702 | size c-src/etags.c 2522 |
| 3703 | SIZEFORMAT objc-src/PackInsp.m 57 | ||
| 4085 | skeyseen c-src/etags.c 2445 | 3704 | skeyseen c-src/etags.c 2445 |
| 3705 | SkipBlanks pas-src/common.pas /^function SkipBlanks; (*($/ | ||
| 3706 | SkipChars pas-src/common.pas /^function SkipChars; (*($/ | ||
| 4086 | skip_name c-src/etags.c /^skip_name (char *cp)$/ | 3707 | skip_name c-src/etags.c /^skip_name (char *cp)$/ |
| 4087 | skip_non_spaces c-src/etags.c /^skip_non_spaces (char *cp)$/ | 3708 | skip_non_spaces c-src/etags.c /^skip_non_spaces (char *cp)$/ |
| 4088 | skip_spaces c-src/etags.c /^skip_spaces (char *cp)$/ | 3709 | skip_spaces c-src/etags.c /^skip_spaces (char *cp)$/ |
| 4089 | sl tex-src/texinfo.tex /^ \\let\\rm=\\shortcontrm \\let\\bf=\\shortcontbf \\l/ | 3710 | SkipSpaces pas-src/common.pas /^procedure SkipSpaces; (* (Str : NameString; var I / |
| 4090 | sl tex-src/texinfo.tex /^\\def\\sl{\\realbackslash sl }%$/ | 3711 | sl tex-src/texinfo.tex /^\\def\\sl{\\realbackslash sl }%$/ |
| 3712 | sl tex-src/texinfo.tex /^ \\let\\rm=\\shortcontrm \\let\\bf=\\shortcontbf \\l/ | ||
| 4091 | smallbook tex-src/texinfo.tex /^\\def\\smallbook{$/ | 3713 | smallbook tex-src/texinfo.tex /^\\def\\smallbook{$/ |
| 4092 | smallbook tex-src/texinfo.tex /^\\let\\smallbook=\\relax$/ | 3714 | smallbook tex-src/texinfo.tex /^\\let\\smallbook=\\relax$/ |
| 4093 | smallcaps tex-src/texinfo.tex /^ \\let\\tenbf=\\chapbf \\let\\tentt=\\chaptt \\let\\small/ | 3715 | smallcaps tex-src/texinfo.tex /^ \\let\\tenbf=\\chapbf \\let\\tentt=\\chaptt \\let\\small/ |
| @@ -4105,31 +3727,72 @@ snarf-tag-function el-src/emacs/lisp/progmodes/etags.el /^(defvar snarf-tag-func | |||
| 4105 | snone c-src/etags.c 2443 | 3727 | snone c-src/etags.c 2443 |
| 4106 | solutions merc-src/accumulator.m /^:- import_module solutions.$/ | 3728 | solutions merc-src/accumulator.m /^:- import_module solutions.$/ |
| 4107 | some_mouse_moved c-src/emacs/src/keyboard.c /^some_mouse_moved (void)$/ | 3729 | some_mouse_moved c-src/emacs/src/keyboard.c /^some_mouse_moved (void)$/ |
| 4108 | sp tex-src/texinfo.tex /^\\def\\sp{\\parsearg\\spxxx}$/ | 3730 | #some-storage forth-src/test-forth.fth /^2000 buffer: #some-storage$/ |
| 4109 | space tex-src/texinfo.tex /^ {#2\\labelspace #1}\\dotfill\\doshortpageno{#3}}%/ | ||
| 4110 | space tex-src/texinfo.tex /^ \\dosubsubsecentry{#2.#3.#4.#5\\labelspace#1}{#6}}/ | ||
| 4111 | space tex-src/texinfo.tex /^\\def\\chapentry#1#2#3{\\dochapentry{#2\\labelspace#1}/ | ||
| 4112 | space tex-src/texinfo.tex /^\\def\\secentry#1#2#3#4{\\dosecentry{#2.#3\\labelspace/ | ||
| 4113 | space tex-src/texinfo.tex /^\\def\\subsecentry#1#2#3#4#5{\\dosubsecentry{#2.#3.#4/ | ||
| 4114 | spacer c-src/emacs/src/lisp.h 1975 | 3731 | spacer c-src/emacs/src/lisp.h 1975 |
| 4115 | spacer c-src/emacs/src/lisp.h 1982 | 3732 | spacer c-src/emacs/src/lisp.h 1982 |
| 4116 | spacer c-src/emacs/src/lisp.h 2036 | 3733 | spacer c-src/emacs/src/lisp.h 2036 |
| 4117 | spacer c-src/emacs/src/lisp.h 2205 | 3734 | spacer c-src/emacs/src/lisp.h 2205 |
| 4118 | spacesplit tex-src/texinfo.tex /^\\gdef\\spacesplit#1#2^^M{\\endgroup\\spacesplitfoo{#1/ | ||
| 4119 | spacesplitfoo tex-src/texinfo.tex /^\\long\\gdef\\spacesplitfoo#1#2 #3#4\\spacesplitfoo{%$/ | 3735 | spacesplitfoo tex-src/texinfo.tex /^\\long\\gdef\\spacesplitfoo#1#2 #3#4\\spacesplitfoo{%$/ |
| 4120 | specbind_tag c-src/emacs/src/lisp.h 2943 | 3736 | spacesplit tex-src/texinfo.tex /^\\gdef\\spacesplit#1#2^^M{\\endgroup\\spacesplitfoo{#1/ |
| 3737 | space tex-src/texinfo.tex /^ {#2\\labelspace #1}\\dotfill\\doshortpageno{#3}}%/ | ||
| 3738 | space tex-src/texinfo.tex /^\\def\\chapentry#1#2#3{\\dochapentry{#2\\labelspace#1}/ | ||
| 3739 | space tex-src/texinfo.tex /^\\def\\secentry#1#2#3#4{\\dosecentry{#2.#3\\labelspace/ | ||
| 3740 | space tex-src/texinfo.tex /^\\def\\subsecentry#1#2#3#4#5{\\dosubsecentry{#2.#3.#4/ | ||
| 3741 | space tex-src/texinfo.tex /^ \\dosubsubsecentry{#2.#3.#4.#5\\labelspace#1}{#6}}/ | ||
| 4121 | specbinding c-src/emacs/src/lisp.h 2955 | 3742 | specbinding c-src/emacs/src/lisp.h 2955 |
| 3743 | specbind_tag c-src/emacs/src/lisp.h 2943 | ||
| 4122 | specheader tex-src/texinfo.tex /^\\def\\defspec{\\defparsebody\\Edefspec\\defspecx\\defsp/ | 3744 | specheader tex-src/texinfo.tex /^\\def\\defspec{\\defparsebody\\Edefspec\\defspecx\\defsp/ |
| 4123 | specialsymbol prol-src/natded.prolog /^specialsymbol(C1,C2,S):-$/ | 3745 | specialsymbol prol-src/natded.prolog /^specialsymbol(C1,C2,S):-$/ |
| 3746 | SPECPDL_BACKTRACE c-src/emacs/src/lisp.h 2948 | ||
| 3747 | SPECPDL_INDEX c-src/emacs/src/lisp.h /^SPECPDL_INDEX (void)$/ | ||
| 3748 | SPECPDL_LET c-src/emacs/src/lisp.h 2949 | ||
| 3749 | SPECPDL_LET_DEFAULT c-src/emacs/src/lisp.h 2952 | ||
| 3750 | SPECPDL_LET_LOCAL c-src/emacs/src/lisp.h 2951 | ||
| 3751 | SPECPDL_UNWIND c-src/emacs/src/lisp.h 2944 | ||
| 3752 | SPECPDL_UNWIND_INT c-src/emacs/src/lisp.h 2946 | ||
| 3753 | SPECPDL_UNWIND_PTR c-src/emacs/src/lisp.h 2945 | ||
| 3754 | SPECPDL_UNWIND_VOID c-src/emacs/src/lisp.h 2947 | ||
| 4124 | specx\defspecheader tex-src/texinfo.tex /^\\def\\defspec{\\defparsebody\\Edefspec\\defspecx\\defsp/ | 3755 | specx\defspecheader tex-src/texinfo.tex /^\\def\\defspec{\\defparsebody\\Edefspec\\defspecx\\defsp/ |
| 4125 | splitexp prol-src/natded.prolog /^splitexp(E,E,('NIL','NIL')):-!.$/ | 3756 | splitexp prol-src/natded.prolog /^splitexp(E,E,('NIL','NIL')):-!.$/ |
| 4126 | splitoff tex-src/texinfo.tex /^\\def\\splitoff#1#2\\endmark{\\def\\first{#1}\\def\\rest{/ | 3757 | splitoff tex-src/texinfo.tex /^\\def\\splitoff#1#2\\endmark{\\def\\first{#1}\\def\\rest{/ |
| 3758 | /S ps-src/rfc1245.ps /^\/S { $/ | ||
| 3759 | sp tex-src/texinfo.tex /^\\def\\sp{\\parsearg\\spxxx}$/ | ||
| 4127 | spxxx tex-src/texinfo.tex /^\\def\\spxxx #1{\\par \\vskip #1\\baselineskip}$/ | 3760 | spxxx tex-src/texinfo.tex /^\\def\\spxxx #1{\\par \\vskip #1\\baselineskip}$/ |
| 3761 | Square.something:Bar lua-src/test.lua /^function Square.something:Bar ()$/ | ||
| 4128 | srclist make-src/Makefile /^srclist: Makefile$/ | 3762 | srclist make-src/Makefile /^srclist: Makefile$/ |
| 3763 | SRCS make-src/Makefile /^SRCS=Makefile ${ADASRC} ${ASRC} ${CSRC} ${CPSRC} $/ | ||
| 3764 | SREF c-src/emacs/src/lisp.h /^SREF (Lisp_Object string, ptrdiff_t index)$/ | ||
| 4129 | ss3 c.c 255 | 3765 | ss3 c.c 255 |
| 3766 | SSDATA c-src/emacs/src/lisp.h /^SSDATA (Lisp_Object string)$/ | ||
| 3767 | SSET c-src/emacs/src/lisp.h /^SSET (Lisp_Object string, ptrdiff_t index, unsigne/ | ||
| 4130 | sss1 c.c 252 | 3768 | sss1 c.c 252 |
| 4131 | sss2 c.c 253 | 3769 | sss2 c.c 253 |
| 4132 | sstab prol-src/natded.prolog /^sstab(2,'C',',').$/ | 3770 | sstab prol-src/natded.prolog /^sstab(2,'C',',').$/ |
| 3771 | stack c.c 155 | ||
| 3772 | STACK_CONS c-src/emacs/src/lisp.h /^#define STACK_CONS(a, b) \\$/ | ||
| 3773 | stagseen c-src/etags.c 2446 | ||
| 3774 | standalone make-src/Makefile /^standalone:$/ | ||
| 3775 | startcontents tex-src/texinfo.tex /^\\def\\startcontents#1{%$/ | ||
| 3776 | start c-src/emacs/src/keyboard.c 8753 | ||
| 3777 | start c-src/emacs/src/lisp.h 2038 | ||
| 3778 | start c-src/emacs/src/regex.h 431 | ||
| 3779 | StartDay cp-src/functions.cpp /^Date StartDay(Date a,int days){\/\/Function to calcu/ | ||
| 3780 | startenumeration tex-src/texinfo.tex /^\\def\\startenumeration#1{%$/ | ||
| 3781 | start php-src/lce_functions.php /^ function start($line, $class)$/ | ||
| 3782 | start_polling c-src/emacs/src/keyboard.c /^start_polling (void)$/ | ||
| 3783 | =starts-with-equals! scm-src/test.scm /^(define =starts-with-equals! #t)$/ | ||
| 3784 | start_up prol-src/natded.prolog /^start_up:-$/ | ||
| 3785 | start y-src/cccp.y 143 | ||
| 3786 | STATE_ABORT php-src/lce_functions.php 25 | ||
| 3787 | STATE_COMPRESSD objc-src/PackInsp.m 54 | ||
| 3788 | STATE_INSTALLED objc-src/PackInsp.m 53 | ||
| 3789 | STATE_LOOP php-src/lce_functions.php 27 | ||
| 3790 | STATE_OK php-src/lce_functions.php 26 | ||
| 3791 | state_protected_p c-src/emacs/src/gmalloc.c 401 | ||
| 3792 | STAT_EQ objc-src/PackInsp.m /^#define STAT_EQ(s1, s2) ((s1)->st_ino == (s2)->st_/ | ||
| 3793 | statetable html-src/algrthms.html /^Next$/ | ||
| 3794 | STATE_UNINSTALLED objc-src/PackInsp.m 52 | ||
| 3795 | staticetags make-src/Makefile /^staticetags:$/ | ||
| 4133 | st_C_attribute c-src/etags.c 2209 | 3796 | st_C_attribute c-src/etags.c 2209 |
| 4134 | st_C_class c-src/etags.c 2212 | 3797 | st_C_class c-src/etags.c 2212 |
| 4135 | st_C_define c-src/etags.c 2213 | 3798 | st_C_define c-src/etags.c 2213 |
| @@ -4145,73 +3808,75 @@ st_C_operator c-src/etags.c 2211 | |||
| 4145 | st_C_struct c-src/etags.c 2213 | 3808 | st_C_struct c-src/etags.c 2213 |
| 4146 | st_C_template c-src/etags.c 2212 | 3809 | st_C_template c-src/etags.c 2212 |
| 4147 | st_C_typedef c-src/etags.c 2213 | 3810 | st_C_typedef c-src/etags.c 2213 |
| 4148 | st_none c-src/etags.c 2206 | 3811 | STDIN c-src/etags.c 408 |
| 4149 | stack c.c 155 | 3812 | STDIN c-src/etags.c 411 |
| 4150 | stagseen c-src/etags.c 2446 | ||
| 4151 | standalone make-src/Makefile /^standalone:$/ | ||
| 4152 | start c-src/emacs/src/keyboard.c 8753 | ||
| 4153 | start c-src/emacs/src/lisp.h 2038 | ||
| 4154 | start c-src/emacs/src/regex.h 431 | ||
| 4155 | start php-src/lce_functions.php /^ function start($line, $class)$/ | ||
| 4156 | start y-src/cccp.y 143 | ||
| 4157 | start_polling c-src/emacs/src/keyboard.c /^start_polling (void)$/ | ||
| 4158 | start_up prol-src/natded.prolog /^start_up:-$/ | ||
| 4159 | startcontents tex-src/texinfo.tex /^\\def\\startcontents#1{%$/ | ||
| 4160 | startenumeration tex-src/texinfo.tex /^\\def\\startenumeration#1{%$/ | ||
| 4161 | state_protected_p c-src/emacs/src/gmalloc.c 401 | ||
| 4162 | statetable html-src/algrthms.html /^Next$/ | ||
| 4163 | staticetags make-src/Makefile /^staticetags:$/ | ||
| 4164 | step cp-src/clheir.hpp /^ virtual void step(void) { }$/ | 3813 | step cp-src/clheir.hpp /^ virtual void step(void) { }$/ |
| 4165 | step cp-src/conway.hpp /^ void step(void) { alive = next_alive; }$/ | 3814 | step cp-src/conway.hpp /^ void step(void) { alive = next_alive; }$/ |
| 4166 | step_everybody cp-src/clheir.cpp /^void step_everybody(void)$/ | 3815 | step_everybody cp-src/clheir.cpp /^void step_everybody(void)$/ |
| 3816 | st_none c-src/etags.c 2206 | ||
| 3817 | STOP_POLLING c-src/emacs/src/keyboard.c 2166 | ||
| 4167 | stop_polling c-src/emacs/src/keyboard.c /^stop_polling (void)$/ | 3818 | stop_polling c-src/emacs/src/keyboard.c /^stop_polling (void)$/ |
| 3819 | stored_goal_plain_call merc-src/accumulator.m /^:- inst stored_goal_plain_call for goal_store.stor/ | ||
| 4168 | store_info merc-src/accumulator.m /^:- type store_info$/ | 3820 | store_info merc-src/accumulator.m /^:- type store_info$/ |
| 4169 | store_user_signal_events c-src/emacs/src/keyboard.c /^store_user_signal_events (void)$/ | 3821 | store_user_signal_events c-src/emacs/src/keyboard.c /^store_user_signal_events (void)$/ |
| 4170 | stored_goal_plain_call merc-src/accumulator.m /^:- inst stored_goal_plain_call for goal_store.stor/ | ||
| 4171 | str go-src/test1.go 9 | ||
| 4172 | strcaseeq c-src/etags.c /^#define strcaseeq(s,t) (assert ((s)!=NULL && (t)!=/ | 3822 | strcaseeq c-src/etags.c /^#define strcaseeq(s,t) (assert ((s)!=NULL && (t)!=/ |
| 4173 | streq c-src/etags.c /^#define streq(s,t) (assert ((s)!=NULL || (t)!=NULL/ | 3823 | streq c-src/etags.c /^#define streq(s,t) (assert ((s)!=NULL || (t)!=NULL/ |
| 4174 | string merc-src/accumulator.m /^:- import_module string.$/ | 3824 | str go-src/test1.go 9 |
| 3825 | STRING_BYTES_BOUND c-src/emacs/src/lisp.h 1261 | ||
| 3826 | STRING_BYTES c-src/emacs/src/lisp.h /^STRING_BYTES (struct Lisp_String *s)$/ | ||
| 4175 | string_intervals c-src/emacs/src/lisp.h /^string_intervals (Lisp_Object s)$/ | 3827 | string_intervals c-src/emacs/src/lisp.h /^string_intervals (Lisp_Object s)$/ |
| 3828 | string merc-src/accumulator.m /^:- import_module string.$/ | ||
| 3829 | STRING_MULTIBYTE c-src/emacs/src/lisp.h /^STRING_MULTIBYTE (Lisp_Object str)$/ | ||
| 3830 | STRING_SET_CHARS c-src/emacs/src/lisp.h /^STRING_SET_CHARS (Lisp_Object string, ptrdiff_t ne/ | ||
| 3831 | STRING_SET_MULTIBYTE c-src/emacs/src/lisp.h /^#define STRING_SET_MULTIBYTE(STR) \\$/ | ||
| 3832 | STRING_SET_UNIBYTE c-src/emacs/src/lisp.h /^#define STRING_SET_UNIBYTE(STR) \\$/ | ||
| 4176 | stripLine php-src/lce_functions.php /^ function stripLine($line, $class)$/ | 3833 | stripLine php-src/lce_functions.php /^ function stripLine($line, $class)$/ |
| 4177 | stripname pas-src/common.pas /^function stripname; (* ($/ | 3834 | stripname pas-src/common.pas /^function stripname; (* ($/ |
| 3835 | StripPath pas-src/common.pas /^function StripPath; (*($/ | ||
| 4178 | strncaseeq c-src/etags.c /^#define strncaseeq(s,t,n) (assert ((s)!=NULL && (t/ | 3836 | strncaseeq c-src/etags.c /^#define strncaseeq(s,t,n) (assert ((s)!=NULL && (t/ |
| 4179 | strneq c-src/etags.c /^#define strneq(s,t,n) (assert ((s)!=NULL || (t)!=N/ | 3837 | strneq c-src/etags.c /^#define strneq(s,t,n) (assert ((s)!=NULL || (t)!=N/ |
| 4180 | strong tex-src/texinfo.tex /^\\let\\strong=\\b$/ | 3838 | strong tex-src/texinfo.tex /^\\let\\strong=\\b$/ |
| 4181 | strong tex-src/texinfo.tex /^\\let\\strong=\\indexdummyfont$/ | 3839 | strong tex-src/texinfo.tex /^\\let\\strong=\\indexdummyfont$/ |
| 3840 | __str__ pyt-src/server.py /^ def __str__(self):$/ | ||
| 4182 | structdef c-src/etags.c 2448 | 3841 | structdef c-src/etags.c 2448 |
| 4183 | stuff_buffered_input c-src/emacs/src/keyboard.c /^stuff_buffered_input (Lisp_Object stuffstring)$/ | 3842 | stuff_buffered_input c-src/emacs/src/keyboard.c /^stuff_buffered_input (Lisp_Object stuffstring)$/ |
| 3843 | SUB_CHAR_TABLE_OFFSET c-src/emacs/src/lisp.h 1701 | ||
| 3844 | SUB_CHAR_TABLE_P c-src/emacs/src/lisp.h /^SUB_CHAR_TABLE_P (Lisp_Object a)$/ | ||
| 4184 | subheading tex-src/texinfo.tex /^\\def\\subheading{\\parsearg\\subsecheadingi}$/ | 3845 | subheading tex-src/texinfo.tex /^\\def\\subheading{\\parsearg\\subsecheadingi}$/ |
| 4185 | subprocess objc-src/PackInsp.m /^-subprocess:(Subprocess *)sender output:(char *)bu/ | ||
| 4186 | subprocessDone objc-src/PackInsp.m /^-subprocessDone:(Subprocess *)sender$/ | 3846 | subprocessDone objc-src/PackInsp.m /^-subprocessDone:(Subprocess *)sender$/ |
| 4187 | subsec tex-src/texinfo.tex /^\\global\\let\\subsection = \\appendixsubsec$/ | 3847 | subprocess objc-src/PackInsp.m /^-subprocess:(Subprocess *)sender output:(char *)bu/ |
| 4188 | subsec tex-src/texinfo.tex /^\\let\\subsec=\\relax$/ | 3848 | Subprocess objc-src/Subprocess.h 41 |
| 3849 | Subprocess objc-src/Subprocess.h /^@interface Subprocess:Object$/ | ||
| 3850 | SUBRP c-src/emacs/src/lisp.h /^SUBRP (Lisp_Object a)$/ | ||
| 3851 | subsecentryfonts tex-src/texinfo.tex /^\\let\\subsecentryfonts = \\textfonts$/ | ||
| 4189 | subsecentry tex-src/texinfo.tex /^ \\def\\subsecentry ##1##2##3##4##5{}$/ | 3852 | subsecentry tex-src/texinfo.tex /^ \\def\\subsecentry ##1##2##3##4##5{}$/ |
| 4190 | subsecentry tex-src/texinfo.tex /^\\def\\subsecentry#1#2#3#4#5{\\dosubsecentry{#2.#3.#4/ | 3853 | subsecentry tex-src/texinfo.tex /^\\def\\subsecentry#1#2#3#4#5{\\dosubsecentry{#2.#3.#4/ |
| 4191 | subsecentryfonts tex-src/texinfo.tex /^\\let\\subsecentryfonts = \\textfonts$/ | ||
| 4192 | subsecfonts tex-src/texinfo.tex /^\\def\\subsecfonts{%$/ | 3854 | subsecfonts tex-src/texinfo.tex /^\\def\\subsecfonts{%$/ |
| 4193 | subsecheading tex-src/texinfo.tex /^\\def\\subsecheading #1#2#3#4{\\subsecheadingi {#2.#3/ | ||
| 4194 | subsecheadingbreak tex-src/texinfo.tex /^\\def\\subsecheadingbreak{\\dobreak \\subsecheadingski/ | 3855 | subsecheadingbreak tex-src/texinfo.tex /^\\def\\subsecheadingbreak{\\dobreak \\subsecheadingski/ |
| 4195 | subsecheadingi tex-src/texinfo.tex /^\\def\\subsecheadingi #1{{\\advance \\subsecheadingski/ | 3856 | subsecheadingi tex-src/texinfo.tex /^\\def\\subsecheadingi #1{{\\advance \\subsecheadingski/ |
| 3857 | subsecheading tex-src/texinfo.tex /^\\def\\subsecheading #1#2#3#4{\\subsecheadingi {#2.#3/ | ||
| 3858 | subsec tex-src/texinfo.tex /^\\global\\let\\subsection = \\appendixsubsec$/ | ||
| 3859 | subsec tex-src/texinfo.tex /^\\let\\subsec=\\relax$/ | ||
| 3860 | subsection_marker perl-src/htlmify-cystic 161 | ||
| 4196 | subsection perl-src/htlmify-cystic 26 | 3861 | subsection perl-src/htlmify-cystic 26 |
| 4197 | subsection tex-src/texinfo.tex /^\\global\\let\\subsection = \\appendixsubsec$/ | 3862 | subsection tex-src/texinfo.tex /^\\global\\let\\subsection = \\appendixsubsec$/ |
| 4198 | subsection tex-src/texinfo.tex /^\\global\\let\\subsection = \\numberedsubsec$/ | 3863 | subsection tex-src/texinfo.tex /^\\global\\let\\subsection = \\numberedsubsec$/ |
| 4199 | subsection tex-src/texinfo.tex /^\\global\\let\\subsection = \\unnumberedsubsec$/ | 3864 | subsection tex-src/texinfo.tex /^\\global\\let\\subsection = \\unnumberedsubsec$/ |
| 4200 | subsection tex-src/texinfo.tex /^\\let\\subsection=\\relax$/ | 3865 | subsection tex-src/texinfo.tex /^\\let\\subsection=\\relax$/ |
| 4201 | subsection_marker perl-src/htlmify-cystic 161 | ||
| 4202 | subseczzz tex-src/texinfo.tex /^\\def\\infoappendixsubsec{\\parsearg\\appendixsubseczz/ | 3866 | subseczzz tex-src/texinfo.tex /^\\def\\infoappendixsubsec{\\parsearg\\appendixsubseczz/ |
| 4203 | subseczzz tex-src/texinfo.tex /^\\outer\\def\\appendixsubsec{\\parsearg\\appendixsubsec/ | 3867 | subseczzz tex-src/texinfo.tex /^\\outer\\def\\appendixsubsec{\\parsearg\\appendixsubsec/ |
| 4204 | subst prol-src/natded.prolog /^subst(var(Y),var(X),M,N):-$/ | ||
| 4205 | substitute c-src/etags.c /^substitute (char *in, char *out, struct re_registe/ | 3868 | substitute c-src/etags.c /^substitute (char *in, char *out, struct re_registe/ |
| 3869 | subst prol-src/natded.prolog /^subst(var(Y),var(X),M,N):-$/ | ||
| 3870 | SubString pas-src/common.pas /^function SubString; (*($/ | ||
| 4206 | subsubheading tex-src/texinfo.tex /^\\def\\subsubheading{\\parsearg\\subsubsecheadingi}$/ | 3871 | subsubheading tex-src/texinfo.tex /^\\def\\subsubheading{\\parsearg\\subsubsecheadingi}$/ |
| 4207 | subsubsec tex-src/texinfo.tex /^\\global\\let\\subsubsection = \\appendixsubsubsec$/ | 3872 | subsubsecentryfonts tex-src/texinfo.tex /^\\let\\subsubsecentryfonts = \\textfonts$/ |
| 4208 | subsubsec tex-src/texinfo.tex /^\\let\\subsubsec=\\relax$/ | ||
| 4209 | subsubsecentry tex-src/texinfo.tex /^ \\def\\subsubsecentry ##1##2##3##4##5##6{}$/ | 3873 | subsubsecentry tex-src/texinfo.tex /^ \\def\\subsubsecentry ##1##2##3##4##5##6{}$/ |
| 4210 | subsubsecentry tex-src/texinfo.tex /^\\def\\subsubsecentry#1#2#3#4#5#6{%$/ | 3874 | subsubsecentry tex-src/texinfo.tex /^\\def\\subsubsecentry#1#2#3#4#5#6{%$/ |
| 4211 | subsubsecentryfonts tex-src/texinfo.tex /^\\let\\subsubsecentryfonts = \\textfonts$/ | ||
| 4212 | subsubsecfonts tex-src/texinfo.tex /^\\def\\subsubsecfonts{\\subsecfonts} % Maybe this sho/ | 3875 | subsubsecfonts tex-src/texinfo.tex /^\\def\\subsubsecfonts{\\subsecfonts} % Maybe this sho/ |
| 4213 | subsubsecheading tex-src/texinfo.tex /^\\def\\subsubsecheading #1#2#3#4#5{\\subsubsecheading/ | ||
| 4214 | subsubsecheadingi tex-src/texinfo.tex /^\\def\\subsubsecheadingi #1{{\\advance \\subsecheading/ | 3876 | subsubsecheadingi tex-src/texinfo.tex /^\\def\\subsubsecheadingi #1{{\\advance \\subsecheading/ |
| 3877 | subsubsecheading tex-src/texinfo.tex /^\\def\\subsubsecheading #1#2#3#4#5{\\subsubsecheading/ | ||
| 3878 | subsubsec tex-src/texinfo.tex /^\\global\\let\\subsubsection = \\appendixsubsubsec$/ | ||
| 3879 | subsubsec tex-src/texinfo.tex /^\\let\\subsubsec=\\relax$/ | ||
| 4215 | subsubsection perl-src/htlmify-cystic 27 | 3880 | subsubsection perl-src/htlmify-cystic 27 |
| 4216 | subsubsection tex-src/texinfo.tex /^\\global\\let\\subsubsection = \\appendixsubsubsec$/ | 3881 | subsubsection tex-src/texinfo.tex /^\\global\\let\\subsubsection = \\appendixsubsubsec$/ |
| 4217 | subsubsection tex-src/texinfo.tex /^\\global\\let\\subsubsection = \\numberedsubsubsec$/ | 3882 | subsubsection tex-src/texinfo.tex /^\\global\\let\\subsubsection = \\numberedsubsubsec$/ |
| @@ -4219,9 +3884,9 @@ subsubsection tex-src/texinfo.tex /^\\global\\let\\subsubsection = \\unnumbereds | |||
| 4219 | subsubsection tex-src/texinfo.tex /^\\let\\subsubsection=\\relax$/ | 3884 | subsubsection tex-src/texinfo.tex /^\\let\\subsubsection=\\relax$/ |
| 4220 | subsubseczzz tex-src/texinfo.tex /^\\def\\infoappendixsubsubsec{\\parsearg\\appendixsubsu/ | 3885 | subsubseczzz tex-src/texinfo.tex /^\\def\\infoappendixsubsubsec{\\parsearg\\appendixsubsu/ |
| 4221 | subsubseczzz tex-src/texinfo.tex /^\\outer\\def\\appendixsubsubsec{\\parsearg\\appendixsub/ | 3886 | subsubseczzz tex-src/texinfo.tex /^\\outer\\def\\appendixsubsubsec{\\parsearg\\appendixsub/ |
| 4222 | subtitle tex-src/texinfo.tex /^ \\def\\subtitle{\\parsearg\\subtitlezzz}%$/ | ||
| 4223 | subtitlefont tex-src/texinfo.tex /^ \\def\\subtitlefont{\\subtitlerm \\normalbaselinesk/ | 3887 | subtitlefont tex-src/texinfo.tex /^ \\def\\subtitlefont{\\subtitlerm \\normalbaselinesk/ |
| 4224 | subtitlerm tex-src/texinfo.tex /^ \\let\\subtitlerm=\\tenrm$/ | 3888 | subtitlerm tex-src/texinfo.tex /^ \\let\\subtitlerm=\\tenrm$/ |
| 3889 | subtitle tex-src/texinfo.tex /^ \\def\\subtitle{\\parsearg\\subtitlezzz}%$/ | ||
| 4225 | subtitlezzz tex-src/texinfo.tex /^ \\def\\subtitlezzz##1{{\\subtitlefont \\rightline{#/ | 3890 | subtitlezzz tex-src/texinfo.tex /^ \\def\\subtitlezzz##1{{\\subtitlefont \\rightline{#/ |
| 4226 | subtle ruby-src/test1.ru /^ :tee ; attr_reader :subtle$/ | 3891 | subtle ruby-src/test1.ru /^ :tee ; attr_reader :subtle$/ |
| 4227 | subtree prol-src/natded.prolog /^subtree(T,T).$/ | 3892 | subtree prol-src/natded.prolog /^subtree(T,T).$/ |
| @@ -4235,18 +3900,37 @@ sval y-src/cccp.y 116 | |||
| 4235 | swallow_events c-src/emacs/src/keyboard.c /^swallow_events (bool do_display)$/ | 3900 | swallow_events c-src/emacs/src/keyboard.c /^swallow_events (bool do_display)$/ |
| 4236 | switch_line_buffers c-src/etags.c /^#define switch_line_buffers() (curndx = 1 - curndx/ | 3901 | switch_line_buffers c-src/etags.c /^#define switch_line_buffers() (curndx = 1 - curndx/ |
| 4237 | sxhash_combine c-src/emacs/src/lisp.h /^sxhash_combine (EMACS_UINT x, EMACS_UINT y)$/ | 3902 | sxhash_combine c-src/emacs/src/lisp.h /^sxhash_combine (EMACS_UINT x, EMACS_UINT y)$/ |
| 4238 | sym_type c-src/etags.c 2204 | 3903 | SXHASH_REDUCE c-src/emacs/src/lisp.h /^SXHASH_REDUCE (EMACS_UINT x)$/ |
| 3904 | SYMBOL_BLV c-src/emacs/src/lisp.h /^SYMBOL_BLV (struct Lisp_Symbol *sym)$/ | ||
| 3905 | SYMBOL_CONSTANT_P c-src/emacs/src/lisp.h /^# define SYMBOL_CONSTANT_P(sym) lisp_h_SYMBOL_CONS/ | ||
| 4239 | symbol c-src/emacs/src/lisp.h 2980 | 3906 | symbol c-src/emacs/src/lisp.h 2980 |
| 3907 | SYMBOL_FORWARDED c-src/emacs/src/lisp.h 651 | ||
| 3908 | SYMBOL_FWD c-src/emacs/src/lisp.h /^SYMBOL_FWD (struct Lisp_Symbol *sym)$/ | ||
| 3909 | SYMBOL_INDEX c-src/emacs/src/lisp.h /^#define SYMBOL_INDEX(sym) i##sym$/ | ||
| 4240 | symbol_interned c-src/emacs/src/lisp.h 639 | 3910 | symbol_interned c-src/emacs/src/lisp.h 639 |
| 3911 | SYMBOL_INTERNED c-src/emacs/src/lisp.h 642 | ||
| 3912 | SYMBOL_INTERNED_IN_INITIAL_OBARRAY c-src/emacs/src/lisp.h 643 | ||
| 3913 | SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P c-src/emacs/src/lisp.h /^SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P (Lisp_Object / | ||
| 3914 | SYMBOL_INTERNED_P c-src/emacs/src/lisp.h /^SYMBOL_INTERNED_P (Lisp_Object sym)$/ | ||
| 3915 | SYMBOL_LOCALIZED c-src/emacs/src/lisp.h 650 | ||
| 4241 | symbol_name c-src/emacs/src/lisp.h 1687 | 3916 | symbol_name c-src/emacs/src/lisp.h 1687 |
| 3917 | SYMBOL_NAME c-src/emacs/src/lisp.h /^SYMBOL_NAME (Lisp_Object sym)$/ | ||
| 3918 | SYMBOLP c-src/emacs/src/lisp.h /^# define SYMBOLP(x) lisp_h_SYMBOLP (x)$/ | ||
| 3919 | SYMBOL_PLAINVAL c-src/emacs/src/lisp.h 648 | ||
| 4242 | symbol_redirect c-src/emacs/src/lisp.h 646 | 3920 | symbol_redirect c-src/emacs/src/lisp.h 646 |
| 3921 | SYMBOL_UNINTERNED c-src/emacs/src/lisp.h 641 | ||
| 3922 | SYMBOL_VAL c-src/emacs/src/lisp.h /^# define SYMBOL_VAL(sym) lisp_h_SYMBOL_VAL (sym)$/ | ||
| 3923 | SYMBOL_VARALIAS c-src/emacs/src/lisp.h 649 | ||
| 4243 | syms_of_abbrev c-src/abbrev.c /^syms_of_abbrev ()$/ | 3924 | syms_of_abbrev c-src/abbrev.c /^syms_of_abbrev ()$/ |
| 4244 | syms_of_keyboard c-src/emacs/src/keyboard.c /^syms_of_keyboard (void)$/ | 3925 | syms_of_keyboard c-src/emacs/src/keyboard.c /^syms_of_keyboard (void)$/ |
| 3926 | sym_type c-src/etags.c 2204 | ||
| 4245 | synchronize_system_messages_locale c-src/emacs/src/lisp.h /^INLINE void synchronize_system_messages_locale (vo/ | 3927 | synchronize_system_messages_locale c-src/emacs/src/lisp.h /^INLINE void synchronize_system_messages_locale (vo/ |
| 4246 | synchronize_system_time_locale c-src/emacs/src/lisp.h /^INLINE void synchronize_system_time_locale (void) / | 3928 | synchronize_system_time_locale c-src/emacs/src/lisp.h /^INLINE void synchronize_system_time_locale (void) / |
| 4247 | syncodeindex tex-src/texinfo.tex /^\\def\\syncodeindex #1 #2 {%$/ | 3929 | syncodeindex tex-src/texinfo.tex /^\\def\\syncodeindex #1 #2 {%$/ |
| 4248 | synindex tex-src/texinfo.tex /^\\def\\synindex #1 #2 {%$/ | 3930 | synindex tex-src/texinfo.tex /^\\def\\synindex #1 #2 {%$/ |
| 4249 | syntax c-src/emacs/src/regex.h 350 | 3931 | syntax c-src/emacs/src/regex.h 350 |
| 3932 | SYSCALL c-src/machsyscalls.c /^#define SYSCALL(name, number, type, args, typed_ar/ | ||
| 3933 | syscall_error c-src/sysdep.h 34 | ||
| 4250 | sys_jmp_buf c-src/emacs/src/lisp.h 2906 | 3934 | sys_jmp_buf c-src/emacs/src/lisp.h 2906 |
| 4251 | sys_jmp_buf c-src/emacs/src/lisp.h 2910 | 3935 | sys_jmp_buf c-src/emacs/src/lisp.h 2910 |
| 4252 | sys_jmp_buf c-src/emacs/src/lisp.h 2916 | 3936 | sys_jmp_buf c-src/emacs/src/lisp.h 2916 |
| @@ -4256,14 +3940,12 @@ sys_longjmp c-src/emacs/src/lisp.h /^# define sys_longjmp(j, v) siglongjmp (j, v | |||
| 4256 | sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) _setjmp (j)$/ | 3940 | sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) _setjmp (j)$/ |
| 4257 | sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) setjmp (j)$/ | 3941 | sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) setjmp (j)$/ |
| 4258 | sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) sigsetjmp (j, 0)$/ | 3942 | sys_setjmp c-src/emacs/src/lisp.h /^# define sys_setjmp(j) sigsetjmp (j, 0)$/ |
| 4259 | syscall_error c-src/sysdep.h 34 | 3943 | System.Task_Primitives/b ada-src/2ataspri.adb /^package body System.Task_Primitives is$/ |
| 4260 | t cp-src/c.C 52 | 3944 | System.Task_Primitives/s ada-src/2ataspri.ads /^package System.Task_Primitives is$/ |
| 4261 | t tex-src/texinfo.tex /^\\def\\t##1{\\realbackslash r {##1}}%$/ | ||
| 4262 | t tex-src/texinfo.tex /^\\def\\t#1{{\\tt \\exhyphenpenalty=10000\\rawbackslash / | ||
| 4263 | t tex-src/texinfo.tex /^\\let\\b=\\ptexb \\let\\c=\\ptexc \\let\\i=\\ptexi \\let\\t=\\/ | ||
| 4264 | t tex-src/texinfo.tex /^\\let\\t=\\indexdummyfont$/ | ||
| 4265 | t1 cp-src/c.C 34 | 3945 | t1 cp-src/c.C 34 |
| 4266 | t2 cp-src/c.C 38 | 3946 | t2 cp-src/c.C 38 |
| 3947 | T2 cp-src/fail.C 16 | ||
| 3948 | T3 c.c 163 | ||
| 4267 | tab_count_words c-src/tab.c /^int tab_count_words(char **tab)$/ | 3949 | tab_count_words c-src/tab.c /^int tab_count_words(char **tab)$/ |
| 4268 | tab_delete_first c-src/tab.c /^int tab_delete_first(char **tab)$/ | 3950 | tab_delete_first c-src/tab.c /^int tab_delete_first(char **tab)$/ |
| 4269 | tab_fill c-src/tab.c /^char **tab_fill(char *str, char delim)$/ | 3951 | tab_fill c-src/tab.c /^char **tab_fill(char *str, char delim)$/ |
| @@ -4272,18 +3954,6 @@ table tex-src/texinfo.tex /^\\def\\table{\\begingroup\\inENV\\obeylines\\obeyspa | |||
| 4272 | tablex tex-src/texinfo.tex /^\\gdef\\tablex #1^^M{%$/ | 3954 | tablex tex-src/texinfo.tex /^\\gdef\\tablex #1^^M{%$/ |
| 4273 | tabley tex-src/texinfo.tex /^\\gdef\\tabley#1#2 #3 #4 #5 #6 #7\\endtabley{\\endgrou/ | 3955 | tabley tex-src/texinfo.tex /^\\gdef\\tabley#1#2 #3 #4 #5 #6 #7\\endtabley{\\endgrou/ |
| 4274 | tablez tex-src/texinfo.tex /^\\def\\tablez #1#2#3#4#5#6{%$/ | 3956 | tablez tex-src/texinfo.tex /^\\def\\tablez #1#2#3#4#5#6{%$/ |
| 4275 | tag-any-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-any-match-p (_tag)$/ | ||
| 4276 | tag-exact-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-exact-file-name-match-p (tag)$/ | ||
| 4277 | tag-exact-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-exact-match-p (tag)$/ | ||
| 4278 | tag-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-file-name-match-p (tag)$/ | ||
| 4279 | tag-find-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun tag-find-file-of-tag (file) ; Doc string?$/ | ||
| 4280 | tag-find-file-of-tag-noselect el-src/emacs/lisp/progmodes/etags.el /^(defun tag-find-file-of-tag-noselect (file)$/ | ||
| 4281 | tag-implicit-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-implicit-name-match-p (tag)$/ | ||
| 4282 | tag-lines-already-matched el-src/emacs/lisp/progmodes/etags.el /^(defvar tag-lines-already-matched nil$/ | ||
| 4283 | tag-partial-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-partial-file-name-match-p (_tag)$/ | ||
| 4284 | tag-re-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-re-match-p (re)$/ | ||
| 4285 | tag-symbol-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-symbol-match-p (tag)$/ | ||
| 4286 | tag-word-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-word-match-p (tag)$/ | ||
| 4287 | tag1 c-src/dostorture.c /^(*tag1 (sig, handler)) ()$/ | 3957 | tag1 c-src/dostorture.c /^(*tag1 (sig, handler)) ()$/ |
| 4288 | tag1 c-src/h.h 110 | 3958 | tag1 c-src/h.h 110 |
| 4289 | tag1 c-src/torture.c /^(*tag1 (sig, handler)) ()$/ | 3959 | tag1 c-src/torture.c /^(*tag1 (sig, handler)) ()$/ |
| @@ -4297,12 +3967,22 @@ tag5 c-src/dostorture.c /^tag5 (handler, arg)$/ | |||
| 4297 | tag5 c-src/torture.c /^tag5 (handler, arg)$/ | 3967 | tag5 c-src/torture.c /^tag5 (handler, arg)$/ |
| 4298 | tag6 c-src/dostorture.c /^tag6 (void (*handler) (void *), void *arg)$/ | 3968 | tag6 c-src/dostorture.c /^tag6 (void (*handler) (void *), void *arg)$/ |
| 4299 | tag6 c-src/torture.c /^tag6 (void (*handler) (void *), void *arg)$/ | 3969 | tag6 c-src/torture.c /^tag6 (void (*handler) (void *), void *arg)$/ |
| 4300 | tag_or_ch c-src/emacs/src/lisp.h 3026 | 3970 | tag-any-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-any-match-p (_tag)$/ |
| 3971 | tag-exact-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-exact-file-name-match-p (tag)$/ | ||
| 3972 | tag-exact-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-exact-match-p (tag)$/ | ||
| 3973 | tag-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-file-name-match-p (tag)$/ | ||
| 3974 | tag-find-file-of-tag el-src/emacs/lisp/progmodes/etags.el /^(defun tag-find-file-of-tag (file) ; Doc string?$/ | ||
| 3975 | tag-find-file-of-tag-noselect el-src/emacs/lisp/progmodes/etags.el /^(defun tag-find-file-of-tag-noselect (file)$/ | ||
| 4301 | taggedfname c-src/etags.c 207 | 3976 | taggedfname c-src/etags.c 207 |
| 4302 | tags make-src/Makefile /^tags: TAGS$/ | 3977 | tag-implicit-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-implicit-name-match-p (tag)$/ |
| 3978 | tag-lines-already-matched el-src/emacs/lisp/progmodes/etags.el /^(defvar tag-lines-already-matched nil$/ | ||
| 3979 | tag_or_ch c-src/emacs/src/lisp.h 3026 | ||
| 3980 | tag-partial-file-name-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-partial-file-name-match-p (_tag)$/ | ||
| 3981 | TAG_PTR c-src/emacs/src/lisp.h /^#define TAG_PTR(tag, ptr) \\$/ | ||
| 3982 | tag-re-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-re-match-p (re)$/ | ||
| 4303 | tags-add-tables el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-add-tables 'ask-user$/ | 3983 | tags-add-tables el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-add-tables 'ask-user$/ |
| 4304 | tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun tags-apropos (regexp)$/ | ||
| 4305 | tags-apropos-additional-actions el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-additional-actions nil$/ | 3984 | tags-apropos-additional-actions el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-additional-actions nil$/ |
| 3985 | tags-apropos el-src/emacs/lisp/progmodes/etags.el /^(defun tags-apropos (regexp)$/ | ||
| 4306 | tags-apropos-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-apropos-function nil$/ | 3986 | tags-apropos-function el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-apropos-function nil$/ |
| 4307 | tags-apropos-verbose el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-verbose nil$/ | 3987 | tags-apropos-verbose el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-apropos-verbose nil$/ |
| 4308 | tags-case-fold-search el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-case-fold-search 'default$/ | 3988 | tags-case-fold-search el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-case-fold-search 'default$/ |
| @@ -4324,6 +4004,8 @@ tags-loop-eval el-src/emacs/lisp/progmodes/etags.el /^(defun tags-loop-eval (for | |||
| 4324 | tags-loop-operate el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-loop-operate nil$/ | 4004 | tags-loop-operate el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-loop-operate nil$/ |
| 4325 | tags-loop-revert-buffers el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-loop-revert-buffers nil$/ | 4005 | tags-loop-revert-buffers el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-loop-revert-buffers nil$/ |
| 4326 | tags-loop-scan el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-loop-scan$/ | 4006 | tags-loop-scan el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-loop-scan$/ |
| 4007 | TAGS make-src/Makefile /^TAGS: etags.c$/ | ||
| 4008 | tags make-src/Makefile /^tags: TAGS$/ | ||
| 4327 | tags-next-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-next-table ()$/ | 4009 | tags-next-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-next-table ()$/ |
| 4328 | tags-query-replace el-src/emacs/lisp/progmodes/etags.el /^(defun tags-query-replace (from to &optional delim/ | 4010 | tags-query-replace el-src/emacs/lisp/progmodes/etags.el /^(defun tags-query-replace (from to &optional delim/ |
| 4329 | tags-recognize-empty-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-recognize-empty-tags-table ()$/ | 4011 | tags-recognize-empty-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-recognize-empty-tags-table ()$/ |
| @@ -4349,15 +4031,34 @@ tags-table-set-list el-src/emacs/lisp/progmodes/etags.el /^(defvar tags-table-se | |||
| 4349 | tags-tag-face el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-tag-face 'default$/ | 4031 | tags-tag-face el-src/emacs/lisp/progmodes/etags.el /^(defcustom tags-tag-face 'default$/ |
| 4350 | tags-verify-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-verify-table (file)$/ | 4032 | tags-verify-table el-src/emacs/lisp/progmodes/etags.el /^(defun tags-verify-table (file)$/ |
| 4351 | tags-with-face el-src/emacs/lisp/progmodes/etags.el /^(defmacro tags-with-face (face &rest body)$/ | 4033 | tags-with-face el-src/emacs/lisp/progmodes/etags.el /^(defmacro tags-with-face (face &rest body)$/ |
| 4034 | tag-symbol-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-symbol-match-p (tag)$/ | ||
| 4035 | TAG_SYMOFFSET c-src/emacs/src/lisp.h /^#define TAG_SYMOFFSET(offset) \\$/ | ||
| 4036 | tag-word-match-p el-src/emacs/lisp/progmodes/etags.el /^(defun tag-word-match-p (tag)$/ | ||
| 4037 | Tapes tex-src/gzip.texi /^@node Tapes, Problems, Environment, Top$/ | ||
| 4352 | target_multibyte c-src/emacs/src/regex.h 407 | 4038 | target_multibyte c-src/emacs/src/regex.h 407 |
| 4353 | tclose tex-src/texinfo.tex /^\\def\\tclose##1{\\realbackslash tclose {##1}}$/ | 4039 | TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is$/ |
| 4040 | TAS_Cell/t ada-src/2ataspri.ads /^ type TAS_Cell is private;$/ | ||
| 4041 | Task_Control_Block/t ada-src/2ataspri.ads /^ type Task_Control_Block is record$/ | ||
| 4042 | Task_Storage_Size/t ada-src/2ataspri.ads /^ type Task_Storage_Size is new Interfaces.C.size/ | ||
| 4043 | Task_Type/b ada-src/etags-test-for.ada /^ task body Task_Type is$/ | ||
| 4044 | Task_Type/b ada-src/waroquiers.ada /^ task body Task_Type is$/ | ||
| 4045 | Task_Type/k ada-src/etags-test-for.ada /^ task type Task_Type is$/ | ||
| 4046 | Task_Type/k ada-src/waroquiers.ada /^ task type Task_Type is$/ | ||
| 4047 | TCB_Ptr/t ada-src/2ataspri.ads /^ type TCB_Ptr is access all Task_Control_Block;$/ | ||
| 4048 | TCLFLAGS make-src/Makefile /^TCLFLAGS=--lang=none --regex='\/proc[ \\t]+\\([^ \\t]+/ | ||
| 4354 | tclose tex-src/texinfo.tex /^\\def\\tclose##1{\\realbackslash tclose {##1}}%$/ | 4049 | tclose tex-src/texinfo.tex /^\\def\\tclose##1{\\realbackslash tclose {##1}}%$/ |
| 4050 | tclose tex-src/texinfo.tex /^\\def\\tclose##1{\\realbackslash tclose {##1}}$/ | ||
| 4355 | tclose tex-src/texinfo.tex /^\\def\\tclose#1{{\\rm \\tcloserm=\\fontdimen2\\font \\tt / | 4051 | tclose tex-src/texinfo.tex /^\\def\\tclose#1{{\\rm \\tcloserm=\\fontdimen2\\font \\tt / |
| 4356 | tclose tex-src/texinfo.tex /^\\let\\tclose=\\indexdummyfont$/ | 4052 | tclose tex-src/texinfo.tex /^\\let\\tclose=\\indexdummyfont$/ |
| 4357 | tcpdump html-src/software.html /^tcpdump$/ | 4053 | tcpdump html-src/software.html /^tcpdump$/ |
| 4054 | t cp-src/c.C 52 | ||
| 4055 | T cp-src/fail.C 14 | ||
| 4358 | teats cp-src/c.C 127 | 4056 | teats cp-src/c.C 127 |
| 4359 | tee ruby-src/test1.ru /^ attr_accessor :tee$/ | 4057 | tee ruby-src/test1.ru /^ attr_accessor :tee$/ |
| 4360 | tee= ruby-src/test1.ru /^ attr_accessor :tee$/ | 4058 | tee= ruby-src/test1.ru /^ attr_accessor :tee$/ |
| 4059 | temp1 tex-src/texinfo.tex /^\\xdef\\temp1{#2}%$/ | ||
| 4060 | temp1 tex-src/texinfo.tex /^\\xdef\\temp1{#2 #3}%$/ | ||
| 4061 | temporarily_switch_to_single_kboard c-src/emacs/src/keyboard.c /^temporarily_switch_to_single_kboard (struct frame / | ||
| 4361 | temp tex-src/texinfo.tex /^\\edef\\temp{%$/ | 4062 | temp tex-src/texinfo.tex /^\\edef\\temp{%$/ |
| 4362 | temp tex-src/texinfo.tex /^\\edef\\temp{{\\realbackslash chapentry $/ | 4063 | temp tex-src/texinfo.tex /^\\edef\\temp{{\\realbackslash chapentry $/ |
| 4363 | temp tex-src/texinfo.tex /^\\edef\\temp{{\\realbackslash chapentry {#1}{\\the\\cha/ | 4064 | temp tex-src/texinfo.tex /^\\edef\\temp{{\\realbackslash chapentry {#1}{\\the\\cha/ |
| @@ -4372,15 +4073,12 @@ temp tex-src/texinfo.tex /^\\edef\\temp{{\\realbackslash unnumbsubsubsecentry{#1 | |||
| 4372 | temp tex-src/texinfo.tex /^\\else \\let\\temp=\\ifclearfail \\fi$/ | 4073 | temp tex-src/texinfo.tex /^\\else \\let\\temp=\\ifclearfail \\fi$/ |
| 4373 | temp tex-src/texinfo.tex /^\\else \\let\\temp=\\relax \\fi$/ | 4074 | temp tex-src/texinfo.tex /^\\else \\let\\temp=\\relax \\fi$/ |
| 4374 | temp tex-src/texinfo.tex /^\\expandafter\\ifx\\csname IF#1\\endcsname\\relax \\let\\/ | 4075 | temp tex-src/texinfo.tex /^\\expandafter\\ifx\\csname IF#1\\endcsname\\relax \\let\\/ |
| 4375 | temp1 tex-src/texinfo.tex /^\\xdef\\temp1{#2 #3}%$/ | 4076 | tenbf tex-src/texinfo.tex /^\\def\\df{\\let\\tentt=\\deftt \\let\\tenbf = \\defbf \\bf}/ |
| 4376 | temp1 tex-src/texinfo.tex /^\\xdef\\temp1{#2}%$/ | ||
| 4377 | temporarily_switch_to_single_kboard c-src/emacs/src/keyboard.c /^temporarily_switch_to_single_kboard (struct frame / | ||
| 4378 | tenbf tex-src/texinfo.tex /^ \\let\\tenbf=\\chapbf \\let\\tentt=\\chaptt \\let\\small/ | 4077 | tenbf tex-src/texinfo.tex /^ \\let\\tenbf=\\chapbf \\let\\tentt=\\chaptt \\let\\small/ |
| 4379 | tenbf tex-src/texinfo.tex /^ \\let\\tenbf=\\indbf \\let\\tentt=\\indtt \\let\\smallca/ | 4078 | tenbf tex-src/texinfo.tex /^ \\let\\tenbf=\\indbf \\let\\tentt=\\indtt \\let\\smallca/ |
| 4380 | tenbf tex-src/texinfo.tex /^ \\let\\tenbf=\\secbf \\let\\tentt=\\sectt \\let\\smallca/ | 4079 | tenbf tex-src/texinfo.tex /^ \\let\\tenbf=\\secbf \\let\\tentt=\\sectt \\let\\smallca/ |
| 4381 | tenbf tex-src/texinfo.tex /^ \\let\\tenbf=\\ssecbf \\let\\tentt=\\ssectt \\let\\small/ | 4080 | tenbf tex-src/texinfo.tex /^ \\let\\tenbf=\\ssecbf \\let\\tentt=\\ssectt \\let\\small/ |
| 4382 | tenbf tex-src/texinfo.tex /^ \\let\\tenbf=\\textbf \\let\\tentt=\\texttt \\let\\small/ | 4081 | tenbf tex-src/texinfo.tex /^ \\let\\tenbf=\\textbf \\let\\tentt=\\texttt \\let\\small/ |
| 4383 | tenbf tex-src/texinfo.tex /^\\def\\df{\\let\\tentt=\\deftt \\let\\tenbf = \\defbf \\bf}/ | ||
| 4384 | tend c-src/etags.c 2432 | 4082 | tend c-src/etags.c 2432 |
| 4385 | teni tex-src/texinfo.tex /^ \\let\\tensf=\\chapsf \\let\\teni=\\chapi \\let\\tensy=\\/ | 4083 | teni tex-src/texinfo.tex /^ \\let\\tensf=\\chapsf \\let\\teni=\\chapi \\let\\tensy=\\/ |
| 4386 | teni tex-src/texinfo.tex /^ \\let\\tensf=\\indsf \\let\\teni=\\indi \\let\\tensy=\\in/ | 4084 | teni tex-src/texinfo.tex /^ \\let\\tensf=\\indsf \\let\\teni=\\indi \\let\\tensy=\\in/ |
| @@ -4412,55 +4110,121 @@ tensy tex-src/texinfo.tex /^ \\let\\tensf=\\indsf \\let\\teni=\\indi \\let\\ten | |||
| 4412 | tensy tex-src/texinfo.tex /^ \\let\\tensf=\\secsf \\let\\teni=\\seci \\let\\tensy=\\se/ | 4110 | tensy tex-src/texinfo.tex /^ \\let\\tensf=\\secsf \\let\\teni=\\seci \\let\\tensy=\\se/ |
| 4413 | tensy tex-src/texinfo.tex /^ \\let\\tensf=\\ssecsf \\let\\teni=\\sseci \\let\\tensy=\\/ | 4111 | tensy tex-src/texinfo.tex /^ \\let\\tensf=\\ssecsf \\let\\teni=\\sseci \\let\\tensy=\\/ |
| 4414 | tensy tex-src/texinfo.tex /^ \\let\\tensf=\\textsf \\let\\teni=\\texti \\let\\tensy=\\/ | 4112 | tensy tex-src/texinfo.tex /^ \\let\\tensf=\\textsf \\let\\teni=\\texti \\let\\tensy=\\/ |
| 4113 | tentt tex-src/texinfo.tex /^\\def\\df{\\let\\tentt=\\deftt \\let\\tenbf = \\defbf \\bf}/ | ||
| 4415 | tentt tex-src/texinfo.tex /^ \\let\\tenbf=\\chapbf \\let\\tentt=\\chaptt \\let\\small/ | 4114 | tentt tex-src/texinfo.tex /^ \\let\\tenbf=\\chapbf \\let\\tentt=\\chaptt \\let\\small/ |
| 4416 | tentt tex-src/texinfo.tex /^ \\let\\tenbf=\\indbf \\let\\tentt=\\indtt \\let\\smallca/ | 4115 | tentt tex-src/texinfo.tex /^ \\let\\tenbf=\\indbf \\let\\tentt=\\indtt \\let\\smallca/ |
| 4417 | tentt tex-src/texinfo.tex /^ \\let\\tenbf=\\secbf \\let\\tentt=\\sectt \\let\\smallca/ | 4116 | tentt tex-src/texinfo.tex /^ \\let\\tenbf=\\secbf \\let\\tentt=\\sectt \\let\\smallca/ |
| 4418 | tentt tex-src/texinfo.tex /^ \\let\\tenbf=\\ssecbf \\let\\tentt=\\ssectt \\let\\small/ | 4117 | tentt tex-src/texinfo.tex /^ \\let\\tenbf=\\ssecbf \\let\\tentt=\\ssectt \\let\\small/ |
| 4419 | tentt tex-src/texinfo.tex /^ \\let\\tenbf=\\textbf \\let\\tentt=\\texttt \\let\\small/ | 4118 | tentt tex-src/texinfo.tex /^ \\let\\tenbf=\\textbf \\let\\tentt=\\texttt \\let\\small/ |
| 4420 | tentt tex-src/texinfo.tex /^\\def\\df{\\let\\tentt=\\deftt \\let\\tenbf = \\defbf \\bf}/ | ||
| 4421 | tentt tex-src/texinfo.tex /^{\\let\\tentt=\\sectt \\let\\tt=\\sectt \\let\\sf=\\sectt$/ | 4119 | tentt tex-src/texinfo.tex /^{\\let\\tentt=\\sectt \\let\\tt=\\sectt \\let\\sf=\\sectt$/ |
| 4422 | term merc-src/accumulator.m /^:- import_module term.$/ | 4120 | TERMINALP c-src/emacs/src/lisp.h /^TERMINALP (Lisp_Object a)$/ |
| 4423 | terminate objc-src/Subprocess.m /^- terminate:sender$/ | ||
| 4424 | terminateInput objc-src/Subprocess.m /^- terminateInput$/ | 4121 | terminateInput objc-src/Subprocess.m /^- terminateInput$/ |
| 4425 | test c-src/emacs/src/lisp.h 1871 | 4122 | terminate objc-src/Subprocess.m /^- terminate:sender$/ |
| 4123 | term merc-src/accumulator.m /^:- import_module term.$/ | ||
| 4124 | test1 rs-src/test.rs /^fn test1() {$/ | ||
| 4125 | Test_Abort/p ada-src/2ataspri.adb /^ procedure Test_Abort is$/ | ||
| 4126 | Test_Abort/p ada-src/2ataspri.ads /^ procedure Test_Abort;$/ | ||
| 4127 | Test_And_Set/p ada-src/2ataspri.adb /^ procedure Test_And_Set (Cell : in out TAS_Cell;/ | ||
| 4128 | Test_And_Set/p ada-src/2ataspri.ads /^ procedure Test_And_Set (Cell : in out TAS_Cell;/ | ||
| 4129 | test-begin scm-src/test.scm /^(define-syntax test-begin$/ | ||
| 4426 | test cp-src/c.C 86 | 4130 | test cp-src/c.C 86 |
| 4131 | test_crlf1 test_crlf.c /^void test_crlf1()$/ | ||
| 4132 | test_crlf2 tset_crlf.c /^void test_crlf2()$/ | ||
| 4133 | test c-src/emacs/src/lisp.h 1871 | ||
| 4427 | test erl-src/gs_dialog.erl /^test() ->$/ | 4134 | test erl-src/gs_dialog.erl /^test() ->$/ |
| 4428 | test go-src/test1.go /^func test(p plus) {$/ | 4135 | test go-src/test1.go /^func test(p plus) {$/ |
| 4429 | test make-src/Makefile /^test:$/ | 4136 | test make-src/Makefile /^test:$/ |
| 4430 | test php-src/ptest.php /^test $/ | ||
| 4431 | test-begin scm-src/test.scm /^(define-syntax test-begin$/ | ||
| 4432 | test.me22b lua-src/test.lua /^ local function test.me22b (one)$/ | ||
| 4433 | test.me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ | 4137 | test.me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ |
| 4434 | test1 rs-src/test.rs /^fn test1() {$/ | 4138 | test.me22b lua-src/test.lua /^ local function test.me22b (one)$/ |
| 4435 | test_crlf1 test_crlf.c /^void test_crlf1()$/ | 4139 | TEST php-src/ptest.php 1 |
| 4436 | test_crlf2 tset_crlf.c /^void test_crlf2()$/ | 4140 | test php-src/ptest.php /^test $/ |
| 4437 | test_undefined c-src/emacs/src/keyboard.c /^test_undefined (Lisp_Object binding)$/ | 4141 | test_undefined c-src/emacs/src/keyboard.c /^test_undefined (Lisp_Object binding)$/ |
| 4438 | tex tex-src/texinfo.tex /^\\def\\tex{\\begingroup$/ | 4142 | TEX_clgrp c-src/etags.c 4922 |
| 4143 | TeX_commands c-src/etags.c /^TeX_commands (FILE *inf)$/ | ||
| 4144 | TEX_decode_env c-src/etags.c /^TEX_decode_env (const char *evarname, const char */ | ||
| 4145 | TEX_defenv c-src/etags.c 4912 | ||
| 4146 | TEX_esc c-src/etags.c 4920 | ||
| 4147 | TeX_help c-src/etags.c 674 | ||
| 4148 | Texinfo_help c-src/etags.c 688 | ||
| 4149 | Texinfo_nodes c-src/etags.c /^Texinfo_nodes (FILE *inf)$/ | ||
| 4150 | Texinfo_suffixes c-src/etags.c 686 | ||
| 4439 | texinfoversion tex-src/texinfo.tex /^\\def\\texinfoversion{2.73}$/ | 4151 | texinfoversion tex-src/texinfo.tex /^\\def\\texinfoversion{2.73}$/ |
| 4152 | TEX_LESC c-src/etags.c 4986 | ||
| 4153 | TEX_mode c-src/etags.c /^TEX_mode (FILE *inf)$/ | ||
| 4154 | TEX_opgrp c-src/etags.c 4921 | ||
| 4155 | TEX_SESC c-src/etags.c 4987 | ||
| 4156 | TEXSRC make-src/Makefile /^TEXSRC=testenv.tex gzip.texi texinfo.tex nonewline/ | ||
| 4157 | ~ tex-src/texinfo.tex /^\\catcode `\\^=7 \\catcode `\\_=8 \\catcode `\\~=13 \\let/ | ||
| 4158 | ' tex-src/texinfo.tex /^\\def\\'{{'}}$/ | ||
| 4159 | @ tex-src/texinfo.tex /^\\def\\@{@}%$/ | ||
| 4160 | ` tex-src/texinfo.tex /^\\def\\`{{`}}$/ | ||
| 4161 | * tex-src/texinfo.tex /^\\def\\*{\\hfil\\break\\hbox{}\\ignorespaces}$/ | ||
| 4162 | _ tex-src/texinfo.tex /^\\def_{\\ifusingtt\\normalunderscore\\_}$/ | ||
| 4163 | _ tex-src/texinfo.tex /^\\def\\_{\\lvvmode \\kern.06em \\vbox{\\hrule width.3em / | ||
| 4164 | _ tex-src/texinfo.tex /^\\def\\_{{\\realbackslash _}}%$/ | ||
| 4165 | : tex-src/texinfo.tex /^\\def\\:{\\spacefactor=1000 }$/ | ||
| 4166 | . tex-src/texinfo.tex /^\\def\\.{.\\spacefactor=3000 }$/ | ||
| 4167 | @ tex-src/texinfo.tex /^\\def\\@{{\\tt \\char '100}}$/ | ||
| 4168 | | tex-src/texinfo.tex /^\\def|{{\\tt \\char '174}}$/ | ||
| 4169 | ~ tex-src/texinfo.tex /^\\def~{{\\tt \\char '176}}$/ | ||
| 4170 | + tex-src/texinfo.tex /^\\def+{{\\tt \\char 43}}$/ | ||
| 4171 | > tex-src/texinfo.tex /^\\def>{{\\tt \\gtr}}$/ | ||
| 4172 | ^ tex-src/texinfo.tex /^\\def^{{\\tt \\hat}}$/ | ||
| 4173 | < tex-src/texinfo.tex /^\\def<{{\\tt \\less}}$/ | ||
| 4174 | " tex-src/texinfo.tex /^\\def\\turnoffactive{\\let"=\\normaldoublequote$/ | ||
| 4175 | ( tex-src/texinfo.tex /^\\gdef\\amprm#1 {{\\rm\\}\\let(=\\oprm \\let)=\\clrm\\ }/ | ||
| 4176 | ) tex-src/texinfo.tex /^\\gdef\\amprm#1 {{\\rm\\}\\let(=\\oprm \\let)=\\clrm\\ }/ | ||
| 4177 | ( tex-src/texinfo.tex /^\\gdef\\boldbrax{\\let(=\\opnr\\let)=\\clnr\\let[=\\lbrb\\l/ | ||
| 4178 | ) tex-src/texinfo.tex /^\\gdef\\boldbrax{\\let(=\\opnr\\let)=\\clnr\\let[=\\lbrb\\l/ | ||
| 4179 | [ tex-src/texinfo.tex /^\\gdef\\boldbrax{\\let(=\\opnr\\let)=\\clnr\\let[=\\lbrb\\l/ | ||
| 4180 | ] tex-src/texinfo.tex /^\\gdef\\boldbrax{\\let(=\\opnr\\let)=\\clnr\\let[=\\lbrb\\l/ | ||
| 4181 | & tex-src/texinfo.tex /^\\gdef\\functionparens{\\boldbrax\\let&=\\amprm\\parenco/ | ||
| 4182 | & tex-src/texinfo.tex /^\\gdef\\normalparens{\\boldbrax\\let&=\\ampnr}$/ | ||
| 4183 | ( tex-src/texinfo.tex /^\\gdef\\oprm#1 {{\\rm\\char`\\(}#1 \\bf \\let(=\\opnested / | ||
| 4184 | = tex-src/texinfo.tex /^\\global\\def={{\\tt \\char 61}}}$/ | ||
| 4185 | ( tex-src/texinfo.tex /^\\ifnum \\parencount=1 {\\rm \\char `\\)}\\sl \\let(=\\opr/ | ||
| 4186 | " tex-src/texinfo.tex /^\\let"=\\activedoublequote$/ | ||
| 4187 | { tex-src/texinfo.tex /^\\let\\{=\\mylbrace$/ | ||
| 4188 | } tex-src/texinfo.tex /^\\let\\}=\\myrbrace$/ | ||
| 4189 | ^ tex-src/texinfo.tex /^\\let^=\\normalcaret$/ | ||
| 4190 | > tex-src/texinfo.tex /^\\let>=\\normalgreater$/ | ||
| 4191 | < tex-src/texinfo.tex /^\\let<=\\normalless$/ | ||
| 4192 | + tex-src/texinfo.tex /^\\let+=\\normalplus}$/ | ||
| 4193 | ~ tex-src/texinfo.tex /^\\let~=\\normaltilde$/ | ||
| 4194 | _ tex-src/texinfo.tex /^\\let_=\\normalunderscore$/ | ||
| 4195 | | tex-src/texinfo.tex /^\\let|=\\normalverticalbar$/ | ||
| 4196 | . tex-src/texinfo.tex /^\\let\\.=\\ptexdot$/ | ||
| 4197 | { tex-src/texinfo.tex /^\\let\\{=\\ptexlbrace$/ | ||
| 4198 | } tex-src/texinfo.tex /^\\let\\}=\\ptexrbrace$/ | ||
| 4199 | * tex-src/texinfo.tex /^\\let\\*=\\ptexstar$/ | ||
| 4200 | TeX_suffixes c-src/etags.c 672 | ||
| 4201 | tex tex-src/texinfo.tex /^\\def\\tex{\\begingroup$/ | ||
| 4202 | TeX tex-src/texinfo.tex /^\\def\\TeX{\\realbackslash TeX}%$/ | ||
| 4203 | TeX tex-src/texinfo.tex /^\\def\\TeX{\\realbackslash TeX}$/ | ||
| 4204 | TeX tex-src/texinfo.tex /^\\let\\TeX=\\indexdummytex$/ | ||
| 4440 | textfonts tex-src/texinfo.tex /^\\def\\textfonts{%$/ | 4205 | textfonts tex-src/texinfo.tex /^\\def\\textfonts{%$/ |
| 4206 | TEX_toktab c-src/etags.c 4908 | ||
| 4441 | texttreelist prol-src/natded.prolog /^texttreelist([]).$/ | 4207 | texttreelist prol-src/natded.prolog /^texttreelist([]).$/ |
| 4208 | /TF ps-src/rfc1245.ps /^\/TF { $/ | ||
| 4442 | thearg tex-src/texinfo.tex /^ \\def\\thearg{#1}%$/ | 4209 | thearg tex-src/texinfo.tex /^ \\def\\thearg{#1}%$/ |
| 4443 | thearg tex-src/texinfo.tex /^ \\ifx\\thearg\\empty \\def\\thearg{1}\\fi$/ | 4210 | thearg tex-src/texinfo.tex /^ \\ifx\\thearg\\empty \\def\\thearg{1}\\fi$/ |
| 4444 | there-is-a-=-in-the-middle! scm-src/test.scm /^(define (there-is-a-=-in-the-middle!) #t)$/ | 4211 | there-is-a-=-in-the-middle! scm-src/test.scm /^(define (there-is-a-=-in-the-middle!) #t)$/ |
| 4445 | this c-src/a/b/b.c 1 | 4212 | thischaptername tex-src/texinfo.tex /^\\def\\thischaptername{No Chapter Title}$/ |
| 4446 | this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/ | 4213 | thischaptername tex-src/texinfo.tex /^\\gdef\\thischaptername{#1}%$/ |
| 4447 | this-command-keys-vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/ | ||
| 4448 | this-single-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/ | ||
| 4449 | this-single-command-raw-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-raw-keys", Fthis_singl/ | ||
| 4450 | this_command_key_count c-src/emacs/src/keyboard.c 108 | ||
| 4451 | this_command_key_count_reset c-src/emacs/src/keyboard.c 112 | ||
| 4452 | this_command_keys c-src/emacs/src/keyboard.c 107 | ||
| 4453 | this_file_toc perl-src/htlmify-cystic 29 | ||
| 4454 | this_single_command_key_start c-src/emacs/src/keyboard.c 125 | ||
| 4455 | thischapter tex-src/texinfo.tex /^ \\unnumbchapmacro{#1}\\def\\thischapter{}%$/ | ||
| 4456 | thischapter tex-src/texinfo.tex /^\\def\\thischapter{} \\def\\thissection{}$/ | 4214 | thischapter tex-src/texinfo.tex /^\\def\\thischapter{} \\def\\thissection{}$/ |
| 4457 | thischapter tex-src/texinfo.tex /^\\gdef\\thischapter{#1}\\gdef\\thissection{#1}%$/ | 4215 | thischapter tex-src/texinfo.tex /^\\gdef\\thischapter{#1}\\gdef\\thissection{#1}%$/ |
| 4216 | thischapter tex-src/texinfo.tex /^ \\unnumbchapmacro{#1}\\def\\thischapter{}%$/ | ||
| 4458 | thischapter tex-src/texinfo.tex /^\\xdef\\thischapter{Appendix \\appendixletter: \\noexp/ | 4217 | thischapter tex-src/texinfo.tex /^\\xdef\\thischapter{Appendix \\appendixletter: \\noexp/ |
| 4459 | thischapter tex-src/texinfo.tex /^\\xdef\\thischapter{Chapter \\the\\chapno: \\noexpand\\t/ | 4218 | thischapter tex-src/texinfo.tex /^\\xdef\\thischapter{Chapter \\the\\chapno: \\noexpand\\t/ |
| 4460 | thischaptername tex-src/texinfo.tex /^\\def\\thischaptername{No Chapter Title}$/ | 4219 | this_command_key_count c-src/emacs/src/keyboard.c 108 |
| 4461 | thischaptername tex-src/texinfo.tex /^\\gdef\\thischaptername{#1}%$/ | 4220 | this_command_key_count_reset c-src/emacs/src/keyboard.c 112 |
| 4221 | this_command_keys c-src/emacs/src/keyboard.c 107 | ||
| 4222 | this-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys", Fthis_command_keys, St/ | ||
| 4223 | this-command-keys-vector c-src/emacs/src/keyboard.c /^DEFUN ("this-command-keys-vector", Fthis_command_k/ | ||
| 4224 | this c-src/a/b/b.c 1 | ||
| 4462 | thisfile tex-src/texinfo.tex /^\\def\\includezzz #1{{\\def\\thisfile{#1}\\input #1$/ | 4225 | thisfile tex-src/texinfo.tex /^\\def\\includezzz #1{{\\def\\thisfile{#1}\\input #1$/ |
| 4463 | thisfile tex-src/texinfo.tex /^\\def\\thisfile{}$/ | 4226 | thisfile tex-src/texinfo.tex /^\\def\\thisfile{}$/ |
| 4227 | this_file_toc perl-src/htlmify-cystic 29 | ||
| 4464 | thisfootno tex-src/texinfo.tex /^\\edef\\thisfootno{$^{\\the\\footnoteno}$}%$/ | 4228 | thisfootno tex-src/texinfo.tex /^\\edef\\thisfootno{$^{\\the\\footnoteno}$}%$/ |
| 4465 | thispage tex-src/texinfo.tex /^\\let\\thispage=\\folio$/ | 4229 | thispage tex-src/texinfo.tex /^\\let\\thispage=\\folio$/ |
| 4466 | thissection tex-src/texinfo.tex /^\\def\\thischapter{} \\def\\thissection{}$/ | 4230 | thissection tex-src/texinfo.tex /^\\def\\thischapter{} \\def\\thissection{}$/ |
| @@ -4471,26 +4235,30 @@ thissection tex-src/texinfo.tex /^\\gdef\\thissection{#1}\\secheading {#1}{\\app | |||
| 4471 | thissection tex-src/texinfo.tex /^\\gdef\\thissection{#1}\\secheading {#1}{\\the\\chapno}/ | 4235 | thissection tex-src/texinfo.tex /^\\gdef\\thissection{#1}\\secheading {#1}{\\the\\chapno}/ |
| 4472 | thissection tex-src/texinfo.tex /^\\gdef\\thissection{#1}\\subsubsecno=0 \\global\\advanc/ | 4236 | thissection tex-src/texinfo.tex /^\\gdef\\thissection{#1}\\subsubsecno=0 \\global\\advanc/ |
| 4473 | thissection tex-src/texinfo.tex /^\\plainsecheading {#1}\\gdef\\thissection{#1}%$/ | 4237 | thissection tex-src/texinfo.tex /^\\plainsecheading {#1}\\gdef\\thissection{#1}%$/ |
| 4238 | this-single-command-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-keys", Fthis_single_co/ | ||
| 4239 | this_single_command_key_start c-src/emacs/src/keyboard.c 125 | ||
| 4240 | this-single-command-raw-keys c-src/emacs/src/keyboard.c /^DEFUN ("this-single-command-raw-keys", Fthis_singl/ | ||
| 4474 | thistitle tex-src/texinfo.tex /^\\def\\settitlezzz #1{\\gdef\\thistitle{#1}}$/ | 4241 | thistitle tex-src/texinfo.tex /^\\def\\settitlezzz #1{\\gdef\\thistitle{#1}}$/ |
| 4475 | thistitle tex-src/texinfo.tex /^\\def\\thistitle{No Title}$/ | 4242 | thistitle tex-src/texinfo.tex /^\\def\\thistitle{No Title}$/ |
| 4476 | three tex-src/texinfo.tex /^\\def\\kbdfoo#1#2#3\\par{\\def\\one{#1}\\def\\three{#3}\\d/ | 4243 | three tex-src/texinfo.tex /^\\def\\kbdfoo#1#2#3\\par{\\def\\one{#1}\\def\\three{#3}\\d/ |
| 4477 | threex tex-src/texinfo.tex /^\\def\\kbdfoo#1#2#3\\par{\\def\\one{#1}\\def\\three{#3}\\d/ | 4244 | threex tex-src/texinfo.tex /^\\def\\kbdfoo#1#2#3\\par{\\def\\one{#1}\\def\\three{#3}\\d/ |
| 4478 | tie tex-src/texinfo.tex /^\\def\\tie{\\penalty 10000\\ } % Save plain tex de/ | 4245 | tie tex-src/texinfo.tex /^\\def\\tie{\\penalty 10000\\ } % Save plain tex de/ |
| 4479 | tignore c-src/etags.c 2433 | 4246 | tignore c-src/etags.c 2433 |
| 4480 | timer_check c-src/emacs/src/keyboard.c /^timer_check (void)$/ | ||
| 4481 | timer_check_2 c-src/emacs/src/keyboard.c /^timer_check_2 (Lisp_Object timers, Lisp_Object idl/ | 4247 | timer_check_2 c-src/emacs/src/keyboard.c /^timer_check_2 (Lisp_Object timers, Lisp_Object idl/ |
| 4248 | timer_check c-src/emacs/src/keyboard.c /^timer_check (void)$/ | ||
| 4482 | timer_idleness_start_time c-src/emacs/src/keyboard.c 335 | 4249 | timer_idleness_start_time c-src/emacs/src/keyboard.c 335 |
| 4483 | timer_last_idleness_start_time c-src/emacs/src/keyboard.c 340 | 4250 | timer_last_idleness_start_time c-src/emacs/src/keyboard.c 340 |
| 4484 | timer_resume_idle c-src/emacs/src/keyboard.c /^timer_resume_idle (void)$/ | 4251 | timer_resume_idle c-src/emacs/src/keyboard.c /^timer_resume_idle (void)$/ |
| 4252 | timers_run c-src/emacs/src/keyboard.c 320 | ||
| 4485 | timer_start_idle c-src/emacs/src/keyboard.c /^timer_start_idle (void)$/ | 4253 | timer_start_idle c-src/emacs/src/keyboard.c /^timer_start_idle (void)$/ |
| 4486 | timer_stop_idle c-src/emacs/src/keyboard.c /^timer_stop_idle (void)$/ | 4254 | timer_stop_idle c-src/emacs/src/keyboard.c /^timer_stop_idle (void)$/ |
| 4487 | timers_run c-src/emacs/src/keyboard.c 320 | 4255 | Time_to_position c-src/emacs/src/keyboard.c /^Time_to_position (Time encoded_pos)$/ |
| 4488 | tinbody c-src/etags.c 2431 | 4256 | tinbody c-src/etags.c 2431 |
| 4489 | tindex tex-src/texinfo.tex /^\\def\\tindex {\\tpindex}$/ | 4257 | tindex tex-src/texinfo.tex /^\\def\\tindex {\\tpindex}$/ |
| 4490 | title tex-src/texinfo.tex /^ \\def\\title{\\parsearg\\titlezzz}%$/ | ||
| 4491 | titlefont tex-src/texinfo.tex /^\\def\\titlefont#1{{\\titlerm #1}}$/ | 4258 | titlefont tex-src/texinfo.tex /^\\def\\titlefont#1{{\\titlerm #1}}$/ |
| 4492 | titlepage tex-src/texinfo.tex /^\\def\\titlepage{\\begingroup \\parindent=0pt \\textfon/ | 4259 | titlepage tex-src/texinfo.tex /^\\def\\titlepage{\\begingroup \\parindent=0pt \\textfon/ |
| 4493 | titlepage tex-src/texinfo.tex /^\\let\\titlepage=\\relax$/ | 4260 | titlepage tex-src/texinfo.tex /^\\let\\titlepage=\\relax$/ |
| 4261 | title tex-src/texinfo.tex /^ \\def\\title{\\parsearg\\titlezzz}%$/ | ||
| 4494 | titlezzz tex-src/texinfo.tex /^ \\def\\titlezzz##1{\\leftline{\\titlefont{##1}}$/ | 4262 | titlezzz tex-src/texinfo.tex /^ \\def\\titlezzz##1{\\leftline{\\titlefont{##1}}$/ |
| 4495 | tkeyseen c-src/etags.c 2429 | 4263 | tkeyseen c-src/etags.c 2429 |
| 4496 | tnone c-src/etags.c 2428 | 4264 | tnone c-src/etags.c 2428 |
| @@ -4499,45 +4267,65 @@ today tex-src/texinfo.tex /^\\def\\today{\\number\\day\\space$/ | |||
| 4499 | toggleDescription objc-src/PackInsp.m /^-toggleDescription$/ | 4267 | toggleDescription objc-src/PackInsp.m /^-toggleDescription$/ |
| 4500 | tok c-src/etags.c 2491 | 4268 | tok c-src/etags.c 2491 |
| 4501 | token c-src/etags.c 2508 | 4269 | token c-src/etags.c 2508 |
| 4502 | token y-src/cccp.y 437 | ||
| 4503 | token y-src/cccp.y 439 | ||
| 4504 | tokenize prol-src/natded.prolog /^tokenize([C1,C2,C3|Cs],Xs-Ys,TsResult):- % spe/ | ||
| 4505 | tokenizeatom prol-src/natded.prolog /^tokenizeatom(Atom,Ws):-$/ | 4270 | tokenizeatom prol-src/natded.prolog /^tokenizeatom(Atom,Ws):-$/ |
| 4271 | tokenize prol-src/natded.prolog /^tokenize([C1,C2,C3|Cs],Xs-Ys,TsResult):- % spe/ | ||
| 4506 | tokentab2 y-src/cccp.y 442 | 4272 | tokentab2 y-src/cccp.y 442 |
| 4273 | token y-src/cccp.y 437 | ||
| 4274 | token y-src/cccp.y 439 | ||
| 4275 | To_Lower pas-src/common.pas /^function To_Lower;(*(ch:char) : char;*)$/ | ||
| 4507 | tool_bar_item_properties c-src/emacs/src/keyboard.c 7970 | 4276 | tool_bar_item_properties c-src/emacs/src/keyboard.c 7970 |
| 4508 | tool_bar_items c-src/emacs/src/keyboard.c /^tool_bar_items (Lisp_Object reuse, int *nitems)$/ | 4277 | tool_bar_items c-src/emacs/src/keyboard.c /^tool_bar_items (Lisp_Object reuse, int *nitems)$/ |
| 4509 | tool_bar_items_vector c-src/emacs/src/keyboard.c 7965 | 4278 | tool_bar_items_vector c-src/emacs/src/keyboard.c 7965 |
| 4510 | toolkit_menubar_in_use c-src/emacs/src/keyboard.c /^toolkit_menubar_in_use (struct frame *f)$/ | 4279 | toolkit_menubar_in_use c-src/emacs/src/keyboard.c /^toolkit_menubar_in_use (struct frame *f)$/ |
| 4511 | top tex-src/texinfo.tex /^\\let\\top=\\relax$/ | ||
| 4512 | top tex-src/texinfo.tex /^\\outer\\def\\top{\\parsearg\\unnumberedzzz}$/ | ||
| 4513 | top-level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, / | ||
| 4514 | top_level merc-src/accumulator.m /^:- type top_level$/ | ||
| 4515 | top_level_1 c-src/emacs/src/keyboard.c /^top_level_1 (Lisp_Object ignore)$/ | 4280 | top_level_1 c-src/emacs/src/keyboard.c /^top_level_1 (Lisp_Object ignore)$/ |
| 4516 | top_level_2 c-src/emacs/src/keyboard.c /^top_level_2 (void)$/ | 4281 | top_level_2 c-src/emacs/src/keyboard.c /^top_level_2 (void)$/ |
| 4282 | top-level c-src/emacs/src/keyboard.c /^DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, / | ||
| 4283 | top_level merc-src/accumulator.m /^:- type top_level$/ | ||
| 4284 | Top tex-src/gzip.texi /^@node Top, , , (dir)$/ | ||
| 4285 | top tex-src/texinfo.tex /^\\let\\top=\\relax$/ | ||
| 4286 | top tex-src/texinfo.tex /^\\outer\\def\\top{\\parsearg\\unnumberedzzz}$/ | ||
| 4287 | To_Start_Addr/f ada-src/2ataspri.adb /^ function To_Start_Addr is new$/ | ||
| 4517 | total_keys c-src/emacs/src/keyboard.c 97 | 4288 | total_keys c-src/emacs/src/keyboard.c 97 |
| 4289 | TOTAL_KEYWORDS c-src/etags.c 2325 | ||
| 4290 | totally_unblock_input c-src/emacs/src/keyboard.c /^totally_unblock_input (void)$/ | ||
| 4518 | total_size_of_entries c-src/etags.c /^total_size_of_entries (register node *np)$/ | 4291 | total_size_of_entries c-src/etags.c /^total_size_of_entries (register node *np)$/ |
| 4519 | total_surrounding cp-src/conway.cpp /^int site::total_surrounding(void)$/ | 4292 | total_surrounding cp-src/conway.cpp /^int site::total_surrounding(void)$/ |
| 4520 | totally_unblock_input c-src/emacs/src/keyboard.c /^totally_unblock_input (void)$/ | 4293 | To_TCB_Ptr/f ada-src/2ataspri.adb /^ function To_TCB_Ptr is new$/ |
| 4294 | To_Upper pas-src/common.pas /^function To_Upper;(*(ch:char) : char;*)$/ | ||
| 4295 | To_void_ptr/f ada-src/2ataspri.adb /^ function To_void_ptr is new$/ | ||
| 4521 | tpargs tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\deftpargs{#3}\\endgrou/ | 4296 | tpargs tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\deftpargs{#3}\\endgrou/ |
| 4522 | tpcmd c-src/h.h 15 | 4297 | tpcmd c-src/h.h 15 |
| 4523 | tpcmd c-src/h.h 8 | 4298 | tpcmd c-src/h.h 8 |
| 4524 | tpheader tex-src/texinfo.tex /^\\def\\deftp{\\defvrparsebody\\Edeftp\\deftpx\\deftphead/ | 4299 | tpheader tex-src/texinfo.tex /^\\def\\deftp{\\defvrparsebody\\Edeftp\\deftpx\\deftphead/ |
| 4300 | /T ps-src/rfc1245.ps /^\/T { $/ | ||
| 4525 | tpx\deftpheader tex-src/texinfo.tex /^\\def\\deftp{\\defvrparsebody\\Edeftp\\deftpx\\deftphead/ | 4301 | tpx\deftpheader tex-src/texinfo.tex /^\\def\\deftp{\\defvrparsebody\\Edeftp\\deftpx\\deftphead/ |
| 4526 | track-mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/ | ||
| 4527 | tracking_off c-src/emacs/src/keyboard.c /^tracking_off (Lisp_Object old_value)$/ | 4302 | tracking_off c-src/emacs/src/keyboard.c /^tracking_off (Lisp_Object old_value)$/ |
| 4303 | track-mouse c-src/emacs/src/keyboard.c /^DEFUN ("internal--track-mouse", Ftrack_mouse, Stra/ | ||
| 4528 | traffic_light cp-src/conway.cpp /^void traffic_light(int x, int y)$/ | 4304 | traffic_light cp-src/conway.cpp /^void traffic_light(int x, int y)$/ |
| 4529 | translate c-src/emacs/src/regex.h 361 | 4305 | translate c-src/emacs/src/regex.h 361 |
| 4530 | treats cp-src/c.C 131 | 4306 | treats cp-src/c.C 131 |
| 4307 | Truc.Bidule/b ada-src/etags-test-for.ada /^package body Truc.Bidule is$/ | ||
| 4308 | Truc.Bidule/b ada-src/waroquiers.ada /^package body Truc.Bidule is$/ | ||
| 4309 | Truc.Bidule/s ada-src/etags-test-for.ada /^package Truc.Bidule is$/ | ||
| 4310 | Truc.Bidule/s ada-src/waroquiers.ada /^package Truc.Bidule is$/ | ||
| 4311 | Truc/s ada-src/etags-test-for.ada /^package Truc is$/ | ||
| 4312 | Truc/s ada-src/waroquiers.ada /^package Truc is$/ | ||
| 4313 | TSL/s ada-src/2ataspri.adb /^ package TSL renames System.Tasking_Soft_Links;$/ | ||
| 4314 | t tex-src/texinfo.tex /^\\def\\t##1{\\realbackslash r {##1}}%$/ | ||
| 4315 | t tex-src/texinfo.tex /^\\def\\t#1{{\\tt \\exhyphenpenalty=10000\\rawbackslash / | ||
| 4316 | t tex-src/texinfo.tex /^\\let\\b=\\ptexb \\let\\c=\\ptexc \\let\\i=\\ptexi \\let\\t=\\/ | ||
| 4317 | t tex-src/texinfo.tex /^\\let\\t=\\indexdummyfont$/ | ||
| 4318 | ttfont tex-src/texinfo.tex /^\\let\\ttfont = \\t$/ | ||
| 4531 | tt prol-src/natded.prolog /^tt:-$/ | 4319 | tt prol-src/natded.prolog /^tt:-$/ |
| 4532 | tt tex-src/texinfo.tex /^\\def\\df{\\let\\tentt=\\deftt \\let\\tenbf = \\defbf \\bf}/ | 4320 | tt tex-src/texinfo.tex /^\\def\\df{\\let\\tentt=\\deftt \\let\\tenbf = \\defbf \\bf}/ |
| 4533 | tt tex-src/texinfo.tex /^\\def\\tt{\\realbackslash tt}$/ | ||
| 4534 | tt tex-src/texinfo.tex /^\\def\\tt{\\realbackslash tt}%$/ | 4321 | tt tex-src/texinfo.tex /^\\def\\tt{\\realbackslash tt}%$/ |
| 4322 | tt tex-src/texinfo.tex /^\\def\\tt{\\realbackslash tt}$/ | ||
| 4535 | tt tex-src/texinfo.tex /^\\font\\deftt=cmtt10 scaled \\magstep1$/ | 4323 | tt tex-src/texinfo.tex /^\\font\\deftt=cmtt10 scaled \\magstep1$/ |
| 4536 | tt tex-src/texinfo.tex /^{\\let\\tentt=\\sectt \\let\\tt=\\sectt \\let\\sf=\\sectt$/ | 4324 | tt tex-src/texinfo.tex /^{\\let\\tentt=\\sectt \\let\\tt=\\sectt \\let\\sf=\\sectt$/ |
| 4537 | ttfont tex-src/texinfo.tex /^\\let\\ttfont = \\t$/ | ||
| 4538 | tty_read_avail_input c-src/emacs/src/keyboard.c /^tty_read_avail_input (struct terminal *terminal,$/ | ||
| 4539 | ttypeseen c-src/etags.c 2430 | 4325 | ttypeseen c-src/etags.c 2430 |
| 4326 | tty_read_avail_input c-src/emacs/src/keyboard.c /^tty_read_avail_input (struct terminal *terminal,$/ | ||
| 4540 | turnoffactive tex-src/texinfo.tex /^\\def\\turnoffactive{\\let"=\\normaldoublequote$/ | 4327 | turnoffactive tex-src/texinfo.tex /^\\def\\turnoffactive{\\let"=\\normaldoublequote$/ |
| 4328 | /two ps-src/rfc1245.ps /^\/two \/three \/four \/five \/six \/seven \/eight \/nine \// | ||
| 4541 | typdef c-src/etags.c 2434 | 4329 | typdef c-src/etags.c 2434 |
| 4542 | type c-src/emacs/src/gmalloc.c 145 | 4330 | type c-src/emacs/src/gmalloc.c 145 |
| 4543 | type c-src/emacs/src/lisp.h 1973 | 4331 | type c-src/emacs/src/lisp.h 1973 |
| @@ -4563,39 +4351,54 @@ typefunx\deftypefunheader tex-src/texinfo.tex /^\\def\\deftypefun{\\defparsebody | |||
| 4563 | typemargin tex-src/texinfo.tex /^\\newskip\\deftypemargin \\deftypemargin=12pt$/ | 4351 | typemargin tex-src/texinfo.tex /^\\newskip\\deftypemargin \\deftypemargin=12pt$/ |
| 4564 | typemargin tex-src/texinfo.tex /^\\rlap{\\rightline{{\\rm #2}\\hskip \\deftypemargin}}}%/ | 4352 | typemargin tex-src/texinfo.tex /^\\rlap{\\rightline{{\\rm #2}\\hskip \\deftypemargin}}}%/ |
| 4565 | typemargin tex-src/texinfo.tex /^\\setbox0=\\hbox{\\hskip \\deflastargmargin{\\rm #2}\\hs/ | 4353 | typemargin tex-src/texinfo.tex /^\\setbox0=\\hbox{\\hskip \\deflastargmargin{\\rm #2}\\hs/ |
| 4354 | TYPE_RANGED_INTEGERP c-src/emacs/src/lisp.h /^#define TYPE_RANGED_INTEGERP(type, x) \\$/ | ||
| 4355 | Type_Specific_Data/t ada-src/etags-test-for.ada /^ type Type_Specific_Data is record$/ | ||
| 4356 | TYPESTOSTAT objc-src/PackInsp.h 37 | ||
| 4566 | typevarheader tex-src/texinfo.tex /^\\def\\deftypevar{\\defvarparsebody\\Edeftypevar\\defty/ | 4357 | typevarheader tex-src/texinfo.tex /^\\def\\deftypevar{\\defvarparsebody\\Edeftypevar\\defty/ |
| 4567 | typevarx\deftypevarheader tex-src/texinfo.tex /^\\def\\deftypevar{\\defvarparsebody\\Edeftypevar\\defty/ | 4358 | typevarx\deftypevarheader tex-src/texinfo.tex /^\\def\\deftypevar{\\defvarparsebody\\Edeftypevar\\defty/ |
| 4568 | typevrheader tex-src/texinfo.tex /^\\def\\deftypevr{\\defvrparsebody\\Edeftypevr\\deftypev/ | 4359 | typevrheader tex-src/texinfo.tex /^\\def\\deftypevr{\\defvrparsebody\\Edeftypevr\\deftypev/ |
| 4569 | typevrx\deftypevrheader tex-src/texinfo.tex /^\\def\\deftypevr{\\defvrparsebody\\Edeftypevr\\deftypev/ | 4360 | typevrx\deftypevrheader tex-src/texinfo.tex /^\\def\\deftypevr{\\defvrparsebody\\Edeftypevr\\deftypev/ |
| 4570 | u c-src/emacs/src/lisp.h 2397 | 4361 | /Uacute ps-src/rfc1245.ps /^\/Uacute \/Ucircumflex \/Ugrave \/dotlessi \/circumflex/ |
| 4571 | u_any c-src/emacs/src/lisp.h 2214 | 4362 | u_any c-src/emacs/src/lisp.h 2214 |
| 4572 | u_boolfwd c-src/emacs/src/lisp.h 2371 | 4363 | u_boolfwd c-src/emacs/src/lisp.h 2371 |
| 4573 | u_buffer_objfwd c-src/emacs/src/lisp.h 2373 | 4364 | u_buffer_objfwd c-src/emacs/src/lisp.h 2373 |
| 4365 | UCHAR c-src/emacs/src/lisp.h 2424 | ||
| 4366 | _UCHAR_T c-src/emacs/src/lisp.h 2423 | ||
| 4367 | U_CHAR y-src/cccp.y 38 | ||
| 4368 | u c-src/emacs/src/lisp.h 2397 | ||
| 4369 | /udieresis ps-src/rfc1245.ps /^\/udieresis \/dagger \/.notdef \/cent \/sterling \/secti/ | ||
| 4574 | u_finalizer c-src/emacs/src/lisp.h 2219 | 4370 | u_finalizer c-src/emacs/src/lisp.h 2219 |
| 4575 | u_free c-src/emacs/src/lisp.h 2215 | 4371 | u_free c-src/emacs/src/lisp.h 2215 |
| 4576 | u_intfwd c-src/emacs/src/lisp.h 2370 | 4372 | u_intfwd c-src/emacs/src/lisp.h 2370 |
| 4577 | u_kboard_objfwd c-src/emacs/src/lisp.h 2374 | 4373 | u_kboard_objfwd c-src/emacs/src/lisp.h 2374 |
| 4578 | u_marker c-src/emacs/src/lisp.h 2216 | 4374 | u_marker c-src/emacs/src/lisp.h 2216 |
| 4579 | u_objfwd c-src/emacs/src/lisp.h 2372 | ||
| 4580 | u_overlay c-src/emacs/src/lisp.h 2217 | ||
| 4581 | u_save_value c-src/emacs/src/lisp.h 2218 | ||
| 4582 | unargs tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defunargs{#3}\\endgrou/ | 4375 | unargs tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defunargs{#3}\\endgrou/ |
| 4583 | unargs tex-src/texinfo.tex /^\\defunargs {#2}\\endgroup %$/ | 4376 | unargs tex-src/texinfo.tex /^\\defunargs {#2}\\endgroup %$/ |
| 4584 | unargs tex-src/texinfo.tex /^\\defunargs {#3}\\endgroup %$/ | 4377 | unargs tex-src/texinfo.tex /^\\defunargs {#3}\\endgroup %$/ |
| 4378 | UNARY y-src/cccp.c 18 | ||
| 4585 | unblock_input c-src/emacs/src/keyboard.c /^unblock_input (void)$/ | 4379 | unblock_input c-src/emacs/src/keyboard.c /^unblock_input (void)$/ |
| 4586 | unblock_input_to c-src/emacs/src/keyboard.c /^unblock_input_to (int level)$/ | 4380 | unblock_input_to c-src/emacs/src/keyboard.c /^unblock_input_to (int level)$/ |
| 4587 | unchar c-src/h.h 99 | 4381 | unchar c-src/h.h 99 |
| 4382 | UNDEFINED c-src/h.h 118 | ||
| 4383 | UNEVALLED c-src/emacs/src/lisp.h 2834 | ||
| 4588 | unexpand-abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/ | 4384 | unexpand-abbrev c-src/abbrev.c /^DEFUN ("unexpand-abbrev", Funexpand_abbrev, Sunexp/ |
| 4385 | UNGCPRO c-src/emacs/src/lisp.h 3202 | ||
| 4386 | UNGCPRO c-src/emacs/src/lisp.h 3257 | ||
| 4387 | UNGCPRO c-src/emacs/src/lisp.h 3353 | ||
| 4589 | unheader tex-src/texinfo.tex /^\\def\\defun{\\defparsebody\\Edefun\\defunx\\defunheader/ | 4388 | unheader tex-src/texinfo.tex /^\\def\\defun{\\defparsebody\\Edefun\\defunx\\defunheader/ |
| 4590 | univ merc-src/accumulator.m /^:- import_module univ.$/ | 4389 | univ merc-src/accumulator.m /^:- import_module univ.$/ |
| 4390 | UNLOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define UNLOCK_ALIGNED_BLOCKS() \\$/ | ||
| 4391 | UNLOCK_ALIGNED_BLOCKS c-src/emacs/src/gmalloc.c /^#define UNLOCK_ALIGNED_BLOCKS()$/ | ||
| 4392 | UNLOCK c-src/emacs/src/gmalloc.c /^#define UNLOCK() \\$/ | ||
| 4393 | UNLOCK c-src/emacs/src/gmalloc.c /^#define UNLOCK()$/ | ||
| 4394 | Unlock/p ada-src/2ataspri.adb /^ procedure Unlock (L : in out Lock) is$/ | ||
| 4395 | Unlock/p ada-src/2ataspri.ads /^ procedure Unlock (L : in out Lock);$/ | ||
| 4591 | unnchfopen tex-src/texinfo.tex /^\\def\\unnchfopen #1{%$/ | 4396 | unnchfopen tex-src/texinfo.tex /^\\def\\unnchfopen #1{%$/ |
| 4592 | unnchfplain tex-src/texinfo.tex /^\\def\\unnchfplain #1{%$/ | 4397 | unnchfplain tex-src/texinfo.tex /^\\def\\unnchfplain #1{%$/ |
| 4593 | unnumbchapentry tex-src/texinfo.tex /^ \\let\\unnumbchapentry = \\shortunnumberedentry/ | ||
| 4594 | unnumbchapentry tex-src/texinfo.tex /^\\def\\unnumbchapentry#1#2{\\dochapentry{#1}{#2}}$/ | 4398 | unnumbchapentry tex-src/texinfo.tex /^\\def\\unnumbchapentry#1#2{\\dochapentry{#1}{#2}}$/ |
| 4399 | unnumbchapentry tex-src/texinfo.tex /^ \\let\\unnumbchapentry = \\shortunnumberedentry/ | ||
| 4595 | unnumbchapmacro tex-src/texinfo.tex /^\\global\\let\\unnumbchapmacro=\\unnchfopen}$/ | 4400 | unnumbchapmacro tex-src/texinfo.tex /^\\global\\let\\unnumbchapmacro=\\unnchfopen}$/ |
| 4596 | unnumbchapmacro tex-src/texinfo.tex /^\\global\\let\\unnumbchapmacro=\\unnchfplain}$/ | 4401 | unnumbchapmacro tex-src/texinfo.tex /^\\global\\let\\unnumbchapmacro=\\unnchfplain}$/ |
| 4597 | unnumbered tex-src/texinfo.tex /^\\let\\unnumbered=\\relax$/ | ||
| 4598 | unnumbered tex-src/texinfo.tex /^\\outer\\def\\unnumbered{\\parsearg\\unnumberedzzz}$/ | ||
| 4599 | unnumberedsec tex-src/texinfo.tex /^\\let\\unnumberedsec=\\relax$/ | 4402 | unnumberedsec tex-src/texinfo.tex /^\\let\\unnumberedsec=\\relax$/ |
| 4600 | unnumberedsec tex-src/texinfo.tex /^\\outer\\def\\unnumberedsec{\\parsearg\\unnumberedseczz/ | 4403 | unnumberedsec tex-src/texinfo.tex /^\\outer\\def\\unnumberedsec{\\parsearg\\unnumberedseczz/ |
| 4601 | unnumberedsection tex-src/texinfo.tex /^\\let\\unnumberedsection=\\relax$/ | 4404 | unnumberedsection tex-src/texinfo.tex /^\\let\\unnumberedsection=\\relax$/ |
| @@ -4608,6 +4411,8 @@ unnumberedsubsubsec tex-src/texinfo.tex /^\\let\\unnumberedsubsubsec=\\relax$/ | |||
| 4608 | unnumberedsubsubsec tex-src/texinfo.tex /^\\outer\\def\\unnumberedsubsubsec{\\parsearg\\unnumbere/ | 4411 | unnumberedsubsubsec tex-src/texinfo.tex /^\\outer\\def\\unnumberedsubsubsec{\\parsearg\\unnumbere/ |
| 4609 | unnumberedsubsubsection tex-src/texinfo.tex /^\\let\\unnumberedsubsubsection=\\relax$/ | 4412 | unnumberedsubsubsection tex-src/texinfo.tex /^\\let\\unnumberedsubsubsection=\\relax$/ |
| 4610 | unnumberedsubsubseczzz tex-src/texinfo.tex /^\\def\\unnumberedsubsubseczzz #1{\\seccheck{unnumbere/ | 4413 | unnumberedsubsubseczzz tex-src/texinfo.tex /^\\def\\unnumberedsubsubseczzz #1{\\seccheck{unnumbere/ |
| 4414 | unnumbered tex-src/texinfo.tex /^\\let\\unnumbered=\\relax$/ | ||
| 4415 | unnumbered tex-src/texinfo.tex /^\\outer\\def\\unnumbered{\\parsearg\\unnumberedzzz}$/ | ||
| 4611 | unnumberedzzz tex-src/texinfo.tex /^\\def\\unnumberedzzz #1{\\seccheck{unnumbered}%$/ | 4416 | unnumberedzzz tex-src/texinfo.tex /^\\def\\unnumberedzzz #1{\\seccheck{unnumbered}%$/ |
| 4612 | unnumbnoderef tex-src/texinfo.tex /^\\def\\unnumbnoderef{\\ifx\\lastnode\\relax\\else$/ | 4417 | unnumbnoderef tex-src/texinfo.tex /^\\def\\unnumbnoderef{\\ifx\\lastnode\\relax\\else$/ |
| 4613 | unnumbsecentry tex-src/texinfo.tex /^ \\def\\unnumbsecentry ##1##2{}$/ | 4418 | unnumbsecentry tex-src/texinfo.tex /^ \\def\\unnumbsecentry ##1##2{}$/ |
| @@ -4619,66 +4424,104 @@ unnumbsubsubsecentry tex-src/texinfo.tex /^ \\def\\unnumbsubsubsecentry ##1 | |||
| 4619 | unnumbsubsubsecentry tex-src/texinfo.tex /^\\def\\unnumbsubsubsecentry#1#2{\\dosubsubsecentry{#1/ | 4424 | unnumbsubsubsecentry tex-src/texinfo.tex /^\\def\\unnumbsubsubsecentry#1#2{\\dosubsubsecentry{#1/ |
| 4620 | unravel_univ merc-src/accumulator.m /^:- some [T] pred unravel_univ(univ::in, T::out) is/ | 4425 | unravel_univ merc-src/accumulator.m /^:- some [T] pred unravel_univ(univ::in, T::out) is/ |
| 4621 | unread_switch_frame c-src/emacs/src/keyboard.c 204 | 4426 | unread_switch_frame c-src/emacs/src/keyboard.c 204 |
| 4427 | UNSIGNED_CMP c-src/emacs/src/lisp.h /^#define UNSIGNED_CMP(a, op, b) \\$/ | ||
| 4622 | unsignedp y-src/cccp.y 112 | 4428 | unsignedp y-src/cccp.y 112 |
| 4623 | unwind c-src/emacs/src/lisp.h 2962 | 4429 | unwind c-src/emacs/src/lisp.h 2962 |
| 4624 | unwind_int c-src/emacs/src/lisp.h 2972 | 4430 | unwind_int c-src/emacs/src/lisp.h 2972 |
| 4625 | unwind_ptr c-src/emacs/src/lisp.h 2967 | 4431 | unwind_ptr c-src/emacs/src/lisp.h 2967 |
| 4626 | unwind_void c-src/emacs/src/lisp.h 2976 | 4432 | unwind_void c-src/emacs/src/lisp.h 2976 |
| 4627 | unx\defunheader tex-src/texinfo.tex /^\\def\\defun{\\defparsebody\\Edefun\\defunx\\defunheader/ | 4433 | unx\defunheader tex-src/texinfo.tex /^\\def\\defun{\\defparsebody\\Edefun\\defunx\\defunheader/ |
| 4434 | u_objfwd c-src/emacs/src/lisp.h 2372 | ||
| 4435 | u_overlay c-src/emacs/src/lisp.h 2217 | ||
| 4436 | __up c.c 160 | ||
| 4628 | update_accumulator_pred merc-src/accumulator.m /^:- pred update_accumulator_pred(pred_id::in, proc_/ | 4437 | update_accumulator_pred merc-src/accumulator.m /^:- pred update_accumulator_pred(pred_id::in, proc_/ |
| 4629 | uppercaseenumerate tex-src/texinfo.tex /^\\def\\uppercaseenumerate{%$/ | 4438 | uppercaseenumerate tex-src/texinfo.tex /^\\def\\uppercaseenumerate{%$/ |
| 4630 | uprintmax_t c-src/emacs/src/lisp.h 149 | 4439 | uprintmax_t c-src/emacs/src/lisp.h 149 |
| 4631 | uprintmax_t c-src/emacs/src/lisp.h 154 | 4440 | uprintmax_t c-src/emacs/src/lisp.h 154 |
| 4441 | /U ps-src/rfc1245.ps /^\/U { $/ | ||
| 4632 | usage perl-src/yagrip.pl /^sub usage {$/ | 4442 | usage perl-src/yagrip.pl /^sub usage {$/ |
| 4443 | u_save_value c-src/emacs/src/lisp.h 2218 | ||
| 4633 | usecharno c-src/etags.c 210 | 4444 | usecharno c-src/etags.c 210 |
| 4634 | used c-src/emacs/src/regex.h 347 | 4445 | used c-src/emacs/src/regex.h 347 |
| 4635 | used_syntax c-src/emacs/src/regex.h 398 | 4446 | used_syntax c-src/emacs/src/regex.h 398 |
| 4447 | USE_LSB_TAG c-src/emacs/src/lisp.h 271 | ||
| 4448 | USE_LSB_TAG c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (bool, USE_LSB_TAG)$/ | ||
| 4449 | USE_PTHREAD c-src/emacs/src/gmalloc.c 25 | ||
| 4636 | user_cmp_function c-src/emacs/src/lisp.h 1814 | 4450 | user_cmp_function c-src/emacs/src/lisp.h 1814 |
| 4451 | UserEdit pyt-src/server.py /^class UserEdit(Frame):$/ | ||
| 4637 | user_error c-src/emacs/src/keyboard.c /^user_error (const char *msg)$/ | 4452 | user_error c-src/emacs/src/keyboard.c /^user_error (const char *msg)$/ |
| 4638 | user_hash_function c-src/emacs/src/lisp.h 1811 | 4453 | user_hash_function c-src/emacs/src/lisp.h 1811 |
| 4454 | User pyt-src/server.py /^class User:$/ | ||
| 4639 | user_signal_info c-src/emacs/src/keyboard.c 7235 | 4455 | user_signal_info c-src/emacs/src/keyboard.c 7235 |
| 4640 | user_signals c-src/emacs/src/keyboard.c 7250 | 4456 | user_signals c-src/emacs/src/keyboard.c 7250 |
| 4457 | USE_SAFE_ALLOCA c-src/emacs/src/lisp.h 4560 | ||
| 4458 | USE_STACK_CONS c-src/emacs/src/lisp.h 4689 | ||
| 4459 | USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4652 | ||
| 4460 | USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4658 | ||
| 4461 | USE_STACK_LISP_OBJECTS c-src/emacs/src/lisp.h 4659 | ||
| 4462 | USE_STACK_STRING c-src/emacs/src/lisp.h 4691 | ||
| 4641 | usfreelock_ptr/t ada-src/etags-test-for.ada /^ type usfreelock_ptr is access$/ | 4463 | usfreelock_ptr/t ada-src/etags-test-for.ada /^ type usfreelock_ptr is access$/ |
| 4464 | Vabbrev_start_location_buffer c-src/abbrev.c 66 | ||
| 4465 | Vabbrev_start_location c-src/abbrev.c 63 | ||
| 4466 | Vabbrev_table_name_list c-src/abbrev.c 43 | ||
| 4467 | VALBITS c-src/emacs/src/lisp.h 246 | ||
| 4468 | valcell c-src/emacs/src/lisp.h 2357 | ||
| 4642 | val c-src/emacs/src/lisp.h 3027 | 4469 | val c-src/emacs/src/lisp.h 3027 |
| 4643 | val c-src/emacs/src/lisp.h 691 | 4470 | val c-src/emacs/src/lisp.h 691 |
| 4644 | val c-src/getopt.h 84 | 4471 | val c-src/getopt.h 84 |
| 4645 | val prol-src/natded.prolog /^val(X) --> ['['], valseq(X), [']'].$/ | 4472 | validate php-src/lce_functions.php /^ function validate($value)$/ |
| 4646 | valcell c-src/emacs/src/lisp.h 2357 | ||
| 4647 | valid c-src/etags.c 220 | 4473 | valid c-src/etags.c 220 |
| 4648 | valid c-src/etags.c 2502 | 4474 | valid c-src/etags.c 2502 |
| 4649 | validate php-src/lce_functions.php /^ function validate($value)$/ | ||
| 4650 | valloc c-src/emacs/src/gmalloc.c /^valloc (size_t size)$/ | 4475 | valloc c-src/emacs/src/gmalloc.c /^valloc (size_t size)$/ |
| 4476 | VALMASK c-src/emacs/src/lisp.h 829 | ||
| 4477 | VALMASK c-src/emacs/src/lisp.h /^DEFINE_GDB_SYMBOL_BEGIN (EMACS_INT, VALMASK)$/ | ||
| 4478 | VAL_MAX c-src/emacs/src/lisp.h 263 | ||
| 4479 | val prol-src/natded.prolog /^val(X) --> ['['], valseq(X), [']'].$/ | ||
| 4651 | valseq prol-src/natded.prolog /^valseq([Val|Vals]) --> val(Val), plusvalseq(Vals)./ | 4480 | valseq prol-src/natded.prolog /^valseq([Val|Vals]) --> val(Val), plusvalseq(Vals)./ |
| 4481 | ValToNmStr pas-src/common.pas /^function ValToNmStr; (*($/ | ||
| 4652 | value c-src/emacs/src/lisp.h 687 | 4482 | value c-src/emacs/src/lisp.h 687 |
| 4653 | value y-src/cccp.y 112 | 4483 | value y-src/cccp.y 112 |
| 4654 | var c-src/emacs/src/keyboard.c 11023 | ||
| 4655 | var c-src/emacs/src/lisp.h 3137 | ||
| 4656 | var tex-src/texinfo.tex /^\\def\\var##1{\\realbackslash var {##1}}$/ | ||
| 4657 | var tex-src/texinfo.tex /^\\def\\var##1{\\realbackslash var {##1}}%$/ | ||
| 4658 | var tex-src/texinfo.tex /^\\let\\var=\\indexdummyfont$/ | ||
| 4659 | var tex-src/texinfo.tex /^\\let\\var=\\smartitalic$/ | ||
| 4660 | varargs tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defvarargs{#3}\\endgro/ | 4484 | varargs tex-src/texinfo.tex /^\\begingroup\\defname {#2}{#1}\\defvarargs{#3}\\endgro/ |
| 4661 | varargs tex-src/texinfo.tex /^\\def\\deftpargs #1{\\bf \\defvarargs{#1}}$/ | 4485 | varargs tex-src/texinfo.tex /^\\def\\deftpargs #1{\\bf \\defvarargs{#1}}$/ |
| 4662 | varargs tex-src/texinfo.tex /^\\defvarargs {#2}\\endgroup %$/ | 4486 | varargs tex-src/texinfo.tex /^\\defvarargs {#2}\\endgroup %$/ |
| 4663 | varargs tex-src/texinfo.tex /^\\defvarargs {#3}\\endgroup %$/ | 4487 | varargs tex-src/texinfo.tex /^\\defvarargs {#3}\\endgroup %$/ |
| 4488 | var c-src/emacs/src/keyboard.c 11023 | ||
| 4489 | var c-src/emacs/src/lisp.h 3137 | ||
| 4664 | varheader tex-src/texinfo.tex /^\\def\\defvar{\\defvarparsebody\\Edefvar\\defvarx\\defva/ | 4490 | varheader tex-src/texinfo.tex /^\\def\\defvar{\\defvarparsebody\\Edefvar\\defvarx\\defva/ |
| 4665 | varparsebody\Edefopt tex-src/texinfo.tex /^\\def\\defopt{\\defvarparsebody\\Edefopt\\defoptx\\defop/ | 4491 | varparsebody\Edefopt tex-src/texinfo.tex /^\\def\\defopt{\\defvarparsebody\\Edefopt\\defoptx\\defop/ |
| 4666 | varparsebody\Edeftypevar tex-src/texinfo.tex /^\\def\\deftypevar{\\defvarparsebody\\Edeftypevar\\defty/ | 4492 | varparsebody\Edeftypevar tex-src/texinfo.tex /^\\def\\deftypevar{\\defvarparsebody\\Edeftypevar\\defty/ |
| 4667 | varparsebody\Edefvar tex-src/texinfo.tex /^\\def\\defvar{\\defvarparsebody\\Edefvar\\defvarx\\defva/ | 4493 | varparsebody\Edefvar tex-src/texinfo.tex /^\\def\\defvar{\\defvarparsebody\\Edefvar\\defvarx\\defva/ |
| 4668 | varset merc-src/accumulator.m /^:- import_module varset.$/ | 4494 | varset merc-src/accumulator.m /^:- import_module varset.$/ |
| 4495 | var tex-src/texinfo.tex /^\\def\\var##1{\\realbackslash var {##1}}%$/ | ||
| 4496 | var tex-src/texinfo.tex /^\\def\\var##1{\\realbackslash var {##1}}$/ | ||
| 4497 | var tex-src/texinfo.tex /^\\let\\var=\\indexdummyfont$/ | ||
| 4498 | var tex-src/texinfo.tex /^\\let\\var=\\smartitalic$/ | ||
| 4669 | varx\defvarheader tex-src/texinfo.tex /^\\def\\defvar{\\defvarparsebody\\Edefvar\\defvarx\\defva/ | 4499 | varx\defvarheader tex-src/texinfo.tex /^\\def\\defvar{\\defvarparsebody\\Edefvar\\defvarx\\defva/ |
| 4670 | vcopy c-src/emacs/src/lisp.h /^vcopy (Lisp_Object v, ptrdiff_t offset, Lisp_Objec/ | 4500 | vcopy c-src/emacs/src/lisp.h /^vcopy (Lisp_Object v, ptrdiff_t offset, Lisp_Objec/ |
| 4501 | VECSIZE c-src/emacs/src/lisp.h /^#define VECSIZE(type) \\$/ | ||
| 4671 | vectorlike_header c-src/emacs/src/lisp.h 1343 | 4502 | vectorlike_header c-src/emacs/src/lisp.h 1343 |
| 4503 | VECTORLIKEP c-src/emacs/src/lisp.h /^# define VECTORLIKEP(x) lisp_h_VECTORLIKEP (x)$/ | ||
| 4504 | VECTORP c-src/emacs/src/lisp.h /^VECTORP (Lisp_Object x)$/ | ||
| 4672 | verde cp-src/c.C 40 | 4505 | verde cp-src/c.C 40 |
| 4673 | verify-tags-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar verify-tags-table-function nil$/ | ||
| 4674 | verify_ascii c-src/emacs/src/lisp.h /^# define verify_ascii(str) (str)$/ | 4506 | verify_ascii c-src/emacs/src/lisp.h /^# define verify_ascii(str) (str)$/ |
| 4507 | verify-tags-table-function el-src/emacs/lisp/progmodes/etags.el /^(defvar verify-tags-table-function nil$/ | ||
| 4508 | VERSION c-src/etags.c 789 | ||
| 4509 | VERSION erl-src/gs_dialog.erl /^-define(VERSION, '2001.1101').$/ | ||
| 4510 | VERSION objc-src/PackInsp.m 34 | ||
| 4511 | Vfundamental_mode_abbrev_table c-src/abbrev.c 52 | ||
| 4512 | Vglobal_abbrev_table c-src/abbrev.c 48 | ||
| 4513 | VHDLFLAGS make-src/Makefile /^VHDLFLAGS=--language=none --regex='\/[ \\t]*\\(ARCHIT/ | ||
| 4675 | vignore c-src/etags.c 2417 | 4514 | vignore c-src/etags.c 2417 |
| 4676 | vindex tex-src/texinfo.tex /^\\def\\vindex {\\vrindex}$/ | 4515 | vindex tex-src/texinfo.tex /^\\def\\vindex {\\vrindex}$/ |
| 4677 | visit-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun visit-tags-table (file &optional local)$/ | ||
| 4678 | visit-tags-table-buffer el-src/emacs/lisp/progmodes/etags.el /^(defun visit-tags-table-buffer (&optional cont)$/ | 4516 | visit-tags-table-buffer el-src/emacs/lisp/progmodes/etags.el /^(defun visit-tags-table-buffer (&optional cont)$/ |
| 4517 | visit-tags-table el-src/emacs/lisp/progmodes/etags.el /^(defun visit-tags-table (file &optional local)$/ | ||
| 4518 | Vlast_abbrev c-src/abbrev.c 70 | ||
| 4519 | Vlast_abbrev_text c-src/abbrev.c 75 | ||
| 4520 | Vlispy_mouse_stem c-src/emacs/src/keyboard.c 5172 | ||
| 4679 | void c-src/emacs/src/lisp.h /^INLINE void (check_cons_list) (void) { lisp_h_chec/ | 4521 | void c-src/emacs/src/lisp.h /^INLINE void (check_cons_list) (void) { lisp_h_chec/ |
| 4680 | voidfuncptr c-src/emacs/src/lisp.h 2108 | 4522 | voidfuncptr c-src/emacs/src/lisp.h 2108 |
| 4681 | voidval y-src/cccp.y 115 | 4523 | voidval y-src/cccp.y 115 |
| 4524 | /V ps-src/rfc1245.ps /^\/V { $/ | ||
| 4682 | vrheader tex-src/texinfo.tex /^\\def\\defvr{\\defvrparsebody\\Edefvr\\defvrx\\defvrhead/ | 4525 | vrheader tex-src/texinfo.tex /^\\def\\defvr{\\defvrparsebody\\Edefvr\\defvrx\\defvrhead/ |
| 4683 | vritemindex tex-src/texinfo.tex /^\\def\\vritemindex #1{\\doind {vr}{\\code{#1}}}%$/ | 4526 | vritemindex tex-src/texinfo.tex /^\\def\\vritemindex #1{\\doind {vr}{\\code{#1}}}%$/ |
| 4684 | vrparsebody\Edefivar tex-src/texinfo.tex /^\\def\\defivar{\\defvrparsebody\\Edefivar\\defivarx\\def/ | 4527 | vrparsebody\Edefivar tex-src/texinfo.tex /^\\def\\defivar{\\defvrparsebody\\Edefivar\\defivarx\\def/ |
| @@ -4688,49 +4531,80 @@ vrparsebody\Edefvr tex-src/texinfo.tex /^\\def\\defvr{\\defvrparsebody\\Edefvr\\ | |||
| 4688 | vrx\defvrheader tex-src/texinfo.tex /^\\def\\defvr{\\defvrparsebody\\Edefvr\\defvrx\\defvrhead/ | 4531 | vrx\defvrheader tex-src/texinfo.tex /^\\def\\defvr{\\defvrparsebody\\Edefvr\\defvrx\\defvrhead/ |
| 4689 | vtable tex-src/texinfo.tex /^\\def\\vtable{\\begingroup\\inENV\\obeylines\\obeyspaces/ | 4532 | vtable tex-src/texinfo.tex /^\\def\\vtable{\\begingroup\\inENV\\obeylines\\obeyspaces/ |
| 4690 | vtablex tex-src/texinfo.tex /^\\gdef\\vtablex #1^^M{%$/ | 4533 | vtablex tex-src/texinfo.tex /^\\gdef\\vtablex #1^^M{%$/ |
| 4691 | w tex-src/texinfo.tex /^\\def\\w#1{\\leavevmode\\hbox{#1}}$/ | ||
| 4692 | w tex-src/texinfo.tex /^\\def\\w{\\realbackslash w }%$/ | ||
| 4693 | w tex-src/texinfo.tex /^\\def\\w{\\realbackslash w}$/ | ||
| 4694 | w tex-src/texinfo.tex /^\\let\\w=\\indexdummyfont$/ | ||
| 4695 | wait_status_ptr_t c.c 161 | ||
| 4696 | waiting_for_input c-src/emacs/src/keyboard.c 150 | 4534 | waiting_for_input c-src/emacs/src/keyboard.c 150 |
| 4535 | WAIT_READING_MAX c-src/emacs/src/lisp.h 4281 | ||
| 4536 | WAIT_READING_MAX c-src/emacs/src/lisp.h 4283 | ||
| 4537 | wait_status_ptr_t c.c 161 | ||
| 4538 | WARNINGS make-src/Makefile /^WARNINGS=-pedantic -Wall -Wpointer-arith -Winline / | ||
| 4697 | warning y-src/cccp.y /^warning (msg)$/ | 4539 | warning y-src/cccp.y /^warning (msg)$/ |
| 4698 | weak c-src/emacs/src/lisp.h 1830 | 4540 | /wbytes ps-src/rfc1245.ps /^\/wbytes { $/ |
| 4541 | WCHAR_TYPE_SIZE y-src/cccp.y 99 | ||
| 4699 | weak_alias c-src/emacs/src/gmalloc.c /^weak_alias (free, cfree)$/ | 4542 | weak_alias c-src/emacs/src/gmalloc.c /^weak_alias (free, cfree)$/ |
| 4543 | weak c-src/emacs/src/lisp.h 1830 | ||
| 4700 | web ftp publish make-src/Makefile /^web ftp publish:$/ | 4544 | web ftp publish make-src/Makefile /^web ftp publish:$/ |
| 4701 | what c-src/etags.c 252 | 4545 | what c-src/etags.c 252 |
| 4702 | wheel_syms c-src/emacs/src/keyboard.c 4628 | 4546 | wheel_syms c-src/emacs/src/keyboard.c 4628 |
| 4547 | where cp-src/clheir.hpp 77 | ||
| 4703 | where c-src/emacs/src/lisp.h 2348 | 4548 | where c-src/emacs/src/lisp.h 2348 |
| 4704 | where c-src/emacs/src/lisp.h 2980 | 4549 | where c-src/emacs/src/lisp.h 2980 |
| 4705 | where cp-src/clheir.hpp 77 | ||
| 4706 | where_in_registry cp-src/clheir.hpp 15 | 4550 | where_in_registry cp-src/clheir.hpp 15 |
| 4551 | WHITE cp-src/screen.hpp 27 | ||
| 4552 | /wh ps-src/rfc1245.ps /^\/wh { $/ | ||
| 4553 | WINDOW_CONFIGURATIONP c-src/emacs/src/lisp.h /^WINDOW_CONFIGURATIONP (Lisp_Object a)$/ | ||
| 4554 | WINDOWP c-src/emacs/src/lisp.h /^WINDOWP (Lisp_Object a)$/ | ||
| 4555 | WINDOWSNT c-src/etags.c 101 | ||
| 4556 | WINDOWSNT c-src/etags.c 102 | ||
| 4707 | windowWillClose objcpp-src/SimpleCalc.M /^- windowWillClose:sender$/ | 4557 | windowWillClose objcpp-src/SimpleCalc.M /^- windowWillClose:sender$/ |
| 4708 | wipe_kboard c-src/emacs/src/keyboard.c /^wipe_kboard (KBOARD *kb)$/ | 4558 | wipe_kboard c-src/emacs/src/keyboard.c /^wipe_kboard (KBOARD *kb)$/ |
| 4709 | womboid c-src/h.h 63 | 4559 | womboid c-src/h.h 63 |
| 4710 | womboid c-src/h.h 75 | 4560 | womboid c-src/h.h 75 |
| 4711 | word_size c-src/emacs/src/lisp.h 1473 | 4561 | word_size c-src/emacs/src/lisp.h 1473 |
| 4712 | write php-src/lce_functions.php /^ function write($save="yes")$/ | 4562 | WorkingDays cp-src/functions.cpp /^int WorkingDays(Date a, Date b){$/ |
| 4713 | write php-src/lce_functions.php /^ function write()$/ | 4563 | WORKING objc-src/PackInsp.m 368 |
| 4564 | /W ps-src/rfc1245.ps /^\/W { $/ | ||
| 4714 | write1= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ | 4565 | write1= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ |
| 4715 | write2= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ | 4566 | write2= ruby-src/test1.ru /^ attr_reader :read1 , :read2; attr_writer :writ/ |
| 4716 | write_abbrev c-src/abbrev.c /^write_abbrev (sym, stream)$/ | 4567 | write_abbrev c-src/abbrev.c /^write_abbrev (sym, stream)$/ |
| 4717 | write_classname c-src/etags.c /^write_classname (linebuffer *cn, const char *quali/ | ||
| 4718 | write_lex prol-src/natded.prolog /^write_lex(File):-$/ | ||
| 4719 | write_lex_cat prol-src/natded.prolog /^write_lex_cat(File):-$/ | ||
| 4720 | write_xyc cp-src/screen.cpp /^void write_xyc(int x, int y, char c)$/ | ||
| 4721 | writebreak prol-src/natded.prolog /^writebreak([]).$/ | ||
| 4722 | writebreaklex prol-src/natded.prolog /^writebreaklex([]).$/ | 4568 | writebreaklex prol-src/natded.prolog /^writebreaklex([]).$/ |
| 4569 | writebreak prol-src/natded.prolog /^writebreak([]).$/ | ||
| 4723 | writecat prol-src/natded.prolog /^writecat(np(ind(sng),nm(_)),np,[],[]):-!.$/ | 4570 | writecat prol-src/natded.prolog /^writecat(np(ind(sng),nm(_)),np,[],[]):-!.$/ |
| 4571 | write_classname c-src/etags.c /^write_classname (linebuffer *cn, const char *quali/ | ||
| 4572 | write_lex_cat prol-src/natded.prolog /^write_lex_cat(File):-$/ | ||
| 4573 | write_lex prol-src/natded.prolog /^write_lex(File):-$/ | ||
| 4724 | writelist prol-src/natded.prolog /^writelist([der(Ws)|Ws2]):-$/ | 4574 | writelist prol-src/natded.prolog /^writelist([der(Ws)|Ws2]):-$/ |
| 4725 | writelistsubs prol-src/natded.prolog /^writelistsubs([],X):-$/ | 4575 | writelistsubs prol-src/natded.prolog /^writelistsubs([],X):-$/ |
| 4576 | Write_Lock/p ada-src/2ataspri.adb /^ procedure Write_Lock (L : in out Lock; Ceiling_/ | ||
| 4577 | Write_Lock/p ada-src/2ataspri.ads /^ procedure Write_Lock (L : in out Lock; Ceiling_/ | ||
| 4726 | writenamestring pas-src/common.pas /^procedure writenamestring;(*($/ | 4578 | writenamestring pas-src/common.pas /^procedure writenamestring;(*($/ |
| 4579 | write php-src/lce_functions.php /^ function write()$/ | ||
| 4580 | write php-src/lce_functions.php /^ function write($save="yes")$/ | ||
| 4727 | writesubs prol-src/natded.prolog /^writesubs([]).$/ | 4581 | writesubs prol-src/natded.prolog /^writesubs([]).$/ |
| 4728 | writesups prol-src/natded.prolog /^writesups([]).$/ | 4582 | writesups prol-src/natded.prolog /^writesups([]).$/ |
| 4583 | write_xyc cp-src/screen.cpp /^void write_xyc(int x, int y, char c)$/ | ||
| 4729 | written c-src/etags.c 211 | 4584 | written c-src/etags.c 211 |
| 4585 | w tex-src/texinfo.tex /^\\def\\w#1{\\leavevmode\\hbox{#1}}$/ | ||
| 4586 | w tex-src/texinfo.tex /^\\def\\w{\\realbackslash w }%$/ | ||
| 4587 | w tex-src/texinfo.tex /^\\def\\w{\\realbackslash w}$/ | ||
| 4588 | w tex-src/texinfo.tex /^\\let\\w=\\indexdummyfont$/ | ||
| 4589 | XBOOL_VECTOR c-src/emacs/src/lisp.h /^XBOOL_VECTOR (Lisp_Object a)$/ | ||
| 4590 | XBUFFER c-src/emacs/src/lisp.h /^XBUFFER (Lisp_Object a)$/ | ||
| 4591 | XBUFFER_OBJFWD c-src/emacs/src/lisp.h /^XBUFFER_OBJFWD (union Lisp_Fwd *a)$/ | ||
| 4592 | xcar_addr c-src/emacs/src/lisp.h /^xcar_addr (Lisp_Object c)$/ | ||
| 4593 | XCAR c-src/emacs/src/lisp.h /^# define XCAR(c) lisp_h_XCAR (c)$/ | ||
| 4730 | x c.c 153 | 4594 | x c.c 153 |
| 4731 | x c.c 179 | 4595 | x c.c 179 |
| 4732 | x c.c 188 | 4596 | x c.c 188 |
| 4733 | x c.c 189 | 4597 | x c.c 189 |
| 4598 | xcdr_addr c-src/emacs/src/lisp.h /^xcdr_addr (Lisp_Object c)$/ | ||
| 4599 | XCDR c-src/emacs/src/lisp.h /^# define XCDR(c) lisp_h_XCDR (c)$/ | ||
| 4600 | XCHAR_TABLE c-src/emacs/src/lisp.h /^XCHAR_TABLE (Lisp_Object a)$/ | ||
| 4601 | XCHG_0 c-src/sysdep.h 47 | ||
| 4602 | XCHG_1 c-src/sysdep.h 48 | ||
| 4603 | XCHG_2 c-src/sysdep.h 49 | ||
| 4604 | XCHG_3 c-src/sysdep.h 50 | ||
| 4605 | XCHG_4 c-src/sysdep.h 51 | ||
| 4606 | XCHG_5 c-src/sysdep.h 52 | ||
| 4607 | XCONS c-src/emacs/src/lisp.h /^# define XCONS(a) lisp_h_XCONS (a)$/ | ||
| 4734 | x cp-src/c.C 53 | 4608 | x cp-src/c.C 53 |
| 4735 | x cp-src/c.C 80 | 4609 | x cp-src/c.C 80 |
| 4736 | x cp-src/clheir.hpp 49 | 4610 | x cp-src/clheir.hpp 49 |
| @@ -4738,80 +4612,219 @@ x cp-src/clheir.hpp 58 | |||
| 4738 | x cp-src/conway.hpp 7 | 4612 | x cp-src/conway.hpp 7 |
| 4739 | x cp-src/fail.C 10 | 4613 | x cp-src/fail.C 10 |
| 4740 | x cp-src/fail.C 44 | 4614 | x cp-src/fail.C 44 |
| 4741 | x tex-src/texinfo.tex /^\\refx{#1-snt}{} [\\printednodename], page\\tie\\refx{/ | 4615 | X c-src/h.h 100 |
| 4742 | x-get-selection-internal c.c /^ Fx_get_selection_internal, Sx_get_selection/ | 4616 | XDEFUN c.c /^XDEFUN ("x-get-selection-internal", Fx_get_selecti/ |
| 4743 | x-get-selection-internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/ | ||
| 4744 | xcar_addr c-src/emacs/src/lisp.h /^xcar_addr (Lisp_Object c)$/ | ||
| 4745 | xcdr_addr c-src/emacs/src/lisp.h /^xcdr_addr (Lisp_Object c)$/ | ||
| 4746 | xdiff make-src/Makefile /^xdiff: ETAGS EXTAGS ${infiles}$/ | 4617 | xdiff make-src/Makefile /^xdiff: ETAGS EXTAGS ${infiles}$/ |
| 4747 | xitem tex-src/texinfo.tex /^\\def\\xitem{\\errmessage{@xitem while not in a table/ | 4618 | XFASTINT c-src/emacs/src/lisp.h /^# define XFASTINT(a) lisp_h_XFASTINT (a)$/ |
| 4748 | xitem tex-src/texinfo.tex /^\\let\\xitem = \\internalBxitem %$/ | 4619 | XFASTINT c-src/emacs/src/lisp.h /^XFASTINT (Lisp_Object a)$/ |
| 4620 | XFINALIZER c-src/emacs/src/lisp.h /^XFINALIZER (Lisp_Object a)$/ | ||
| 4621 | XFLOAT c-src/emacs/src/lisp.h /^XFLOAT (Lisp_Object a)$/ | ||
| 4622 | XFLOAT_DATA c-src/emacs/src/lisp.h /^XFLOAT_DATA (Lisp_Object f)$/ | ||
| 4623 | XFLOATINT c-src/emacs/src/lisp.h /^XFLOATINT (Lisp_Object n)$/ | ||
| 4624 | XFWDTYPE c-src/emacs/src/lisp.h /^XFWDTYPE (union Lisp_Fwd *a)$/ | ||
| 4625 | x-get-selection-internal c.c /^DEFUN ("x-get-selection-internal", Fx_get_selectio/ | ||
| 4626 | x-get-selection-internal c.c /^ Fx_get_selection_internal, Sx_get_selection/ | ||
| 4627 | XHASH c-src/emacs/src/lisp.h /^# define XHASH(a) lisp_h_XHASH (a)$/ | ||
| 4628 | XHASH_TABLE c-src/emacs/src/lisp.h /^XHASH_TABLE (Lisp_Object a)$/ | ||
| 4629 | XIL c-src/emacs/src/lisp.h /^# define XIL(i) lisp_h_XIL (i)$/ | ||
| 4630 | XINT c-src/emacs/src/lisp.h /^# define XINT(a) lisp_h_XINT (a)$/ | ||
| 4631 | XINT c-src/emacs/src/lisp.h /^XINT (Lisp_Object a)$/ | ||
| 4632 | XINTPTR c-src/emacs/src/lisp.h /^XINTPTR (Lisp_Object a)$/ | ||
| 4749 | xitemsubtopix tex-src/texinfo.tex /^\\def\\internalBxitem "#1"{\\def\\xitemsubtopix{#1} \\s/ | 4633 | xitemsubtopix tex-src/texinfo.tex /^\\def\\internalBxitem "#1"{\\def\\xitemsubtopix{#1} \\s/ |
| 4750 | xitemsubtopix tex-src/texinfo.tex /^\\def\\internalBxitemx "#1"{\\def\\xitemsubtopix{#1} \\/ | 4634 | xitemsubtopix tex-src/texinfo.tex /^\\def\\internalBxitemx "#1"{\\def\\xitemsubtopix{#1} \\/ |
| 4635 | xitem tex-src/texinfo.tex /^\\def\\xitem{\\errmessage{@xitem while not in a table/ | ||
| 4636 | xitem tex-src/texinfo.tex /^\\let\\xitem = \\internalBxitem %$/ | ||
| 4751 | xitemx tex-src/texinfo.tex /^\\def\\xitemx{\\errmessage{@xitemx while not in a tab/ | 4637 | xitemx tex-src/texinfo.tex /^\\def\\xitemx{\\errmessage{@xitemx while not in a tab/ |
| 4752 | xitemx tex-src/texinfo.tex /^\\let\\xitemx = \\internalBxitemx %$/ | 4638 | xitemx tex-src/texinfo.tex /^\\let\\xitemx = \\internalBxitemx %$/ |
| 4753 | xitemzzz tex-src/texinfo.tex /^\\def\\xitemzzz #1{\\dosubind {kw}{\\code{#1}}{for {\\b/ | 4639 | xitemzzz tex-src/texinfo.tex /^\\def\\xitemzzz #1{\\dosubind {kw}{\\code{#1}}{for {\\b/ |
| 4754 | xkey tex-src/texinfo.tex /^\\def\\xkey{\\key}$/ | 4640 | xkey tex-src/texinfo.tex /^\\def\\xkey{\\key}$/ |
| 4641 | XLI_BUILTIN_LISPSYM c-src/emacs/src/lisp.h /^#define XLI_BUILTIN_LISPSYM(iname) TAG_SYMOFFSET (/ | ||
| 4642 | XLI c-src/emacs/src/lisp.h /^# define XLI(o) lisp_h_XLI (o)$/ | ||
| 4755 | xmalloc c-src/etags.c /^xmalloc (size_t size)$/ | 4643 | xmalloc c-src/etags.c /^xmalloc (size_t size)$/ |
| 4644 | XMARKER c-src/emacs/src/lisp.h /^XMARKER (Lisp_Object a)$/ | ||
| 4645 | XMISCANY c-src/emacs/src/lisp.h /^XMISCANY (Lisp_Object a)$/ | ||
| 4646 | XMISC c-src/emacs/src/lisp.h /^XMISC (Lisp_Object a)$/ | ||
| 4647 | XMISCTYPE c-src/emacs/src/lisp.h /^XMISCTYPE (Lisp_Object a)$/ | ||
| 4756 | xnew c-src/etags.c /^#define xnew(n, Type) ((Type *) xmalloc ((n) / | 4648 | xnew c-src/etags.c /^#define xnew(n, Type) ((Type *) xmalloc ((n) / |
| 4649 | XOVERLAY c-src/emacs/src/lisp.h /^XOVERLAY (Lisp_Object a)$/ | ||
| 4650 | XPNTR c-src/emacs/src/lisp.h /^# define XPNTR(a) lisp_h_XPNTR (a)$/ | ||
| 4651 | XPROCESS c-src/emacs/src/lisp.h /^XPROCESS (Lisp_Object a)$/ | ||
| 4652 | /X ps-src/rfc1245.ps /^\/X { $/ | ||
| 4757 | xrdef tex-src/texinfo.tex /^\\def\\xrdef #1#2{$/ | 4653 | xrdef tex-src/texinfo.tex /^\\def\\xrdef #1#2{$/ |
| 4758 | xrealloc c-src/etags.c /^xrealloc (void *ptr, size_t size)$/ | 4654 | xrealloc c-src/etags.c /^xrealloc (void *ptr, size_t size)$/ |
| 4759 | xref tex-src/texinfo.tex /^\\def\\xref#1{See \\xrefX[#1,,,,,,,]}$/ | ||
| 4760 | xref-etags-location el-src/emacs/lisp/progmodes/etags.el /^(defclass xref-etags-location (xref-location)$/ | 4655 | xref-etags-location el-src/emacs/lisp/progmodes/etags.el /^(defclass xref-etags-location (xref-location)$/ |
| 4761 | xref-location-line el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-line ((l xref-etags-lo/ | 4656 | xref-location-line el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-line ((l xref-etags-lo/ |
| 4762 | xref-location-marker el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-marker ((l xref-etags-/ | 4657 | xref-location-marker el-src/emacs/lisp/progmodes/etags.el /^(cl-defmethod xref-location-marker ((l xref-etags-/ |
| 4763 | xref-make-etags-location el-src/emacs/lisp/progmodes/etags.el /^(defun xref-make-etags-location (tag-info file)$/ | 4658 | xref-make-etags-location el-src/emacs/lisp/progmodes/etags.el /^(defun xref-make-etags-location (tag-info file)$/ |
| 4764 | xrefX tex-src/texinfo.tex /^\\def\\xrefX[#1,#2,#3,#4,#5,#6]{\\begingroup%$/ | 4659 | xref tex-src/texinfo.tex /^\\def\\xref#1{See \\xrefX[#1,,,,,,,]}$/ |
| 4765 | xreftie tex-src/texinfo.tex /^\\gdef\\xreftie{'tie}$/ | 4660 | xreftie tex-src/texinfo.tex /^\\gdef\\xreftie{'tie}$/ |
| 4661 | xrefX tex-src/texinfo.tex /^\\def\\xrefX[#1,#2,#3,#4,#5,#6]{\\begingroup%$/ | ||
| 4766 | xrnew c-src/etags.c /^#define xrnew(op, n, Type) ((op) = (Type *) xreall/ | 4662 | xrnew c-src/etags.c /^#define xrnew(op, n, Type) ((op) = (Type *) xreall/ |
| 4663 | XSAVE_FUNCPOINTER c-src/emacs/src/lisp.h /^XSAVE_FUNCPOINTER (Lisp_Object obj, int n)$/ | ||
| 4664 | XSAVE_INTEGER c-src/emacs/src/lisp.h /^XSAVE_INTEGER (Lisp_Object obj, int n)$/ | ||
| 4665 | XSAVE_OBJECT c-src/emacs/src/lisp.h /^XSAVE_OBJECT (Lisp_Object obj, int n)$/ | ||
| 4666 | XSAVE_POINTER c-src/emacs/src/lisp.h /^XSAVE_POINTER (Lisp_Object obj, int n)$/ | ||
| 4667 | XSAVE_VALUE c-src/emacs/src/lisp.h /^XSAVE_VALUE (Lisp_Object a)$/ | ||
| 4668 | XSETBOOL_VECTOR c-src/emacs/src/lisp.h /^#define XSETBOOL_VECTOR(a, b) (XSETPSEUDOVECTOR (a/ | ||
| 4669 | XSETBUFFER c-src/emacs/src/lisp.h /^#define XSETBUFFER(a, b) (XSETPSEUDOVECTOR (a, b, / | ||
| 4670 | XSETCDR c-src/emacs/src/lisp.h /^XSETCDR (Lisp_Object c, Lisp_Object n)$/ | ||
| 4671 | XSETCHAR_TABLE c-src/emacs/src/lisp.h /^#define XSETCHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a,/ | ||
| 4672 | XSETCOMPILED c-src/emacs/src/lisp.h /^#define XSETCOMPILED(a, b) (XSETPSEUDOVECTOR (a, b/ | ||
| 4673 | XSETCONS c-src/emacs/src/lisp.h /^#define XSETCONS(a, b) ((a) = make_lisp_ptr (b, Li/ | ||
| 4674 | XSETFASTINT c-src/emacs/src/lisp.h /^#define XSETFASTINT(a, b) ((a) = make_natnum (b))$/ | ||
| 4675 | XSETFLOAT c-src/emacs/src/lisp.h /^#define XSETFLOAT(a, b) ((a) = make_lisp_ptr (b, L/ | ||
| 4676 | XSET_HASH_TABLE c-src/emacs/src/lisp.h /^#define XSET_HASH_TABLE(VAR, PTR) \\$/ | ||
| 4677 | XSETINT c-src/emacs/src/lisp.h /^#define XSETINT(a, b) ((a) = make_number (b))$/ | ||
| 4678 | XSETMISC c-src/emacs/src/lisp.h /^#define XSETMISC(a, b) ((a) = make_lisp_ptr (b, Li/ | ||
| 4679 | XSETPROCESS c-src/emacs/src/lisp.h /^#define XSETPROCESS(a, b) (XSETPSEUDOVECTOR (a, b,/ | ||
| 4680 | XSETPSEUDOVECTOR c-src/emacs/src/lisp.h /^#define XSETPSEUDOVECTOR(a, b, code) \\$/ | ||
| 4681 | XSETPVECTYPE c-src/emacs/src/lisp.h /^#define XSETPVECTYPE(v, code) \\$/ | ||
| 4682 | XSETPVECTYPESIZE c-src/emacs/src/lisp.h /^#define XSETPVECTYPESIZE(v, code, lispsize, restsi/ | ||
| 4683 | XSETSTRING c-src/emacs/src/lisp.h /^#define XSETSTRING(a, b) ((a) = make_lisp_ptr (b, / | ||
| 4684 | XSETSUB_CHAR_TABLE c-src/emacs/src/lisp.h /^#define XSETSUB_CHAR_TABLE(a, b) (XSETPSEUDOVECTOR/ | ||
| 4685 | XSETSUBR c-src/emacs/src/lisp.h /^#define XSETSUBR(a, b) (XSETPSEUDOVECTOR (a, b, PV/ | ||
| 4686 | XSETSYMBOL c-src/emacs/src/lisp.h /^#define XSETSYMBOL(a, b) ((a) = make_lisp_symbol (/ | ||
| 4687 | XSETTERMINAL c-src/emacs/src/lisp.h /^#define XSETTERMINAL(a, b) (XSETPSEUDOVECTOR (a, b/ | ||
| 4688 | XSETTYPED_PSEUDOVECTOR c-src/emacs/src/lisp.h /^#define XSETTYPED_PSEUDOVECTOR(a, b, size, code) / | ||
| 4689 | XSETVECTOR c-src/emacs/src/lisp.h /^#define XSETVECTOR(a, b) ((a) = make_lisp_ptr (b, / | ||
| 4690 | XSETWINDOW_CONFIGURATION c-src/emacs/src/lisp.h /^#define XSETWINDOW_CONFIGURATION(a, b) \\$/ | ||
| 4691 | XSETWINDOW c-src/emacs/src/lisp.h /^#define XSETWINDOW(a, b) (XSETPSEUDOVECTOR (a, b, / | ||
| 4692 | XSTRING c-src/emacs/src/lisp.h /^XSTRING (Lisp_Object a)$/ | ||
| 4693 | XSUB_CHAR_TABLE c-src/emacs/src/lisp.h /^XSUB_CHAR_TABLE (Lisp_Object a)$/ | ||
| 4694 | XSUBR c-src/emacs/src/lisp.h /^XSUBR (Lisp_Object a)$/ | ||
| 4695 | XSYMBOL c-src/emacs/src/lisp.h /^# define XSYMBOL(a) lisp_h_XSYMBOL (a)$/ | ||
| 4696 | XSYMBOL c-src/emacs/src/lisp.h /^XSYMBOL (Lisp_Object a)$/ | ||
| 4697 | XTERMINAL c-src/emacs/src/lisp.h /^XTERMINAL (Lisp_Object a)$/ | ||
| 4698 | x tex-src/texinfo.tex /^\\refx{#1-snt}{} [\\printednodename], page\\tie\\refx{/ | ||
| 4699 | XTYPE c-src/emacs/src/lisp.h /^# define XTYPE(a) lisp_h_XTYPE (a)$/ | ||
| 4700 | XTYPE c-src/emacs/src/lisp.h /^XTYPE (Lisp_Object a)$/ | ||
| 4701 | XUNTAG c-src/emacs/src/lisp.h /^# define XUNTAG(a, type) lisp_h_XUNTAG (a, type)$/ | ||
| 4702 | XUNTAG c-src/emacs/src/lisp.h /^XUNTAG (Lisp_Object a, int type)$/ | ||
| 4703 | XWINDOW c-src/emacs/src/lisp.h /^XWINDOW (Lisp_Object a)$/ | ||
| 4704 | XX cp-src/x.cc 1 | ||
| 4767 | xx make-src/Makefile /^xx="this line is here because of a fontlock bug$/ | 4705 | xx make-src/Makefile /^xx="this line is here because of a fontlock bug$/ |
| 4768 | xyz ruby-src/test1.ru /^ alias_method :xyz,$/ | 4706 | xyz ruby-src/test1.ru /^ alias_method :xyz,$/ |
| 4707 | Xyzzy ruby-src/test1.ru 13 | ||
| 4708 | YACC c-src/etags.c 2199 | ||
| 4709 | Yacc_entries c-src/etags.c /^Yacc_entries (FILE *inf)$/ | ||
| 4710 | Yacc_help c-src/etags.c 693 | ||
| 4711 | Yacc_suffixes c-src/etags.c 691 | ||
| 4712 | Yappendixletterandtype tex-src/texinfo.tex /^\\def\\Yappendixletterandtype{%$/ | ||
| 4769 | y cp-src/clheir.hpp 49 | 4713 | y cp-src/clheir.hpp 49 |
| 4770 | y cp-src/clheir.hpp 58 | 4714 | y cp-src/clheir.hpp 58 |
| 4771 | y cp-src/conway.hpp 7 | 4715 | y cp-src/conway.hpp 7 |
| 4716 | Y c-src/h.h 100 | ||
| 4717 | YELLOW cp-src/screen.hpp 26 | ||
| 4718 | /yen ps-src/rfc1245.ps /^\/yen \/.notdef \/.notdef \/.notdef \/.notdef \/.notdef / | ||
| 4772 | y-get-selection-internal c.c /^ Fy_get_selection_internal, Sy_get_selection_/ | 4719 | y-get-selection-internal c.c /^ Fy_get_selection_internal, Sy_get_selection_/ |
| 4720 | Ynothing tex-src/texinfo.tex /^\\def\\Ynothing{}$/ | ||
| 4721 | Ypagenumber tex-src/texinfo.tex /^\\def\\Ypagenumber{\\folio}$/ | ||
| 4722 | /Y ps-src/rfc1245.ps /^\/Y { $/ | ||
| 4723 | Ysectionnumberandtype tex-src/texinfo.tex /^\\def\\Ysectionnumberandtype{%$/ | ||
| 4724 | YSRC make-src/Makefile /^YSRC=parse.y parse.c atest.y cccp.c cccp.y$/ | ||
| 4725 | Ytitle tex-src/texinfo.tex /^\\def\\Ytitle{\\thischapter}$/ | ||
| 4726 | YYABORT /usr/share/bison/bison.simple 154 | ||
| 4727 | YYACCEPT /usr/share/bison/bison.simple 153 | ||
| 4773 | yyalloc /usr/share/bison/bison.simple 84 | 4728 | yyalloc /usr/share/bison/bison.simple 84 |
| 4729 | YYBACKUP /usr/share/bison/bison.simple /^#define YYBACKUP(Token, Value) \\$/ | ||
| 4730 | YYBISON y-src/cccp.c 4 | ||
| 4731 | YYBISON y-src/parse.c 4 | ||
| 4774 | yyclearin /usr/share/bison/bison.simple 150 | 4732 | yyclearin /usr/share/bison/bison.simple 150 |
| 4775 | yydebug /usr/share/bison/bison.simple 238 | 4733 | yydebug /usr/share/bison/bison.simple 238 |
| 4734 | YY_DECL_NON_LSP_VARIABLES /usr/share/bison/bison.simple 374 | ||
| 4735 | YY_DECL_VARIABLES /usr/share/bison/bison.simple 385 | ||
| 4736 | YY_DECL_VARIABLES /usr/share/bison/bison.simple 391 | ||
| 4737 | YYDPRINTF /usr/share/bison/bison.simple /^# define YYDPRINTF(Args) \\$/ | ||
| 4738 | YYDPRINTF /usr/share/bison/bison.simple /^# define YYDPRINTF(Args)$/ | ||
| 4739 | YYEMPTY /usr/share/bison/bison.simple 151 | ||
| 4740 | YYEOF /usr/share/bison/bison.simple 152 | ||
| 4741 | YYERRCODE /usr/share/bison/bison.simple 179 | ||
| 4776 | yyerrhandle /usr/share/bison/bison.simple 848 | 4742 | yyerrhandle /usr/share/bison/bison.simple 848 |
| 4777 | yyerrlab1 /usr/share/bison/bison.simple 823 | 4743 | yyerrlab1 /usr/share/bison/bison.simple 823 |
| 4778 | yyerrok /usr/share/bison/bison.simple 149 | 4744 | yyerrok /usr/share/bison/bison.simple 149 |
| 4745 | YYERROR /usr/share/bison/bison.simple 155 | ||
| 4779 | yyerror y-src/cccp.y /^yyerror (s)$/ | 4746 | yyerror y-src/cccp.y /^yyerror (s)$/ |
| 4780 | yyerrstatus /usr/share/bison/bison.simple 846 | 4747 | yyerrstatus /usr/share/bison/bison.simple 846 |
| 4748 | YYFAIL /usr/share/bison/bison.simple 159 | ||
| 4749 | YYFPRINTF /usr/share/bison/bison.simple 226 | ||
| 4750 | YYINITDEPTH /usr/share/bison/bison.simple 245 | ||
| 4751 | YYLEX /usr/share/bison/bison.simple 201 | ||
| 4752 | YYLEX /usr/share/bison/bison.simple 203 | ||
| 4753 | YYLEX /usr/share/bison/bison.simple 207 | ||
| 4754 | YYLEX /usr/share/bison/bison.simple 209 | ||
| 4755 | YYLEX /usr/share/bison/bison.simple 213 | ||
| 4781 | yylex y-src/cccp.y /^yylex ()$/ | 4756 | yylex y-src/cccp.y /^yylex ()$/ |
| 4782 | yyls /usr/share/bison/bison.simple 89 | 4757 | YYLLOC_DEFAULT /usr/share/bison/bison.simple /^# define YYLLOC_DEFAULT(Current, Rhs, N) \\$/ |
| 4783 | yylsp /usr/share/bison/bison.simple 748 | 4758 | yylsp /usr/share/bison/bison.simple 748 |
| 4784 | yylsp /usr/share/bison/bison.simple 921 | 4759 | yylsp /usr/share/bison/bison.simple 921 |
| 4785 | yymemcpy /usr/share/bison/bison.simple /^yymemcpy (char *yyto, const char *yyfrom, YYSIZE_T/ | 4760 | yyls /usr/share/bison/bison.simple 89 |
| 4761 | YYMAXDEPTH /usr/share/bison/bison.simple 256 | ||
| 4762 | YYMAXDEPTH /usr/share/bison/bison.simple 260 | ||
| 4786 | yymemcpy /usr/share/bison/bison.simple 265 | 4763 | yymemcpy /usr/share/bison/bison.simple 265 |
| 4764 | yymemcpy /usr/share/bison/bison.simple /^yymemcpy (char *yyto, const char *yyfrom, YYSIZE_T/ | ||
| 4765 | yynewstate /usr/share/bison/bison.simple 763 | ||
| 4766 | yynewstate /usr/share/bison/bison.simple 925 | ||
| 4787 | yyn /usr/share/bison/bison.simple 755 | 4767 | yyn /usr/share/bison/bison.simple 755 |
| 4788 | yyn /usr/share/bison/bison.simple 861 | 4768 | yyn /usr/share/bison/bison.simple 861 |
| 4789 | yyn /usr/share/bison/bison.simple 895 | 4769 | yyn /usr/share/bison/bison.simple 895 |
| 4790 | yyn /usr/share/bison/bison.simple 903 | 4770 | yyn /usr/share/bison/bison.simple 903 |
| 4791 | yynewstate /usr/share/bison/bison.simple 763 | 4771 | YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 351 |
| 4792 | yynewstate /usr/share/bison/bison.simple 925 | 4772 | YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 354 |
| 4773 | YYPARSE_PARAM_ARG /usr/share/bison/bison.simple 358 | ||
| 4774 | YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 352 | ||
| 4775 | YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 355 | ||
| 4776 | YYPARSE_PARAM_DECL /usr/share/bison/bison.simple 359 | ||
| 4793 | yyparse /usr/share/bison/bison.simple /^yyparse (YYPARSE_PARAM_ARG)$/ | 4777 | yyparse /usr/share/bison/bison.simple /^yyparse (YYPARSE_PARAM_ARG)$/ |
| 4778 | YYPOPSTACK /usr/share/bison/bison.simple 445 | ||
| 4779 | YYPOPSTACK /usr/share/bison/bison.simple 447 | ||
| 4780 | YYRECOVERING /usr/share/bison/bison.simple /^#define YYRECOVERING() (!!yyerrstatus)$/ | ||
| 4794 | yyresult /usr/share/bison/bison.simple 932 | 4781 | yyresult /usr/share/bison/bison.simple 932 |
| 4795 | yyresult /usr/share/bison/bison.simple 939 | 4782 | yyresult /usr/share/bison/bison.simple 939 |
| 4796 | yyresult /usr/share/bison/bison.simple 947 | 4783 | yyresult /usr/share/bison/bison.simple 947 |
| 4797 | yyreturn /usr/share/bison/bison.simple 933 | 4784 | yyreturn /usr/share/bison/bison.simple 933 |
| 4798 | yyreturn /usr/share/bison/bison.simple 940 | 4785 | yyreturn /usr/share/bison/bison.simple 940 |
| 4786 | YYSIZE_T /usr/share/bison/bison.simple 129 | ||
| 4787 | YYSIZE_T /usr/share/bison/bison.simple 132 | ||
| 4788 | YYSIZE_T /usr/share/bison/bison.simple 137 | ||
| 4789 | YYSIZE_T /usr/share/bison/bison.simple 141 | ||
| 4790 | YYSIZE_T /usr/share/bison/bison.simple 146 | ||
| 4791 | YYSIZE_T /usr/share/bison/bison.simple 52 | ||
| 4792 | YYSIZE_T /usr/share/bison/bison.simple 57 | ||
| 4793 | YYSIZE_T /usr/share/bison/bison.simple 72 | ||
| 4794 | YYSIZE_T /usr/share/bison/bison.simple 76 | ||
| 4799 | yyss /usr/share/bison/bison.simple 86 | 4795 | yyss /usr/share/bison/bison.simple 86 |
| 4796 | YYSTACK_ALLOC /usr/share/bison/bison.simple 51 | ||
| 4797 | YYSTACK_ALLOC /usr/share/bison/bison.simple 56 | ||
| 4798 | YYSTACK_ALLOC /usr/share/bison/bison.simple 60 | ||
| 4799 | YYSTACK_ALLOC /usr/share/bison/bison.simple 79 | ||
| 4800 | YYSTACK_BYTES /usr/share/bison/bison.simple /^# define YYSTACK_BYTES(N) \\$/ | ||
| 4801 | YYSTACK_FREE /usr/share/bison/bison.simple 80 | ||
| 4802 | YYSTACK_FREE /usr/share/bison/bison.simple /^# define YYSTACK_FREE(Ptr) do { \/* empty *\/; } wh/ | ||
| 4803 | YYSTACK_GAP_MAX /usr/share/bison/bison.simple 94 | ||
| 4804 | YYSTACK_RELOCATE /usr/share/bison/bison.simple 548 | ||
| 4805 | YYSTACK_RELOCATE /usr/share/bison/bison.simple /^# define YYSTACK_RELOCATE(Type, Stack) \\$/ | ||
| 4800 | yystate /usr/share/bison/bison.simple 757 | 4806 | yystate /usr/share/bison/bison.simple 757 |
| 4801 | yystate /usr/share/bison/bison.simple 761 | 4807 | yystate /usr/share/bison/bison.simple 761 |
| 4802 | yystate /usr/share/bison/bison.simple 875 | 4808 | yystate /usr/share/bison/bison.simple 875 |
| 4803 | yystate /usr/share/bison/bison.simple 924 | 4809 | yystate /usr/share/bison/bison.simple 924 |
| 4804 | yystpcpy /usr/share/bison/bison.simple /^yystpcpy (char *yydest, const char *yysrc)$/ | 4810 | YYSTD /usr/share/bison/bison.simple /^# define YYSTD(x) std::x$/ |
| 4811 | YYSTD /usr/share/bison/bison.simple /^# define YYSTD(x) x$/ | ||
| 4805 | yystpcpy /usr/share/bison/bison.simple 317 | 4812 | yystpcpy /usr/share/bison/bison.simple 317 |
| 4806 | yystrlen /usr/share/bison/bison.simple /^yystrlen (const char *yystr)$/ | 4813 | yystpcpy /usr/share/bison/bison.simple /^yystpcpy (char *yydest, const char *yysrc)$/ |
| 4807 | yystrlen /usr/share/bison/bison.simple 294 | 4814 | yystrlen /usr/share/bison/bison.simple 294 |
| 4808 | yyvs /usr/share/bison/bison.simple 87 | 4815 | yystrlen /usr/share/bison/bison.simple /^yystrlen (const char *yystr)$/ |
| 4816 | YYSTYPE y-src/parse.y 72 | ||
| 4817 | YYSTYPE y-src/parse.y 73 | ||
| 4818 | YYTERROR /usr/share/bison/bison.simple 178 | ||
| 4809 | yyvsp /usr/share/bison/bison.simple 746 | 4819 | yyvsp /usr/share/bison/bison.simple 746 |
| 4810 | yyvsp /usr/share/bison/bison.simple 919 | 4820 | yyvsp /usr/share/bison/bison.simple 919 |
| 4821 | yyvs /usr/share/bison/bison.simple 87 | ||
| 4811 | z c.c 144 | 4822 | z c.c 144 |
| 4812 | z c.c 164 | 4823 | z c.c 164 |
| 4813 | z cp-src/clheir.hpp 49 | 4824 | z cp-src/clheir.hpp 49 |
| 4814 | z cp-src/clheir.hpp 58 | 4825 | z cp-src/clheir.hpp 58 |
| 4826 | Z c-src/h.h 100 | ||
| 4827 | /Z ps-src/rfc1245.ps /^\/Z {$/ | ||
| 4815 | zzz tex-src/texinfo.tex /^\\def\\infoappendix{\\parsearg\\appendixzzz}$/ | 4828 | zzz tex-src/texinfo.tex /^\\def\\infoappendix{\\parsearg\\appendixzzz}$/ |
| 4816 | zzz tex-src/texinfo.tex /^\\def\\infochapter{\\parsearg\\chapterzzz}$/ | 4829 | zzz tex-src/texinfo.tex /^\\def\\infochapter{\\parsearg\\chapterzzz}$/ |
| 4817 | zzz tex-src/texinfo.tex /^\\def\\infosection{\\parsearg\\sectionzzz}$/ | 4830 | zzz tex-src/texinfo.tex /^\\def\\infosection{\\parsearg\\sectionzzz}$/ |
| @@ -4819,16 +4832,3 @@ zzz tex-src/texinfo.tex /^\\def\\infosubsection{\\parsearg\\subsectionzzz}$/ | |||
| 4819 | zzz tex-src/texinfo.tex /^\\def\\infosubsubsection{\\parsearg\\subsubsectionzzz}/ | 4832 | zzz tex-src/texinfo.tex /^\\def\\infosubsubsection{\\parsearg\\subsubsectionzzz}/ |
| 4820 | zzz tex-src/texinfo.tex /^\\outer\\def\\appendix{\\parsearg\\appendixzzz}$/ | 4833 | zzz tex-src/texinfo.tex /^\\outer\\def\\appendix{\\parsearg\\appendixzzz}$/ |
| 4821 | zzz tex-src/texinfo.tex /^\\outer\\def\\chapter{\\parsearg\\chapterzzz}$/ | 4834 | zzz tex-src/texinfo.tex /^\\outer\\def\\chapter{\\parsearg\\chapterzzz}$/ |
| 4822 | { tex-src/texinfo.tex /^\\let\\{=\\mylbrace$/ | ||
| 4823 | { tex-src/texinfo.tex /^\\let\\{=\\ptexlbrace$/ | ||
| 4824 | | tex-src/texinfo.tex /^\\def|{{\\tt \\char '174}}$/ | ||
| 4825 | | tex-src/texinfo.tex /^\\let|=\\normalverticalbar$/ | ||
| 4826 | } tex-src/texinfo.tex /^\\let\\}=\\myrbrace$/ | ||
| 4827 | } tex-src/texinfo.tex /^\\let\\}=\\ptexrbrace$/ | ||
| 4828 | ~ tex-src/texinfo.tex /^\\catcode `\\^=7 \\catcode `\\_=8 \\catcode `\\~=13 \\let/ | ||
| 4829 | ~ tex-src/texinfo.tex /^\\def~{{\\tt \\char '176}}$/ | ||
| 4830 | ~ tex-src/texinfo.tex /^\\let~=\\normaltilde$/ | ||
| 4831 | ~A cp-src/c.C /^A::~A() {}$/ | ||
| 4832 | ~B cp-src/c.C /^ ~B() {};$/ | ||
| 4833 | ~MDiagArray2 cp-src/MDiagArray2.h /^ ~MDiagArray2 (void) { }$/ | ||
| 4834 | ~generic_object cp-src/clheir.cpp /^generic_object::~generic_object(void)$/ | ||
diff --git a/test/manual/etags/CTAGS.good_update b/test/manual/etags/CTAGS.good_update index 22f7a4421e3..2e29a2cb93e 100644 --- a/test/manual/etags/CTAGS.good_update +++ b/test/manual/etags/CTAGS.good_update | |||
| @@ -607,7 +607,7 @@ FOR_EACH_ALIST_VALUE c-src/emacs/src/lisp.h /^#define FOR_EACH_ALIST_VALUE(head_ | |||
| 607 | FOR_EACH_TAIL c-src/emacs/src/lisp.h /^#define FOR_EACH_TAIL(hare, list, tortoise, n) \\$/ | 607 | FOR_EACH_TAIL c-src/emacs/src/lisp.h /^#define FOR_EACH_TAIL(hare, list, tortoise, n) \\$/ |
| 608 | FRAMEP c-src/emacs/src/lisp.h /^FRAMEP (Lisp_Object a)$/ | 608 | FRAMEP c-src/emacs/src/lisp.h /^FRAMEP (Lisp_Object a)$/ |
| 609 | FRC make-src/Makefile /^FRC:;$/ | 609 | FRC make-src/Makefile /^FRC:;$/ |
| 610 | FREEFLOOD c-src/emacs/src/gmalloc.c 1863 | 610 | FREEFLOOD c-src/emacs/src/gmalloc.c 1866 |
| 611 | FSRC make-src/Makefile /^FSRC=entry.for entry.strange_suffix entry.strange$/ | 611 | FSRC make-src/Makefile /^FSRC=entry.for entry.strange_suffix entry.strange$/ |
| 612 | FUN0 y-src/parse.y /^yylex FUN0()$/ | 612 | FUN0 y-src/parse.y /^yylex FUN0()$/ |
| 613 | FUN1 y-src/parse.y /^str_to_col FUN1(char **,str)$/ | 613 | FUN1 y-src/parse.y /^str_to_col FUN1(char **,str)$/ |
| @@ -953,12 +953,12 @@ Lua_help c-src/etags.c 600 | |||
| 953 | Lua_suffixes c-src/etags.c 598 | 953 | Lua_suffixes c-src/etags.c 598 |
| 954 | M ruby-src/test1.ru /^module A::M; end$/ | 954 | M ruby-src/test1.ru /^module A::M; end$/ |
| 955 | MAGENTA cp-src/screen.hpp 17 | 955 | MAGENTA cp-src/screen.hpp 17 |
| 956 | MAGICBYTE c-src/emacs/src/gmalloc.c 1861 | 956 | MAGICBYTE c-src/emacs/src/gmalloc.c 1864 |
| 957 | MAGICFREE c-src/emacs/src/gmalloc.c 1860 | 957 | MAGICFREE c-src/emacs/src/gmalloc.c 1863 |
| 958 | MAGICWORD c-src/emacs/src/gmalloc.c 1859 | 958 | MAGICWORD c-src/emacs/src/gmalloc.c 1862 |
| 959 | MAKE make-src/Makefile /^MAKE:=$(MAKE) --no-print-directory$/ | 959 | MAKE make-src/Makefile /^MAKE:=$(MAKE) --no-print-directory$/ |
| 960 | MAKESRC make-src/Makefile /^MAKESRC=Makefile$/ | 960 | MAKESRC make-src/Makefile /^MAKESRC=Makefile$/ |
| 961 | MALLOCFLOOD c-src/emacs/src/gmalloc.c 1862 | 961 | MALLOCFLOOD c-src/emacs/src/gmalloc.c 1865 |
| 962 | MANY c-src/emacs/src/lisp.h 2833 | 962 | MANY c-src/emacs/src/lisp.h 2833 |
| 963 | MARKERP c-src/emacs/src/lisp.h /^# define MARKERP(x) lisp_h_MARKERP (x)$/ | 963 | MARKERP c-src/emacs/src/lisp.h /^# define MARKERP(x) lisp_h_MARKERP (x)$/ |
| 964 | MAXPATHLEN c-src/etags.c 115 | 964 | MAXPATHLEN c-src/etags.c 115 |
| @@ -1734,7 +1734,7 @@ __malloc_extra_blocks c-src/emacs/src/gmalloc.c 382 | |||
| 1734 | __malloc_initialize c-src/emacs/src/gmalloc.c /^__malloc_initialize (void)$/ | 1734 | __malloc_initialize c-src/emacs/src/gmalloc.c /^__malloc_initialize (void)$/ |
| 1735 | __malloc_initialized c-src/emacs/src/gmalloc.c 380 | 1735 | __malloc_initialized c-src/emacs/src/gmalloc.c 380 |
| 1736 | __repr__ pyt-src/server.py /^ def __repr__(self):$/ | 1736 | __repr__ pyt-src/server.py /^ def __repr__(self):$/ |
| 1737 | __sbrk c-src/emacs/src/gmalloc.c 1516 | 1737 | __sbrk c-src/emacs/src/gmalloc.c 1518 |
| 1738 | __str__ pyt-src/server.py /^ def __str__(self):$/ | 1738 | __str__ pyt-src/server.py /^ def __str__(self):$/ |
| 1739 | __up c.c 160 | 1739 | __up c.c 160 |
| 1740 | _aligned_blocks c-src/emacs/src/gmalloc.c 1006 | 1740 | _aligned_blocks c-src/emacs/src/gmalloc.c 1006 |
| @@ -1869,7 +1869,7 @@ align c-src/emacs/src/gmalloc.c /^align (size_t size)$/ | |||
| 1869 | alignas c-src/emacs/src/lisp.h /^# define alignas(alignment) \/* empty *\/$/ | 1869 | alignas c-src/emacs/src/lisp.h /^# define alignas(alignment) \/* empty *\/$/ |
| 1870 | aligned c-src/emacs/src/gmalloc.c 199 | 1870 | aligned c-src/emacs/src/gmalloc.c 199 |
| 1871 | aligned_alloc c-src/emacs/src/gmalloc.c /^aligned_alloc (size_t alignment, size_t size)$/ | 1871 | aligned_alloc c-src/emacs/src/gmalloc.c /^aligned_alloc (size_t alignment, size_t size)$/ |
| 1872 | aligned_alloc c-src/emacs/src/gmalloc.c 1722 | 1872 | aligned_alloc c-src/emacs/src/gmalloc.c 1725 |
| 1873 | aligned_alloc c-src/emacs/src/gmalloc.c 71 | 1873 | aligned_alloc c-src/emacs/src/gmalloc.c 71 |
| 1874 | alignlist c-src/emacs/src/gmalloc.c 196 | 1874 | alignlist c-src/emacs/src/gmalloc.c 196 |
| 1875 | alive cp-src/conway.hpp 7 | 1875 | alive cp-src/conway.hpp 7 |
| @@ -2073,7 +2073,7 @@ cacheLRUEntry_s c.c 172 | |||
| 2073 | cacheLRUEntry_t c.c 177 | 2073 | cacheLRUEntry_t c.c 177 |
| 2074 | calculate_goal_info merc-src/accumulator.m /^:- pred calculate_goal_info(hlds_goal_expr::in, hl/ | 2074 | calculate_goal_info merc-src/accumulator.m /^:- pred calculate_goal_info(hlds_goal_expr::in, hl/ |
| 2075 | calloc c-src/emacs/src/gmalloc.c /^calloc (size_t nmemb, size_t size)$/ | 2075 | calloc c-src/emacs/src/gmalloc.c /^calloc (size_t nmemb, size_t size)$/ |
| 2076 | calloc c-src/emacs/src/gmalloc.c 1721 | 2076 | calloc c-src/emacs/src/gmalloc.c 1724 |
| 2077 | calloc c-src/emacs/src/gmalloc.c 66 | 2077 | calloc c-src/emacs/src/gmalloc.c 66 |
| 2078 | calloc c-src/emacs/src/gmalloc.c 70 | 2078 | calloc c-src/emacs/src/gmalloc.c 70 |
| 2079 | can_be_null c-src/emacs/src/regex.h 370 | 2079 | can_be_null c-src/emacs/src/regex.h 370 |
| @@ -2703,7 +2703,7 @@ frag c-src/emacs/src/gmalloc.c 152 | |||
| 2703 | frame_local c-src/emacs/src/lisp.h 2341 | 2703 | frame_local c-src/emacs/src/lisp.h 2341 |
| 2704 | free c-src/emacs/src/gmalloc.c /^free (void *ptr)$/ | 2704 | free c-src/emacs/src/gmalloc.c /^free (void *ptr)$/ |
| 2705 | free c-src/emacs/src/gmalloc.c 166 | 2705 | free c-src/emacs/src/gmalloc.c 166 |
| 2706 | free c-src/emacs/src/gmalloc.c 1723 | 2706 | free c-src/emacs/src/gmalloc.c 1726 |
| 2707 | free c-src/emacs/src/gmalloc.c 67 | 2707 | free c-src/emacs/src/gmalloc.c 67 |
| 2708 | free c-src/emacs/src/gmalloc.c 72 | 2708 | free c-src/emacs/src/gmalloc.c 72 |
| 2709 | free_fdesc c-src/etags.c /^free_fdesc (register fdesc *fdp)$/ | 2709 | free_fdesc c-src/etags.c /^free_fdesc (register fdesc *fdp)$/ |
| @@ -2814,7 +2814,7 @@ hash_table_test c-src/emacs/src/lisp.h 1805 | |||
| 2814 | hashfn c-src/emacs/src/lisp.h /^ EMACS_UINT (*hashfn) (struct hash_table_test *t,/ | 2814 | hashfn c-src/emacs/src/lisp.h /^ EMACS_UINT (*hashfn) (struct hash_table_test *t,/ |
| 2815 | hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}$/ | 2815 | hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}$/ |
| 2816 | hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}%$/ | 2816 | hat tex-src/texinfo.tex /^\\def\\hat{\\realbackslash hat}%$/ |
| 2817 | hdr c-src/emacs/src/gmalloc.c 1865 | 2817 | hdr c-src/emacs/src/gmalloc.c 1868 |
| 2818 | head_table c-src/emacs/src/keyboard.c 11027 | 2818 | head_table c-src/emacs/src/keyboard.c 11027 |
| 2819 | header c-src/emacs/src/lisp.h 1371 | 2819 | header c-src/emacs/src/lisp.h 1371 |
| 2820 | header c-src/emacs/src/lisp.h 1388 | 2820 | header c-src/emacs/src/lisp.h 1388 |
| @@ -3244,7 +3244,7 @@ mach_task_self c-src/machsyscalls.h /^SYSCALL (mach_task_self, -28,$/ | |||
| 3244 | mach_thread_self c-src/machsyscalls.h /^SYSCALL (mach_thread_self, -27,$/ | 3244 | mach_thread_self c-src/machsyscalls.h /^SYSCALL (mach_thread_self, -27,$/ |
| 3245 | macheader tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ | 3245 | macheader tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ |
| 3246 | macx\defmacheader tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ | 3246 | macx\defmacheader tex-src/texinfo.tex /^\\def\\defmac{\\defparsebody\\Edefmac\\defmacx\\defmache/ |
| 3247 | magic c-src/emacs/src/gmalloc.c 1868 | 3247 | magic c-src/emacs/src/gmalloc.c 1871 |
| 3248 | mainmagstep tex-src/texinfo.tex /^\\let\\mainmagstep=\\magstep1$/ | 3248 | mainmagstep tex-src/texinfo.tex /^\\let\\mainmagstep=\\magstep1$/ |
| 3249 | mainmagstep tex-src/texinfo.tex /^\\let\\mainmagstep=\\magstephalf$/ | 3249 | mainmagstep tex-src/texinfo.tex /^\\let\\mainmagstep=\\magstephalf$/ |
| 3250 | maintaining.info make-src/Makefile /^maintaining.info: maintaining.texi$/ | 3250 | maintaining.info make-src/Makefile /^maintaining.info: maintaining.texi$/ |
| @@ -3272,7 +3272,7 @@ make_uninit_sub_char_table c-src/emacs/src/lisp.h /^make_uninit_sub_char_table ( | |||
| 3272 | make_uninit_vector c-src/emacs/src/lisp.h /^make_uninit_vector (ptrdiff_t size)$/ | 3272 | make_uninit_vector c-src/emacs/src/lisp.h /^make_uninit_vector (ptrdiff_t size)$/ |
| 3273 | malloc c-src/emacs/src/gmalloc.c /^extern void *malloc (size_t size) ATTRIBUTE_MALLOC/ | 3273 | malloc c-src/emacs/src/gmalloc.c /^extern void *malloc (size_t size) ATTRIBUTE_MALLOC/ |
| 3274 | malloc c-src/emacs/src/gmalloc.c /^malloc (size_t size)$/ | 3274 | malloc c-src/emacs/src/gmalloc.c /^malloc (size_t size)$/ |
| 3275 | malloc c-src/emacs/src/gmalloc.c 1719 | 3275 | malloc c-src/emacs/src/gmalloc.c 1722 |
| 3276 | malloc c-src/emacs/src/gmalloc.c 64 | 3276 | malloc c-src/emacs/src/gmalloc.c 64 |
| 3277 | malloc c-src/emacs/src/gmalloc.c 68 | 3277 | malloc c-src/emacs/src/gmalloc.c 68 |
| 3278 | malloc_atfork_handler_child c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_child (void)$/ | 3278 | malloc_atfork_handler_child c-src/emacs/src/gmalloc.c /^malloc_atfork_handler_child (void)$/ |
| @@ -3305,7 +3305,7 @@ maybe_gc c-src/emacs/src/lisp.h /^maybe_gc (void)$/ | |||
| 3305 | mcCSC cp-src/c.C 6 | 3305 | mcCSC cp-src/c.C 6 |
| 3306 | mcheck c-src/emacs/src/gmalloc.c /^mcheck (void (*func) (enum mcheck_status))$/ | 3306 | mcheck c-src/emacs/src/gmalloc.c /^mcheck (void (*func) (enum mcheck_status))$/ |
| 3307 | mcheck_status c-src/emacs/src/gmalloc.c 283 | 3307 | mcheck_status c-src/emacs/src/gmalloc.c 283 |
| 3308 | mcheck_used c-src/emacs/src/gmalloc.c 2017 | 3308 | mcheck_used c-src/emacs/src/gmalloc.c 2020 |
| 3309 | mdbcomp merc-src/accumulator.m /^:- import_module mdbcomp.$/ | 3309 | mdbcomp merc-src/accumulator.m /^:- import_module mdbcomp.$/ |
| 3310 | me22b lua-src/test.lua /^ local function test.me22b (one)$/ | 3310 | me22b lua-src/test.lua /^ local function test.me22b (one)$/ |
| 3311 | me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ | 3311 | me_22a lua-src/test.lua /^ function test.me_22a(one, two)$/ |
| @@ -3639,7 +3639,7 @@ pagealignmacro tex-src/texinfo.tex /^\\global\\let\\pagealignmacro=\\chappager$/ | |||
| 3639 | pagealignmacro tex-src/texinfo.tex /^\\global\\let\\pagealignmacro=\\chappager}$/ | 3639 | pagealignmacro tex-src/texinfo.tex /^\\global\\let\\pagealignmacro=\\chappager}$/ |
| 3640 | pagebody tex-src/texinfo.tex /^\\def\\pagebody#1{\\vbox to\\pageheight{\\boxmaxdepth=\\/ | 3640 | pagebody tex-src/texinfo.tex /^\\def\\pagebody#1{\\vbox to\\pageheight{\\boxmaxdepth=\\/ |
| 3641 | pagecontents tex-src/texinfo.tex /^\\gdef\\pagecontents#1{\\ifvoid\\topins\\else\\unvbox\\to/ | 3641 | pagecontents tex-src/texinfo.tex /^\\gdef\\pagecontents#1{\\ifvoid\\topins\\else\\unvbox\\to/ |
| 3642 | pagesize c-src/emacs/src/gmalloc.c 1707 | 3642 | pagesize c-src/emacs/src/gmalloc.c 1710 |
| 3643 | pagesofar tex-src/texinfo.tex /^\\def\\pagesofar{\\unvbox\\partialpage %$/ | 3643 | pagesofar tex-src/texinfo.tex /^\\def\\pagesofar{\\unvbox\\partialpage %$/ |
| 3644 | pair merc-src/accumulator.m /^:- import_module pair.$/ | 3644 | pair merc-src/accumulator.m /^:- import_module pair.$/ |
| 3645 | par tex-src/texinfo.tex /^\\let\\par=\\lisppar$/ | 3645 | par tex-src/texinfo.tex /^\\let\\par=\\lisppar$/ |
| @@ -3854,7 +3854,7 @@ readauxfile tex-src/texinfo.tex /^\\def\\readauxfile{%$/ | |||
| 3854 | readline c-src/etags.c /^readline (linebuffer *lbp, FILE *stream)$/ | 3854 | readline c-src/etags.c /^readline (linebuffer *lbp, FILE *stream)$/ |
| 3855 | readline_internal c-src/etags.c /^readline_internal (linebuffer *lbp, register FILE / | 3855 | readline_internal c-src/etags.c /^readline_internal (linebuffer *lbp, register FILE / |
| 3856 | realloc c-src/emacs/src/gmalloc.c /^realloc (void *ptr, size_t size)$/ | 3856 | realloc c-src/emacs/src/gmalloc.c /^realloc (void *ptr, size_t size)$/ |
| 3857 | realloc c-src/emacs/src/gmalloc.c 1720 | 3857 | realloc c-src/emacs/src/gmalloc.c 1723 |
| 3858 | realloc c-src/emacs/src/gmalloc.c 65 | 3858 | realloc c-src/emacs/src/gmalloc.c 65 |
| 3859 | realloc c-src/emacs/src/gmalloc.c 69 | 3859 | realloc c-src/emacs/src/gmalloc.c 69 |
| 3860 | reallochook c-src/emacs/src/gmalloc.c /^reallochook (void *ptr, size_t size)$/ | 3860 | reallochook c-src/emacs/src/gmalloc.c /^reallochook (void *ptr, size_t size)$/ |
| @@ -4078,7 +4078,7 @@ site cp-src/conway.hpp /^ site(int xi, int yi): x(xi), y(yi), alive(0) {/ | |||
| 4078 | site cp-src/conway.hpp 5 | 4078 | site cp-src/conway.hpp 5 |
| 4079 | size c-src/emacs/src/gmalloc.c 156 | 4079 | size c-src/emacs/src/gmalloc.c 156 |
| 4080 | size c-src/emacs/src/gmalloc.c 163 | 4080 | size c-src/emacs/src/gmalloc.c 163 |
| 4081 | size c-src/emacs/src/gmalloc.c 1867 | 4081 | size c-src/emacs/src/gmalloc.c 1870 |
| 4082 | size c-src/emacs/src/lisp.h 1364 | 4082 | size c-src/emacs/src/lisp.h 1364 |
| 4083 | size c-src/emacs/src/lisp.h 1390 | 4083 | size c-src/emacs/src/lisp.h 1390 |
| 4084 | size c-src/etags.c 236 | 4084 | size c-src/etags.c 236 |
diff --git a/test/manual/etags/ETAGS.good_1 b/test/manual/etags/ETAGS.good_1 index 92eb72523dc..9ed4ac0477c 100644 --- a/test/manual/etags/ETAGS.good_1 +++ b/test/manual/etags/ETAGS.good_1 | |||
| @@ -689,39 +689,39 @@ weak_alias 1279,38850 | |||
| 689 | _realloc_internal_nolock 1322,40382 | 689 | _realloc_internal_nolock 1322,40382 |
| 690 | _realloc_internal 1438,43636 | 690 | _realloc_internal 1438,43636 |
| 691 | realloc 1450,43799 | 691 | realloc 1450,43799 |
| 692 | calloc 1481,44973 | 692 | calloc 1482,44981 |
| 693 | #define __sbrk 1516,46115 | 693 | #define __sbrk 1518,46131 |
| 694 | __default_morecore 1528,46584 | 694 | __default_morecore 1530,46600 |
| 695 | aligned_alloc 1560,47593 | 695 | aligned_alloc 1563,47617 |
| 696 | memalign 1650,49775 | 696 | memalign 1653,49799 |
| 697 | posix_memalign 1659,49980 | 697 | posix_memalign 1662,50004 |
| 698 | static size_t pagesize;1707,51420 | 698 | static size_t pagesize;1710,51444 |
| 699 | valloc 1710,51452 | 699 | valloc 1713,51476 |
| 700 | #undef malloc1719,51593 | 700 | #undef malloc1722,51617 |
| 701 | #undef realloc1720,51607 | 701 | #undef realloc1723,51631 |
| 702 | #undef calloc1721,51622 | 702 | #undef calloc1724,51646 |
| 703 | #undef aligned_alloc1722,51636 | 703 | #undef aligned_alloc1725,51660 |
| 704 | #undef free1723,51657 | 704 | #undef free1726,51681 |
| 705 | hybrid_malloc 1740,52186 | 705 | hybrid_malloc 1743,52210 |
| 706 | hybrid_calloc 1748,52291 | 706 | hybrid_calloc 1751,52315 |
| 707 | hybrid_free 1756,52422 | 707 | hybrid_free 1759,52446 |
| 708 | hybrid_aligned_alloc 1769,52729 | 708 | hybrid_aligned_alloc 1772,52753 |
| 709 | hybrid_realloc 1784,53085 | 709 | hybrid_realloc 1787,53109 |
| 710 | hybrid_get_current_dir_name 1815,53898 | 710 | hybrid_get_current_dir_name 1818,53922 |
| 711 | #define MAGICWORD 1859,55335 | 711 | #define MAGICWORD 1862,55359 |
| 712 | #define MAGICFREE 1860,55390 | 712 | #define MAGICFREE 1863,55414 |
| 713 | #define MAGICBYTE 1861,55445 | 713 | #define MAGICBYTE 1864,55469 |
| 714 | #define MALLOCFLOOD 1862,55477 | 714 | #define MALLOCFLOOD 1865,55501 |
| 715 | #define FREEFLOOD 1863,55511 | 715 | #define FREEFLOOD 1866,55535 |
| 716 | struct hdr1865,55544 | 716 | struct hdr1868,55568 |
| 717 | checkhdr 1872,55710 | 717 | checkhdr 1875,55734 |
| 718 | freehook 1896,56151 | 718 | freehook 1899,56175 |
| 719 | mallochook 1932,56933 | 719 | mallochook 1935,56957 |
| 720 | reallochook 1949,57272 | 720 | reallochook 1952,57296 |
| 721 | mabort 1983,58030 | 721 | mabort 1986,58054 |
| 722 | static int mcheck_used 2017,58715 | 722 | static int mcheck_used 2020,58739 |
| 723 | mcheck 2020,58748 | 723 | mcheck 2023,58772 |
| 724 | mprobe 2040,59267 | 724 | mprobe 2043,59291 |
| 725 | 725 | ||
| 726 | c-src/emacs/src/regex.h,3761 | 726 | c-src/emacs/src/regex.h,3761 |
| 727 | #define _REGEX_H 21,837 | 727 | #define _REGEX_H 21,837 |
diff --git a/test/manual/etags/ETAGS.good_2 b/test/manual/etags/ETAGS.good_2 index efda990e2eb..85b9503c035 100644 --- a/test/manual/etags/ETAGS.good_2 +++ b/test/manual/etags/ETAGS.good_2 | |||
| @@ -806,54 +806,54 @@ void *(*__realloc_hook)__realloc_hook1313,39971 | |||
| 806 | _realloc_internal_nolock 1322,40382 | 806 | _realloc_internal_nolock 1322,40382 |
| 807 | _realloc_internal 1438,43636 | 807 | _realloc_internal 1438,43636 |
| 808 | realloc 1450,43799 | 808 | realloc 1450,43799 |
| 809 | calloc 1481,44973 | 809 | calloc 1482,44981 |
| 810 | #define __sbrk 1516,46115 | 810 | #define __sbrk 1518,46131 |
| 811 | extern void *__sbrk __sbrk1521,46320 | 811 | extern void *__sbrk __sbrk1523,46336 |
| 812 | __default_morecore 1528,46584 | 812 | __default_morecore 1530,46600 |
| 813 | void *(*__memalign_hook)__memalign_hook1557,47527 | 813 | void *(*__memalign_hook)__memalign_hook1560,47551 |
| 814 | aligned_alloc 1560,47593 | 814 | aligned_alloc 1563,47617 |
| 815 | memalign 1650,49775 | 815 | memalign 1653,49799 |
| 816 | posix_memalign 1659,49980 | 816 | posix_memalign 1662,50004 |
| 817 | extern void *valloc valloc1699,51243 | 817 | extern void *valloc valloc1702,51267 |
| 818 | extern int getpagesize 1704,51381 | 818 | extern int getpagesize 1707,51405 |
| 819 | static size_t pagesize;1707,51420 | 819 | static size_t pagesize;1710,51444 |
| 820 | valloc 1710,51452 | 820 | valloc 1713,51476 |
| 821 | #undef malloc1719,51593 | 821 | #undef malloc1722,51617 |
| 822 | #undef realloc1720,51607 | 822 | #undef realloc1723,51631 |
| 823 | #undef calloc1721,51622 | 823 | #undef calloc1724,51646 |
| 824 | #undef aligned_alloc1722,51636 | 824 | #undef aligned_alloc1725,51660 |
| 825 | #undef free1723,51657 | 825 | #undef free1726,51681 |
| 826 | extern void *malloc malloc1726,51712 | 826 | extern void *malloc malloc1729,51736 |
| 827 | extern void *realloc realloc1727,51747 | 827 | extern void *realloc realloc1730,51771 |
| 828 | extern void *calloc calloc1728,51794 | 828 | extern void *calloc calloc1731,51818 |
| 829 | extern void free 1729,51843 | 829 | extern void free 1732,51867 |
| 830 | extern void *aligned_alloc aligned_alloc1731,51899 | 830 | extern void *aligned_alloc aligned_alloc1734,51923 |
| 831 | extern int posix_memalign 1733,51993 | 831 | extern int posix_memalign 1736,52017 |
| 832 | hybrid_malloc 1740,52186 | 832 | hybrid_malloc 1743,52210 |
| 833 | hybrid_calloc 1748,52291 | 833 | hybrid_calloc 1751,52315 |
| 834 | hybrid_free 1756,52422 | 834 | hybrid_free 1759,52446 |
| 835 | hybrid_aligned_alloc 1769,52729 | 835 | hybrid_aligned_alloc 1772,52753 |
| 836 | hybrid_realloc 1784,53085 | 836 | hybrid_realloc 1787,53109 |
| 837 | char *gget_current_dir_name gget_current_dir_name1812,53854 | 837 | char *gget_current_dir_name gget_current_dir_name1815,53878 |
| 838 | hybrid_get_current_dir_name 1815,53898 | 838 | hybrid_get_current_dir_name 1818,53922 |
| 839 | static void (*old_free_hook)old_free_hook1851,55050 | 839 | static void (*old_free_hook)old_free_hook1854,55074 |
| 840 | static void *(*old_malloc_hook)old_malloc_hook1852,55092 | 840 | static void *(*old_malloc_hook)old_malloc_hook1855,55116 |
| 841 | static void *(*old_realloc_hook)old_realloc_hook1853,55139 | 841 | static void *(*old_realloc_hook)old_realloc_hook1856,55163 |
| 842 | static void (*abortfunc)abortfunc1856,55253 | 842 | static void (*abortfunc)abortfunc1859,55277 |
| 843 | #define MAGICWORD 1859,55335 | 843 | #define MAGICWORD 1862,55359 |
| 844 | #define MAGICFREE 1860,55390 | 844 | #define MAGICFREE 1863,55414 |
| 845 | #define MAGICBYTE 1861,55445 | 845 | #define MAGICBYTE 1864,55469 |
| 846 | #define MALLOCFLOOD 1862,55477 | 846 | #define MALLOCFLOOD 1865,55501 |
| 847 | #define FREEFLOOD 1863,55511 | 847 | #define FREEFLOOD 1866,55535 |
| 848 | struct hdr1865,55544 | 848 | struct hdr1868,55568 |
| 849 | checkhdr 1872,55710 | 849 | checkhdr 1875,55734 |
| 850 | freehook 1896,56151 | 850 | freehook 1899,56175 |
| 851 | mallochook 1932,56933 | 851 | mallochook 1935,56957 |
| 852 | reallochook 1949,57272 | 852 | reallochook 1952,57296 |
| 853 | mabort 1983,58030 | 853 | mabort 1986,58054 |
| 854 | static int mcheck_used 2017,58715 | 854 | static int mcheck_used 2020,58739 |
| 855 | mcheck 2020,58748 | 855 | mcheck 2023,58772 |
| 856 | mprobe 2040,59267 | 856 | mprobe 2043,59291 |
| 857 | 857 | ||
| 858 | c-src/emacs/src/regex.h,4576 | 858 | c-src/emacs/src/regex.h,4576 |
| 859 | #define _REGEX_H 21,837 | 859 | #define _REGEX_H 21,837 |
diff --git a/test/manual/etags/ETAGS.good_3 b/test/manual/etags/ETAGS.good_3 index 34d2fea1765..e34aab88d4b 100644 --- a/test/manual/etags/ETAGS.good_3 +++ b/test/manual/etags/ETAGS.good_3 | |||
| @@ -779,41 +779,41 @@ weak_alias 1279,38850 | |||
| 779 | _realloc_internal_nolock 1322,40382 | 779 | _realloc_internal_nolock 1322,40382 |
| 780 | _realloc_internal 1438,43636 | 780 | _realloc_internal 1438,43636 |
| 781 | realloc 1450,43799 | 781 | realloc 1450,43799 |
| 782 | calloc 1481,44973 | 782 | calloc 1482,44981 |
| 783 | #define __sbrk 1516,46115 | 783 | #define __sbrk 1518,46131 |
| 784 | __default_morecore 1528,46584 | 784 | __default_morecore 1530,46600 |
| 785 | aligned_alloc 1560,47593 | 785 | aligned_alloc 1563,47617 |
| 786 | memalign 1650,49775 | 786 | memalign 1653,49799 |
| 787 | posix_memalign 1659,49980 | 787 | posix_memalign 1662,50004 |
| 788 | static size_t pagesize;1707,51420 | 788 | static size_t pagesize;1710,51444 |
| 789 | valloc 1710,51452 | 789 | valloc 1713,51476 |
| 790 | #undef malloc1719,51593 | 790 | #undef malloc1722,51617 |
| 791 | #undef realloc1720,51607 | 791 | #undef realloc1723,51631 |
| 792 | #undef calloc1721,51622 | 792 | #undef calloc1724,51646 |
| 793 | #undef aligned_alloc1722,51636 | 793 | #undef aligned_alloc1725,51660 |
| 794 | #undef free1723,51657 | 794 | #undef free1726,51681 |
| 795 | hybrid_malloc 1740,52186 | 795 | hybrid_malloc 1743,52210 |
| 796 | hybrid_calloc 1748,52291 | 796 | hybrid_calloc 1751,52315 |
| 797 | hybrid_free 1756,52422 | 797 | hybrid_free 1759,52446 |
| 798 | hybrid_aligned_alloc 1769,52729 | 798 | hybrid_aligned_alloc 1772,52753 |
| 799 | hybrid_realloc 1784,53085 | 799 | hybrid_realloc 1787,53109 |
| 800 | hybrid_get_current_dir_name 1815,53898 | 800 | hybrid_get_current_dir_name 1818,53922 |
| 801 | #define MAGICWORD 1859,55335 | 801 | #define MAGICWORD 1862,55359 |
| 802 | #define MAGICFREE 1860,55390 | 802 | #define MAGICFREE 1863,55414 |
| 803 | #define MAGICBYTE 1861,55445 | 803 | #define MAGICBYTE 1864,55469 |
| 804 | #define MALLOCFLOOD 1862,55477 | 804 | #define MALLOCFLOOD 1865,55501 |
| 805 | #define FREEFLOOD 1863,55511 | 805 | #define FREEFLOOD 1866,55535 |
| 806 | struct hdr1865,55544 | 806 | struct hdr1868,55568 |
| 807 | size_t size;1867,55559 | 807 | size_t size;1870,55583 |
| 808 | size_t magic;1868,55613 | 808 | size_t magic;1871,55637 |
| 809 | checkhdr 1872,55710 | 809 | checkhdr 1875,55734 |
| 810 | freehook 1896,56151 | 810 | freehook 1899,56175 |
| 811 | mallochook 1932,56933 | 811 | mallochook 1935,56957 |
| 812 | reallochook 1949,57272 | 812 | reallochook 1952,57296 |
| 813 | mabort 1983,58030 | 813 | mabort 1986,58054 |
| 814 | static int mcheck_used 2017,58715 | 814 | static int mcheck_used 2020,58739 |
| 815 | mcheck 2020,58748 | 815 | mcheck 2023,58772 |
| 816 | mprobe 2040,59267 | 816 | mprobe 2043,59291 |
| 817 | 817 | ||
| 818 | c-src/emacs/src/regex.h,4485 | 818 | c-src/emacs/src/regex.h,4485 |
| 819 | #define _REGEX_H 21,837 | 819 | #define _REGEX_H 21,837 |
diff --git a/test/manual/etags/ETAGS.good_4 b/test/manual/etags/ETAGS.good_4 index 35417fa5b83..4c2283fccfb 100644 --- a/test/manual/etags/ETAGS.good_4 +++ b/test/manual/etags/ETAGS.good_4 | |||
| @@ -711,39 +711,39 @@ weak_alias 1279,38850 | |||
| 711 | _realloc_internal_nolock 1322,40382 | 711 | _realloc_internal_nolock 1322,40382 |
| 712 | _realloc_internal 1438,43636 | 712 | _realloc_internal 1438,43636 |
| 713 | realloc 1450,43799 | 713 | realloc 1450,43799 |
| 714 | calloc 1481,44973 | 714 | calloc 1482,44981 |
| 715 | #define __sbrk 1516,46115 | 715 | #define __sbrk 1518,46131 |
| 716 | __default_morecore 1528,46584 | 716 | __default_morecore 1530,46600 |
| 717 | aligned_alloc 1560,47593 | 717 | aligned_alloc 1563,47617 |
| 718 | memalign 1650,49775 | 718 | memalign 1653,49799 |
| 719 | posix_memalign 1659,49980 | 719 | posix_memalign 1662,50004 |
| 720 | static size_t pagesize;1707,51420 | 720 | static size_t pagesize;1710,51444 |
| 721 | valloc 1710,51452 | 721 | valloc 1713,51476 |
| 722 | #undef malloc1719,51593 | 722 | #undef malloc1722,51617 |
| 723 | #undef realloc1720,51607 | 723 | #undef realloc1723,51631 |
| 724 | #undef calloc1721,51622 | 724 | #undef calloc1724,51646 |
| 725 | #undef aligned_alloc1722,51636 | 725 | #undef aligned_alloc1725,51660 |
| 726 | #undef free1723,51657 | 726 | #undef free1726,51681 |
| 727 | hybrid_malloc 1740,52186 | 727 | hybrid_malloc 1743,52210 |
| 728 | hybrid_calloc 1748,52291 | 728 | hybrid_calloc 1751,52315 |
| 729 | hybrid_free 1756,52422 | 729 | hybrid_free 1759,52446 |
| 730 | hybrid_aligned_alloc 1769,52729 | 730 | hybrid_aligned_alloc 1772,52753 |
| 731 | hybrid_realloc 1784,53085 | 731 | hybrid_realloc 1787,53109 |
| 732 | hybrid_get_current_dir_name 1815,53898 | 732 | hybrid_get_current_dir_name 1818,53922 |
| 733 | #define MAGICWORD 1859,55335 | 733 | #define MAGICWORD 1862,55359 |
| 734 | #define MAGICFREE 1860,55390 | 734 | #define MAGICFREE 1863,55414 |
| 735 | #define MAGICBYTE 1861,55445 | 735 | #define MAGICBYTE 1864,55469 |
| 736 | #define MALLOCFLOOD 1862,55477 | 736 | #define MALLOCFLOOD 1865,55501 |
| 737 | #define FREEFLOOD 1863,55511 | 737 | #define FREEFLOOD 1866,55535 |
| 738 | struct hdr1865,55544 | 738 | struct hdr1868,55568 |
| 739 | checkhdr 1872,55710 | 739 | checkhdr 1875,55734 |
| 740 | freehook 1896,56151 | 740 | freehook 1899,56175 |
| 741 | mallochook 1932,56933 | 741 | mallochook 1935,56957 |
| 742 | reallochook 1949,57272 | 742 | reallochook 1952,57296 |
| 743 | mabort 1983,58030 | 743 | mabort 1986,58054 |
| 744 | static int mcheck_used 2017,58715 | 744 | static int mcheck_used 2020,58739 |
| 745 | mcheck 2020,58748 | 745 | mcheck 2023,58772 |
| 746 | mprobe 2040,59267 | 746 | mprobe 2043,59291 |
| 747 | 747 | ||
| 748 | c-src/emacs/src/regex.h,3761 | 748 | c-src/emacs/src/regex.h,3761 |
| 749 | #define _REGEX_H 21,837 | 749 | #define _REGEX_H 21,837 |
diff --git a/test/manual/etags/ETAGS.good_5 b/test/manual/etags/ETAGS.good_5 index 405c18abafd..aee69816ece 100644 --- a/test/manual/etags/ETAGS.good_5 +++ b/test/manual/etags/ETAGS.good_5 | |||
| @@ -918,56 +918,56 @@ void *(*__realloc_hook)__realloc_hook1313,39971 | |||
| 918 | _realloc_internal_nolock 1322,40382 | 918 | _realloc_internal_nolock 1322,40382 |
| 919 | _realloc_internal 1438,43636 | 919 | _realloc_internal 1438,43636 |
| 920 | realloc 1450,43799 | 920 | realloc 1450,43799 |
| 921 | calloc 1481,44973 | 921 | calloc 1482,44981 |
| 922 | #define __sbrk 1516,46115 | 922 | #define __sbrk 1518,46131 |
| 923 | extern void *__sbrk __sbrk1521,46320 | 923 | extern void *__sbrk __sbrk1523,46336 |
| 924 | __default_morecore 1528,46584 | 924 | __default_morecore 1530,46600 |
| 925 | void *(*__memalign_hook)__memalign_hook1557,47527 | 925 | void *(*__memalign_hook)__memalign_hook1560,47551 |
| 926 | aligned_alloc 1560,47593 | 926 | aligned_alloc 1563,47617 |
| 927 | memalign 1650,49775 | 927 | memalign 1653,49799 |
| 928 | posix_memalign 1659,49980 | 928 | posix_memalign 1662,50004 |
| 929 | extern void *valloc valloc1699,51243 | 929 | extern void *valloc valloc1702,51267 |
| 930 | extern int getpagesize 1704,51381 | 930 | extern int getpagesize 1707,51405 |
| 931 | static size_t pagesize;1707,51420 | 931 | static size_t pagesize;1710,51444 |
| 932 | valloc 1710,51452 | 932 | valloc 1713,51476 |
| 933 | #undef malloc1719,51593 | 933 | #undef malloc1722,51617 |
| 934 | #undef realloc1720,51607 | 934 | #undef realloc1723,51631 |
| 935 | #undef calloc1721,51622 | 935 | #undef calloc1724,51646 |
| 936 | #undef aligned_alloc1722,51636 | 936 | #undef aligned_alloc1725,51660 |
| 937 | #undef free1723,51657 | 937 | #undef free1726,51681 |
| 938 | extern void *malloc malloc1726,51712 | 938 | extern void *malloc malloc1729,51736 |
| 939 | extern void *realloc realloc1727,51747 | 939 | extern void *realloc realloc1730,51771 |
| 940 | extern void *calloc calloc1728,51794 | 940 | extern void *calloc calloc1731,51818 |
| 941 | extern void free 1729,51843 | 941 | extern void free 1732,51867 |
| 942 | extern void *aligned_alloc aligned_alloc1731,51899 | 942 | extern void *aligned_alloc aligned_alloc1734,51923 |
| 943 | extern int posix_memalign 1733,51993 | 943 | extern int posix_memalign 1736,52017 |
| 944 | hybrid_malloc 1740,52186 | 944 | hybrid_malloc 1743,52210 |
| 945 | hybrid_calloc 1748,52291 | 945 | hybrid_calloc 1751,52315 |
| 946 | hybrid_free 1756,52422 | 946 | hybrid_free 1759,52446 |
| 947 | hybrid_aligned_alloc 1769,52729 | 947 | hybrid_aligned_alloc 1772,52753 |
| 948 | hybrid_realloc 1784,53085 | 948 | hybrid_realloc 1787,53109 |
| 949 | char *gget_current_dir_name gget_current_dir_name1812,53854 | 949 | char *gget_current_dir_name gget_current_dir_name1815,53878 |
| 950 | hybrid_get_current_dir_name 1815,53898 | 950 | hybrid_get_current_dir_name 1818,53922 |
| 951 | static void (*old_free_hook)old_free_hook1851,55050 | 951 | static void (*old_free_hook)old_free_hook1854,55074 |
| 952 | static void *(*old_malloc_hook)old_malloc_hook1852,55092 | 952 | static void *(*old_malloc_hook)old_malloc_hook1855,55116 |
| 953 | static void *(*old_realloc_hook)old_realloc_hook1853,55139 | 953 | static void *(*old_realloc_hook)old_realloc_hook1856,55163 |
| 954 | static void (*abortfunc)abortfunc1856,55253 | 954 | static void (*abortfunc)abortfunc1859,55277 |
| 955 | #define MAGICWORD 1859,55335 | 955 | #define MAGICWORD 1862,55359 |
| 956 | #define MAGICFREE 1860,55390 | 956 | #define MAGICFREE 1863,55414 |
| 957 | #define MAGICBYTE 1861,55445 | 957 | #define MAGICBYTE 1864,55469 |
| 958 | #define MALLOCFLOOD 1862,55477 | 958 | #define MALLOCFLOOD 1865,55501 |
| 959 | #define FREEFLOOD 1863,55511 | 959 | #define FREEFLOOD 1866,55535 |
| 960 | struct hdr1865,55544 | 960 | struct hdr1868,55568 |
| 961 | size_t size;1867,55559 | 961 | size_t size;1870,55583 |
| 962 | size_t magic;1868,55613 | 962 | size_t magic;1871,55637 |
| 963 | checkhdr 1872,55710 | 963 | checkhdr 1875,55734 |
| 964 | freehook 1896,56151 | 964 | freehook 1899,56175 |
| 965 | mallochook 1932,56933 | 965 | mallochook 1935,56957 |
| 966 | reallochook 1949,57272 | 966 | reallochook 1952,57296 |
| 967 | mabort 1983,58030 | 967 | mabort 1986,58054 |
| 968 | static int mcheck_used 2017,58715 | 968 | static int mcheck_used 2020,58739 |
| 969 | mcheck 2020,58748 | 969 | mcheck 2023,58772 |
| 970 | mprobe 2040,59267 | 970 | mprobe 2043,59291 |
| 971 | 971 | ||
| 972 | c-src/emacs/src/regex.h,5300 | 972 | c-src/emacs/src/regex.h,5300 |
| 973 | #define _REGEX_H 21,837 | 973 | #define _REGEX_H 21,837 |
diff --git a/test/manual/etags/ETAGS.good_6 b/test/manual/etags/ETAGS.good_6 index f72b63ded92..f482a5d77ee 100644 --- a/test/manual/etags/ETAGS.good_6 +++ b/test/manual/etags/ETAGS.good_6 | |||
| @@ -918,56 +918,56 @@ void *(*__realloc_hook)__realloc_hook1313,39971 | |||
| 918 | _realloc_internal_nolock 1322,40382 | 918 | _realloc_internal_nolock 1322,40382 |
| 919 | _realloc_internal 1438,43636 | 919 | _realloc_internal 1438,43636 |
| 920 | realloc 1450,43799 | 920 | realloc 1450,43799 |
| 921 | calloc 1481,44973 | 921 | calloc 1482,44981 |
| 922 | #define __sbrk 1516,46115 | 922 | #define __sbrk 1518,46131 |
| 923 | extern void *__sbrk __sbrk1521,46320 | 923 | extern void *__sbrk __sbrk1523,46336 |
| 924 | __default_morecore 1528,46584 | 924 | __default_morecore 1530,46600 |
| 925 | void *(*__memalign_hook)__memalign_hook1557,47527 | 925 | void *(*__memalign_hook)__memalign_hook1560,47551 |
| 926 | aligned_alloc 1560,47593 | 926 | aligned_alloc 1563,47617 |
| 927 | memalign 1650,49775 | 927 | memalign 1653,49799 |
| 928 | posix_memalign 1659,49980 | 928 | posix_memalign 1662,50004 |
| 929 | extern void *valloc valloc1699,51243 | 929 | extern void *valloc valloc1702,51267 |
| 930 | extern int getpagesize 1704,51381 | 930 | extern int getpagesize 1707,51405 |
| 931 | static size_t pagesize;1707,51420 | 931 | static size_t pagesize;1710,51444 |
| 932 | valloc 1710,51452 | 932 | valloc 1713,51476 |
| 933 | #undef malloc1719,51593 | 933 | #undef malloc1722,51617 |
| 934 | #undef realloc1720,51607 | 934 | #undef realloc1723,51631 |
| 935 | #undef calloc1721,51622 | 935 | #undef calloc1724,51646 |
| 936 | #undef aligned_alloc1722,51636 | 936 | #undef aligned_alloc1725,51660 |
| 937 | #undef free1723,51657 | 937 | #undef free1726,51681 |
| 938 | extern void *malloc malloc1726,51712 | 938 | extern void *malloc malloc1729,51736 |
| 939 | extern void *realloc realloc1727,51747 | 939 | extern void *realloc realloc1730,51771 |
| 940 | extern void *calloc calloc1728,51794 | 940 | extern void *calloc calloc1731,51818 |
| 941 | extern void free 1729,51843 | 941 | extern void free 1732,51867 |
| 942 | extern void *aligned_alloc aligned_alloc1731,51899 | 942 | extern void *aligned_alloc aligned_alloc1734,51923 |
| 943 | extern int posix_memalign 1733,51993 | 943 | extern int posix_memalign 1736,52017 |
| 944 | hybrid_malloc 1740,52186 | 944 | hybrid_malloc 1743,52210 |
| 945 | hybrid_calloc 1748,52291 | 945 | hybrid_calloc 1751,52315 |
| 946 | hybrid_free 1756,52422 | 946 | hybrid_free 1759,52446 |
| 947 | hybrid_aligned_alloc 1769,52729 | 947 | hybrid_aligned_alloc 1772,52753 |
| 948 | hybrid_realloc 1784,53085 | 948 | hybrid_realloc 1787,53109 |
| 949 | char *gget_current_dir_name gget_current_dir_name1812,53854 | 949 | char *gget_current_dir_name gget_current_dir_name1815,53878 |
| 950 | hybrid_get_current_dir_name 1815,53898 | 950 | hybrid_get_current_dir_name 1818,53922 |
| 951 | static void (*old_free_hook)old_free_hook1851,55050 | 951 | static void (*old_free_hook)old_free_hook1854,55074 |
| 952 | static void *(*old_malloc_hook)old_malloc_hook1852,55092 | 952 | static void *(*old_malloc_hook)old_malloc_hook1855,55116 |
| 953 | static void *(*old_realloc_hook)old_realloc_hook1853,55139 | 953 | static void *(*old_realloc_hook)old_realloc_hook1856,55163 |
| 954 | static void (*abortfunc)abortfunc1856,55253 | 954 | static void (*abortfunc)abortfunc1859,55277 |
| 955 | #define MAGICWORD 1859,55335 | 955 | #define MAGICWORD 1862,55359 |
| 956 | #define MAGICFREE 1860,55390 | 956 | #define MAGICFREE 1863,55414 |
| 957 | #define MAGICBYTE 1861,55445 | 957 | #define MAGICBYTE 1864,55469 |
| 958 | #define MALLOCFLOOD 1862,55477 | 958 | #define MALLOCFLOOD 1865,55501 |
| 959 | #define FREEFLOOD 1863,55511 | 959 | #define FREEFLOOD 1866,55535 |
| 960 | struct hdr1865,55544 | 960 | struct hdr1868,55568 |
| 961 | size_t size;1867,55559 | 961 | size_t size;1870,55583 |
| 962 | size_t magic;1868,55613 | 962 | size_t magic;1871,55637 |
| 963 | checkhdr 1872,55710 | 963 | checkhdr 1875,55734 |
| 964 | freehook 1896,56151 | 964 | freehook 1899,56175 |
| 965 | mallochook 1932,56933 | 965 | mallochook 1935,56957 |
| 966 | reallochook 1949,57272 | 966 | reallochook 1952,57296 |
| 967 | mabort 1983,58030 | 967 | mabort 1986,58054 |
| 968 | static int mcheck_used 2017,58715 | 968 | static int mcheck_used 2020,58739 |
| 969 | mcheck 2020,58748 | 969 | mcheck 2023,58772 |
| 970 | mprobe 2040,59267 | 970 | mprobe 2043,59291 |
| 971 | 971 | ||
| 972 | c-src/emacs/src/regex.h,5300 | 972 | c-src/emacs/src/regex.h,5300 |
| 973 | #define _REGEX_H 21,837 | 973 | #define _REGEX_H 21,837 |
diff --git a/test/manual/etags/ETAGS.good_7 b/test/manual/etags/ETAGS.good_7 index 1e3e4a93bc1..24874ff46f9 100644 --- a/test/manual/etags/ETAGS.good_7 +++ b/test/manual/etags/ETAGS.good_7 | |||
| @@ -685,39 +685,39 @@ weak_alias 1279,38850 | |||
| 685 | _realloc_internal_nolock 1322,40382 | 685 | _realloc_internal_nolock 1322,40382 |
| 686 | _realloc_internal 1438,43636 | 686 | _realloc_internal 1438,43636 |
| 687 | realloc 1450,43799 | 687 | realloc 1450,43799 |
| 688 | calloc 1481,44973 | 688 | calloc 1482,44981 |
| 689 | #define __sbrk 1516,46115 | 689 | #define __sbrk 1518,46131 |
| 690 | __default_morecore 1528,46584 | 690 | __default_morecore 1530,46600 |
| 691 | aligned_alloc 1560,47593 | 691 | aligned_alloc 1563,47617 |
| 692 | memalign 1650,49775 | 692 | memalign 1653,49799 |
| 693 | posix_memalign 1659,49980 | 693 | posix_memalign 1662,50004 |
| 694 | static size_t pagesize;1707,51420 | 694 | static size_t pagesize;1710,51444 |
| 695 | valloc 1710,51452 | 695 | valloc 1713,51476 |
| 696 | #undef malloc1719,51593 | 696 | #undef malloc1722,51617 |
| 697 | #undef realloc1720,51607 | 697 | #undef realloc1723,51631 |
| 698 | #undef calloc1721,51622 | 698 | #undef calloc1724,51646 |
| 699 | #undef aligned_alloc1722,51636 | 699 | #undef aligned_alloc1725,51660 |
| 700 | #undef free1723,51657 | 700 | #undef free1726,51681 |
| 701 | hybrid_malloc 1740,52186 | 701 | hybrid_malloc 1743,52210 |
| 702 | hybrid_calloc 1748,52291 | 702 | hybrid_calloc 1751,52315 |
| 703 | hybrid_free 1756,52422 | 703 | hybrid_free 1759,52446 |
| 704 | hybrid_aligned_alloc 1769,52729 | 704 | hybrid_aligned_alloc 1772,52753 |
| 705 | hybrid_realloc 1784,53085 | 705 | hybrid_realloc 1787,53109 |
| 706 | hybrid_get_current_dir_name 1815,53898 | 706 | hybrid_get_current_dir_name 1818,53922 |
| 707 | #define MAGICWORD 1859,55335 | 707 | #define MAGICWORD 1862,55359 |
| 708 | #define MAGICFREE 1860,55390 | 708 | #define MAGICFREE 1863,55414 |
| 709 | #define MAGICBYTE 1861,55445 | 709 | #define MAGICBYTE 1864,55469 |
| 710 | #define MALLOCFLOOD 1862,55477 | 710 | #define MALLOCFLOOD 1865,55501 |
| 711 | #define FREEFLOOD 1863,55511 | 711 | #define FREEFLOOD 1866,55535 |
| 712 | struct hdr1865,55544 | 712 | struct hdr1868,55568 |
| 713 | checkhdr 1872,55710 | 713 | checkhdr 1875,55734 |
| 714 | freehook 1896,56151 | 714 | freehook 1899,56175 |
| 715 | mallochook 1932,56933 | 715 | mallochook 1935,56957 |
| 716 | reallochook 1949,57272 | 716 | reallochook 1952,57296 |
| 717 | mabort 1983,58030 | 717 | mabort 1986,58054 |
| 718 | static int mcheck_used 2017,58715 | 718 | static int mcheck_used 2020,58739 |
| 719 | mcheck 2020,58748 | 719 | mcheck 2023,58772 |
| 720 | mprobe 2040,59267 | 720 | mprobe 2043,59291 |
| 721 | 721 | ||
| 722 | c-src/emacs/src/regex.h,3761 | 722 | c-src/emacs/src/regex.h,3761 |
| 723 | #define _REGEX_H 21,837 | 723 | #define _REGEX_H 21,837 |
diff --git a/test/manual/etags/README b/test/manual/etags/README index f198e584da3..8493794c01c 100644 --- a/test/manual/etags/README +++ b/test/manual/etags/README | |||
| @@ -51,7 +51,9 @@ corresponding "good" files, one by one. Like this: | |||
| 51 | $ cp ETAGS ETAGS.good_7 | 51 | $ cp ETAGS ETAGS.good_7 |
| 52 | $ make check | 52 | $ make check |
| 53 | $ cp CTAGS CTAGS.good | 53 | $ cp CTAGS CTAGS.good |
| 54 | $ make check | 54 | $ head -n 100 CTAGS.good_update > CTAGS |
| 55 | $ tail -n 100 CTAGS.good_update >> CTAGS | ||
| 56 | $ ../../../lib-src/etags --ctags -o CTAGS -u - < srclist | ||
| 55 | $ cp CTAGS CTAGS.good_update | 57 | $ cp CTAGS CTAGS.good_update |
| 56 | $ make check | 58 | $ make check |
| 57 | $ cp CTAGS CTAGS.good_crlf | 59 | $ cp CTAGS CTAGS.good_crlf |
diff --git a/test/manual/etags/c-src/abbrev.c b/test/manual/etags/c-src/abbrev.c index ca891eea6d1..4b38f7f90b7 100644 --- a/test/manual/etags/c-src/abbrev.c +++ b/test/manual/etags/c-src/abbrev.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Primitives for word-abbrev mode. | 1 | /* Primitives for word-abbrev mode. |
| 2 | Copyright (C) 1985-1986, 1993, 1996, 1998, 2016-2025 Free Software | 2 | Copyright (C) 1985-1986, 1993, 1996, 1998, 2016-2026 Free Software |
| 3 | Foundation, Inc. | 3 | Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
diff --git a/test/manual/etags/c-src/emacs/src/gmalloc.c b/test/manual/etags/c-src/emacs/src/gmalloc.c index 2c192d3907e..43bd77ede6d 100644 --- a/test/manual/etags/c-src/emacs/src/gmalloc.c +++ b/test/manual/etags/c-src/emacs/src/gmalloc.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Declarations for `malloc' and friends. | 1 | /* Declarations for `malloc' and friends. |
| 2 | Copyright (C) 1990-1993, 1995-1996, 1999, 2002-2007, 2013-2025 Free | 2 | Copyright (C) 1990-1993, 1995-1996, 1999, 2002-2007, 2013-2026 Free |
| 3 | Software Foundation, Inc. | 3 | Software Foundation, Inc. |
| 4 | Written May 1989 by Mike Haertel. | 4 | Written May 1989 by Mike Haertel. |
| 5 | 5 | ||
| @@ -325,7 +325,7 @@ extern void memory_warnings (void *start, void (*warnfun) (const char *)); | |||
| 325 | #endif | 325 | #endif |
| 326 | 326 | ||
| 327 | /* Memory allocator `malloc'. | 327 | /* Memory allocator `malloc'. |
| 328 | Copyright (C) 1990-1993, 1995-1996, 1999, 2002-2007, 2013-2025 Free | 328 | Copyright (C) 1990-1993, 1995-1996, 1999, 2002-2007, 2013-2026 Free |
| 329 | Software Foundation, Inc. | 329 | Software Foundation, Inc. |
| 330 | Written May 1989 by Mike Haertel. | 330 | Written May 1989 by Mike Haertel. |
| 331 | 331 | ||
| @@ -978,7 +978,7 @@ _realloc (void *ptr, size_t size) | |||
| 978 | 978 | ||
| 979 | #endif | 979 | #endif |
| 980 | /* Free a block of memory allocated by `malloc'. | 980 | /* Free a block of memory allocated by `malloc'. |
| 981 | Copyright (C) 1990-1993, 1995-1996, 1999, 2002-2007, 2013-2025 Free | 981 | Copyright (C) 1990-1993, 1995-1996, 1999, 2002-2007, 2013-2026 Free |
| 982 | Software Foundation, Inc. | 982 | Software Foundation, Inc. |
| 983 | Written May 1989 by Mike Haertel. | 983 | Written May 1989 by Mike Haertel. |
| 984 | 984 | ||
| @@ -1285,7 +1285,7 @@ cfree (void *ptr) | |||
| 1285 | } | 1285 | } |
| 1286 | #endif | 1286 | #endif |
| 1287 | /* Change the size of a block allocated by `malloc'. | 1287 | /* Change the size of a block allocated by `malloc'. |
| 1288 | Copyright (C) 1990-1993, 1995-1996, 1999, 2002-2007, 2013-2025 Free | 1288 | Copyright (C) 1990-1993, 1995-1996, 1999, 2002-2007, 2013-2026 Free |
| 1289 | Software Foundation, Inc. | 1289 | Software Foundation, Inc. |
| 1290 | Written May 1989 by Mike Haertel. | 1290 | Written May 1989 by Mike Haertel. |
| 1291 | 1291 | ||
| @@ -1457,7 +1457,8 @@ realloc (void *ptr, size_t size) | |||
| 1457 | hook = __realloc_hook; | 1457 | hook = __realloc_hook; |
| 1458 | return (hook != NULL ? *hook : _realloc_internal) (ptr, size); | 1458 | return (hook != NULL ? *hook : _realloc_internal) (ptr, size); |
| 1459 | } | 1459 | } |
| 1460 | /* Copyright (C) 1991-1992, 1994, 2025 Free Software Foundation, Inc. | 1460 | /* Copyright (C) 1991-1992, 1994, 2025-2026 Free Software Foundation, |
| 1461 | * Inc. | ||
| 1461 | 1462 | ||
| 1462 | This library is free software; you can redistribute it and/or | 1463 | This library is free software; you can redistribute it and/or |
| 1463 | modify it under the terms of the GNU General Public License as | 1464 | modify it under the terms of the GNU General Public License as |
| @@ -1494,7 +1495,8 @@ calloc (size_t nmemb, size_t size) | |||
| 1494 | return memset (result, 0, bytes); | 1495 | return memset (result, 0, bytes); |
| 1495 | return result; | 1496 | return result; |
| 1496 | } | 1497 | } |
| 1497 | /* Copyright (C) 1991-1992, 1994, 2025 Free Software Foundation, Inc. | 1498 | /* Copyright (C) 1991-1992, 1994, 2025-2026 Free Software Foundation, |
| 1499 | * Inc. | ||
| 1498 | This file is part of the GNU C Library. | 1500 | This file is part of the GNU C Library. |
| 1499 | 1501 | ||
| 1500 | The GNU C Library is free software; you can redistribute it and/or modify | 1502 | The GNU C Library is free software; you can redistribute it and/or modify |
| @@ -1539,7 +1541,8 @@ __default_morecore (ptrdiff_t increment) | |||
| 1539 | return NULL; | 1541 | return NULL; |
| 1540 | return result; | 1542 | return result; |
| 1541 | } | 1543 | } |
| 1542 | /* Copyright (C) 1991-1992, 1994, 2025 Free Software Foundation, Inc. | 1544 | /* Copyright (C) 1991-1992, 1994, 2025-2026 Free Software Foundation, |
| 1545 | * Inc. | ||
| 1543 | 1546 | ||
| 1544 | This library is free software; you can redistribute it and/or | 1547 | This library is free software; you can redistribute it and/or |
| 1545 | modify it under the terms of the GNU General Public License as | 1548 | modify it under the terms of the GNU General Public License as |
| @@ -1676,7 +1679,7 @@ posix_memalign (void **memptr, size_t alignment, size_t size) | |||
| 1676 | #endif | 1679 | #endif |
| 1677 | 1680 | ||
| 1678 | /* Allocate memory on a page boundary. | 1681 | /* Allocate memory on a page boundary. |
| 1679 | Copyright (C) 1990-1993, 1995-1996, 1999, 2002-2007, 2013-2025 Free | 1682 | Copyright (C) 1990-1993, 1995-1996, 1999, 2002-2007, 2013-2026 Free |
| 1680 | Software Foundation, Inc. | 1683 | Software Foundation, Inc. |
| 1681 | 1684 | ||
| 1682 | This library is free software; you can redistribute it and/or | 1685 | This library is free software; you can redistribute it and/or |
| @@ -1825,7 +1828,7 @@ hybrid_get_current_dir_name (void) | |||
| 1825 | #ifdef GC_MCHECK | 1828 | #ifdef GC_MCHECK |
| 1826 | 1829 | ||
| 1827 | /* Standard debugging hooks for `malloc'. | 1830 | /* Standard debugging hooks for `malloc'. |
| 1828 | Copyright (C) 1990-1993, 1995-1996, 1999, 2002-2007, 2013-2025 Free | 1831 | Copyright (C) 1990-1993, 1995-1996, 1999, 2002-2007, 2013-2026 Free |
| 1829 | Software Foundation, Inc. | 1832 | Software Foundation, Inc. |
| 1830 | Written May 1989 by Mike Haertel. | 1833 | Written May 1989 by Mike Haertel. |
| 1831 | 1834 | ||
diff --git a/test/manual/etags/c-src/emacs/src/keyboard.c b/test/manual/etags/c-src/emacs/src/keyboard.c index feb2baef4b3..38b8db6b339 100644 --- a/test/manual/etags/c-src/emacs/src/keyboard.c +++ b/test/manual/etags/c-src/emacs/src/keyboard.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Keyboard and mouse input; editor command loop. | 1 | /* Keyboard and mouse input; editor command loop. |
| 2 | 2 | ||
| 3 | Copyright (C) 1985-1989, 1993-1997, 1999-2025 Free Software Foundation, | 3 | Copyright (C) 1985-1989, 1993-1997, 1999-2026 Free Software Foundation, |
| 4 | Inc. | 4 | Inc. |
| 5 | 5 | ||
| 6 | This file is part of GNU Emacs. | 6 | This file is part of GNU Emacs. |
diff --git a/test/manual/etags/c-src/emacs/src/lisp.h b/test/manual/etags/c-src/emacs/src/lisp.h index fadcef65752..fedb81d162f 100644 --- a/test/manual/etags/c-src/emacs/src/lisp.h +++ b/test/manual/etags/c-src/emacs/src/lisp.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Fundamental definitions for GNU Emacs Lisp interpreter. | 1 | /* Fundamental definitions for GNU Emacs Lisp interpreter. |
| 2 | 2 | ||
| 3 | Copyright (C) 1985-1987, 1993-1995, 1997-2025 Free Software Foundation, | 3 | Copyright (C) 1985-1987, 1993-1995, 1997-2026 Free Software Foundation, |
| 4 | Inc. | 4 | Inc. |
| 5 | 5 | ||
| 6 | This file is part of GNU Emacs. | 6 | This file is part of GNU Emacs. |
diff --git a/test/manual/etags/c-src/emacs/src/regex.h b/test/manual/etags/c-src/emacs/src/regex.h index 78cbe90f1ba..d5515743250 100644 --- a/test/manual/etags/c-src/emacs/src/regex.h +++ b/test/manual/etags/c-src/emacs/src/regex.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* Definitions for data structures and routines for the regular | 1 | /* Definitions for data structures and routines for the regular |
| 2 | expression library, version 0.12. | 2 | expression library, version 0.12. |
| 3 | 3 | ||
| 4 | Copyright (C) 1985, 1989-1993, 1995, 2000-2025 Free Software | 4 | Copyright (C) 1985, 1989-1993, 1995, 2000-2026 Free Software |
| 5 | Foundation, Inc. | 5 | Foundation, Inc. |
| 6 | 6 | ||
| 7 | This program is free software; you can redistribute it and/or modify | 7 | This program is free software; you can redistribute it and/or modify |
diff --git a/test/manual/etags/c-src/etags.c b/test/manual/etags/c-src/etags.c index 772ef08bf40..4c297c221fd 100644 --- a/test/manual/etags/c-src/etags.c +++ b/test/manual/etags/c-src/etags.c | |||
| @@ -28,7 +28,7 @@ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN | |||
| 28 | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 | 29 | ||
| 30 | 30 | ||
| 31 | Copyright (C) 1984, 1987-1989, 1993-1995, 1998-2025 Free Software | 31 | Copyright (C) 1984, 1987-1989, 1993-1995, 1998-2026 Free Software |
| 32 | Foundation, Inc. | 32 | Foundation, Inc. |
| 33 | 33 | ||
| 34 | This file is not considered part of GNU Emacs. | 34 | This file is not considered part of GNU Emacs. |
diff --git a/test/manual/etags/c-src/exit.c b/test/manual/etags/c-src/exit.c index 0ef5a18892c..09a4b2424c8 100644 --- a/test/manual/etags/c-src/exit.c +++ b/test/manual/etags/c-src/exit.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* Copyright (C) 1991, 2016-2025 Free Software Foundation, Inc. | 1 | /* Copyright (C) 1991, 2016-2026 Free Software Foundation, Inc. |
| 2 | This file is part of the GNU C Library. | 2 | This file is part of the GNU C Library. |
| 3 | 3 | ||
| 4 | The GNU C Library is free software; you can redistribute it and/or | 4 | The GNU C Library is free software; you can redistribute it and/or |
diff --git a/test/manual/etags/c-src/exit.strange_suffix b/test/manual/etags/c-src/exit.strange_suffix index 0ef5a18892c..09a4b2424c8 100644 --- a/test/manual/etags/c-src/exit.strange_suffix +++ b/test/manual/etags/c-src/exit.strange_suffix | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* Copyright (C) 1991, 2016-2025 Free Software Foundation, Inc. | 1 | /* Copyright (C) 1991, 2016-2026 Free Software Foundation, Inc. |
| 2 | This file is part of the GNU C Library. | 2 | This file is part of the GNU C Library. |
| 3 | 3 | ||
| 4 | The GNU C Library is free software; you can redistribute it and/or | 4 | The GNU C Library is free software; you can redistribute it and/or |
diff --git a/test/manual/etags/c-src/getopt.h b/test/manual/etags/c-src/getopt.h index 4cf5a5140ae..9d39c9b5c84 100644 --- a/test/manual/etags/c-src/getopt.h +++ b/test/manual/etags/c-src/getopt.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Declarations for getopt. | 1 | /* Declarations for getopt. |
| 2 | Copyright (C) 1989-1992, 2016-2025 Free Software Foundation, Inc. | 2 | Copyright (C) 1989-1992, 2016-2026 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This program is free software; you can redistribute it and/or modify it | 4 | This program is free software; you can redistribute it and/or modify it |
| 5 | under the terms of the GNU General Public License as published by the | 5 | under the terms of the GNU General Public License as published by the |
diff --git a/test/manual/etags/c-src/sysdep.h b/test/manual/etags/c-src/sysdep.h index 3685bf48d3e..3d7282b8a0e 100644 --- a/test/manual/etags/c-src/sysdep.h +++ b/test/manual/etags/c-src/sysdep.h | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* Copyright (C) 1992-1993, 2016-2025 Free Software Foundation, Inc. | 1 | /* Copyright (C) 1992-1993, 2016-2026 Free Software Foundation, Inc. |
| 2 | This file is part of the GNU C Library. | 2 | This file is part of the GNU C Library. |
| 3 | 3 | ||
| 4 | The GNU C Library is free software; you can redistribute it and/or | 4 | The GNU C Library is free software; you can redistribute it and/or |
diff --git a/test/manual/etags/el-src/emacs/lisp/progmodes/etags.el b/test/manual/etags/el-src/emacs/lisp/progmodes/etags.el index 3c9b709e538..fda743e3170 100644 --- a/test/manual/etags/el-src/emacs/lisp/progmodes/etags.el +++ b/test/manual/etags/el-src/emacs/lisp/progmodes/etags.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; etags.el --- etags facility for Emacs -*- lexical-binding: t -*- | 1 | ;;; etags.el --- etags facility for Emacs -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1985-1986, 1988-1989, 1992-1996, 1998, 2000-2025 Free | 3 | ;; Copyright (C) 1985-1986, 1988-1989, 1992-1996, 1998, 2000-2026 Free |
| 4 | ;; Software Foundation, Inc. | 4 | ;; Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Roland McGrath <roland@gnu.org> | 6 | ;; Author: Roland McGrath <roland@gnu.org> |
diff --git a/test/manual/etags/merc-src/accumulator.m b/test/manual/etags/merc-src/accumulator.m index 0ee41216c11..2bfe142a935 100644 --- a/test/manual/etags/merc-src/accumulator.m +++ b/test/manual/etags/merc-src/accumulator.m | |||
| @@ -53,7 +53,7 @@ | |||
| 53 | % in CVS papers archive in the directory update, but has been submitted | 53 | % in CVS papers archive in the directory update, but has been submitted |
| 54 | % to PPDP '00. | 54 | % to PPDP '00. |
| 55 | % | 55 | % |
| 56 | % The transformation recognises predicates in the form | 56 | % The transformation recognizes predicates in the form |
| 57 | % | 57 | % |
| 58 | % p(In, OutUpdate, OutAssoc) :- | 58 | % p(In, OutUpdate, OutAssoc) :- |
| 59 | % minimal(In), | 59 | % minimal(In), |
diff --git a/test/manual/etags/tex-src/texinfo.tex b/test/manual/etags/tex-src/texinfo.tex index c4779fb70fd..e893f05d365 100644 --- a/test/manual/etags/tex-src/texinfo.tex +++ b/test/manual/etags/tex-src/texinfo.tex | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | %% TeX macros to handle texinfo files | 1 | %% TeX macros to handle texinfo files |
| 2 | 2 | ||
| 3 | % Copyright (C) 1985--1986, 1988, 1990--1991, 2016--2025 Free Software | 3 | % Copyright (C) 1985--1986, 1988, 1990--1991, 2016--2026 Free Software |
| 4 | % Foundation, Inc. | 4 | % Foundation, Inc. |
| 5 | 5 | ||
| 6 | %This texinfo.tex file is free software; you can redistribute it and/or | 6 | %This texinfo.tex file is free software; you can redistribute it and/or |
diff --git a/test/manual/etags/y-src/cccp.c b/test/manual/etags/y-src/cccp.c index 0eebaf0fbdf..d898187f03c 100644 --- a/test/manual/etags/y-src/cccp.c +++ b/test/manual/etags/y-src/cccp.c | |||
| @@ -320,7 +320,7 @@ static const short yycheck[] = | |||
| 320 | #line 3 "/usr/share/bison/bison.simple" | 320 | #line 3 "/usr/share/bison/bison.simple" |
| 321 | 321 | ||
| 322 | /* Skeleton output parser for bison, | 322 | /* Skeleton output parser for bison, |
| 323 | Copyright (C) 1984, 1989-1990, 2000-2001, 2016-2025 Free Software | 323 | Copyright (C) 1984, 1989-1990, 2000-2001, 2016-2026 Free Software |
| 324 | Foundation, Inc. | 324 | Foundation, Inc. |
| 325 | 325 | ||
| 326 | This program is free software; you can redistribute it and/or modify | 326 | This program is free software; you can redistribute it and/or modify |
diff --git a/test/manual/etags/y-src/parse.c b/test/manual/etags/y-src/parse.c index 661da048218..067dbd5cc0a 100644 --- a/test/manual/etags/y-src/parse.c +++ b/test/manual/etags/y-src/parse.c | |||
| @@ -28,7 +28,7 @@ | |||
| 28 | 28 | ||
| 29 | #line 1 "y-src/parse.y" | 29 | #line 1 "y-src/parse.y" |
| 30 | 30 | ||
| 31 | /* Copyright (C) 1990, 1992-1993, 2016-2025 Free Software Foundation, | 31 | /* Copyright (C) 1990, 1992-1993, 2016-2026 Free Software Foundation, |
| 32 | * Inc. | 32 | * Inc. |
| 33 | 33 | ||
| 34 | This file is part of Oleo, the GNU Spreadsheet. | 34 | This file is part of Oleo, the GNU Spreadsheet. |
| @@ -400,7 +400,7 @@ static const short yycheck[] = | |||
| 400 | #line 3 "/usr/share/bison/bison.simple" | 400 | #line 3 "/usr/share/bison/bison.simple" |
| 401 | 401 | ||
| 402 | /* Skeleton output parser for bison, | 402 | /* Skeleton output parser for bison, |
| 403 | Copyright (C) 1984, 1989-1990, 2000-2001, 2025 Free Software | 403 | Copyright (C) 1984, 1989-1990, 2000-2001, 2025-2026 Free Software |
| 404 | Foundation, Inc. | 404 | Foundation, Inc. |
| 405 | 405 | ||
| 406 | This program is free software; you can redistribute it and/or modify | 406 | This program is free software; you can redistribute it and/or modify |
diff --git a/test/manual/etags/y-src/parse.y b/test/manual/etags/y-src/parse.y index fa04deea702..c82fb66b07c 100644 --- a/test/manual/etags/y-src/parse.y +++ b/test/manual/etags/y-src/parse.y | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | %{ | 1 | %{ |
| 2 | /* Copyright (C) 1990, 1992-1993, 2016-2025 Free Software Foundation, | 2 | /* Copyright (C) 1990, 1992-1993, 2016-2026 Free Software Foundation, |
| 3 | * Inc. | 3 | * Inc. |
| 4 | 4 | ||
| 5 | This file is part of Oleo, the GNU Spreadsheet. | 5 | This file is part of Oleo, the GNU Spreadsheet. |
diff --git a/test/manual/image-circular-tests.el b/test/manual/image-circular-tests.el index 04fbbb02264..d5c368fb004 100644 --- a/test/manual/image-circular-tests.el +++ b/test/manual/image-circular-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; image-circular-tests.el --- test image functions with circular objects -*- lexical-binding: t; -*- | 1 | ;;; image-circular-tests.el --- test image functions with circular objects -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019, 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019, 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Pip Cet <pipcet@gmail.com> | 5 | ;; Author: Pip Cet <pipcet@gmail.com> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/manual/image-size-tests.el b/test/manual/image-size-tests.el index ae7d6015ca3..40c46a1a30b 100644 --- a/test/manual/image-size-tests.el +++ b/test/manual/image-size-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; image-size-tests.el --- tests for image scaling -*- lexical-binding: t; -*- | 1 | ;;; image-size-tests.el --- tests for image scaling -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/manual/image-tests.el b/test/manual/image-tests.el index d764da635fc..33656cdbcc3 100644 --- a/test/manual/image-tests.el +++ b/test/manual/image-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; image-tests.el --- tests for image.c -*- lexical-binding: t; -*- | 1 | ;;; image-tests.el --- tests for image.c -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/manual/image-transforms-tests.el b/test/manual/image-transforms-tests.el index 631932d93f7..8ec22d041f8 100644 --- a/test/manual/image-transforms-tests.el +++ b/test/manual/image-transforms-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; image-transforms-tests.el --- Test suite for image transforms. -*- lexical-binding: t -*- | 1 | ;;; image-transforms-tests.el --- Test suite for image transforms. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Alan Third <alan@idiocy.org> | 5 | ;; Author: Alan Third <alan@idiocy.org> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/manual/indent/pascal.pas b/test/manual/indent/pascal.pas index 235d51e78a5..b7a645e82d4 100644 --- a/test/manual/indent/pascal.pas +++ b/test/manual/indent/pascal.pas | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | { GPC demo program for the CRT unit. | 1 | { GPC demo program for the CRT unit. |
| 2 | 2 | ||
| 3 | Copyright (C) 1999-2006, 2013-2025 Free Software Foundation, Inc. | 3 | Copyright (C) 1999-2006, 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | Author: Frank Heckenbach <frank@pascal.gnu.de> | 5 | Author: Frank Heckenbach <frank@pascal.gnu.de> |
| 6 | 6 | ||
diff --git a/test/manual/noverlay/Makefile.in b/test/manual/noverlay/Makefile.in index 2634d036a3c..1ecdf2480fc 100644 --- a/test/manual/noverlay/Makefile.in +++ b/test/manual/noverlay/Makefile.in | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ### @configure_input@ | 1 | ### @configure_input@ |
| 2 | 2 | ||
| 3 | # Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | # Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | # This file is part of GNU Emacs. | 5 | # This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/manual/noverlay/check-sanitize.sh b/test/manual/noverlay/check-sanitize.sh index 47ab001c580..0705dd64d0f 100755 --- a/test/manual/noverlay/check-sanitize.sh +++ b/test/manual/noverlay/check-sanitize.sh | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #!/usr/bin/env bash | 1 | #!/usr/bin/env bash |
| 2 | ### check-sanitize.sh - strip confusing parts of Check error output | 2 | ### check-sanitize.sh - strip confusing parts of Check error output |
| 3 | 3 | ||
| 4 | ## Copyright (C) 2017-2025 Free Software Foundation, Inc. | 4 | ## Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ## This file is part of GNU Emacs. | 6 | ## This file is part of GNU Emacs. |
| 7 | 7 | ||
diff --git a/test/manual/noverlay/emacs-compat.h b/test/manual/noverlay/emacs-compat.h index 0d949548436..c119c456d60 100644 --- a/test/manual/noverlay/emacs-compat.h +++ b/test/manual/noverlay/emacs-compat.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Mock necessary parts of lisp.h. | 1 | /* Mock necessary parts of lisp.h. |
| 2 | 2 | ||
| 3 | Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/manual/noverlay/itree-tests.c b/test/manual/noverlay/itree-tests.c index 2ddba6d8567..334f1de8162 100644 --- a/test/manual/noverlay/itree-tests.c +++ b/test/manual/noverlay/itree-tests.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Test the interval data-structure in itree.c. | 1 | /* Test the interval data-structure in itree.c. |
| 2 | 2 | ||
| 3 | Copyright (c) 2017-2025 Free Software Foundation, Inc. | 3 | Copyright (c) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/manual/noverlay/overlay-perf.el b/test/manual/noverlay/overlay-perf.el index fc74efd045b..4ea238a2187 100644 --- a/test/manual/noverlay/overlay-perf.el +++ b/test/manual/noverlay/overlay-perf.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;; -*- lexical-binding:t -*- | 1 | ;; -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/manual/process-callout-tests.el b/test/manual/process-callout-tests.el index 512b9eb8424..600f598771e 100644 --- a/test/manual/process-callout-tests.el +++ b/test/manual/process-callout-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; process-callout-tests.el --- Testing the process facilities -*- lexical-binding: t -*- | 1 | ;;; process-callout-tests.el --- Testing the process facilities -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/manual/redisplay-testsuite.el b/test/manual/redisplay-testsuite.el index 68836e07a4d..911e015e309 100644 --- a/test/manual/redisplay-testsuite.el +++ b/test/manual/redisplay-testsuite.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; redisplay-testsuite.el --- Test suite for redisplay. -*- lexical-binding: t; -*- | 1 | ;;; redisplay-testsuite.el --- Test suite for redisplay. -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2009-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2009-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Chong Yidong <cyd@stupidchicken.com> | 5 | ;; Author: Chong Yidong <cyd@stupidchicken.com> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/manual/scroll-tests.el b/test/manual/scroll-tests.el index f5537b831ec..dd1df000226 100644 --- a/test/manual/scroll-tests.el +++ b/test/manual/scroll-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; scroll-tests.el --- tests for scrolling -*- lexical-binding: t -*- | 1 | ;;; scroll-tests.el --- tests for scrolling -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/misc/test-custom-deps.el b/test/misc/test-custom-deps.el index 26e0e7bf59f..1a8061e09a7 100644 --- a/test/misc/test-custom-deps.el +++ b/test/misc/test-custom-deps.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; test-custom-deps.el --- Test custom deps -*- lexical-binding:t -*- | 1 | ;;; test-custom-deps.el --- Test custom deps -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/misc/test-custom-libs.el b/test/misc/test-custom-libs.el index 0d1a1af033e..0aaf117e1e9 100644 --- a/test/misc/test-custom-libs.el +++ b/test/misc/test-custom-libs.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; test-custom-libs.el --- Test custom loads -*- lexical-binding:t -*- | 1 | ;;; test-custom-libs.el --- Test custom loads -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/misc/test-custom-noloads.el b/test/misc/test-custom-noloads.el index a2722a965dd..e90e50132a6 100644 --- a/test/misc/test-custom-noloads.el +++ b/test/misc/test-custom-noloads.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; test-custom-noloads.el --- Test custom noloads -*- lexical-binding:t -*- | 1 | ;;; test-custom-noloads.el --- Test custom noloads -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/misc/test-custom-opts.el b/test/misc/test-custom-opts.el index bc930860f9e..14985f97874 100644 --- a/test/misc/test-custom-opts.el +++ b/test/misc/test-custom-opts.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; test-custom-opts.el --- Test custom opts -*- lexical-binding:t -*- | 1 | ;;; test-custom-opts.el --- Test custom opts -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/alloc-tests.el b/test/src/alloc-tests.el index cf7d1ca1cd3..022cc174d8c 100644 --- a/test/src/alloc-tests.el +++ b/test/src/alloc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; alloc-tests.el --- alloc tests -*- lexical-binding: t -*- | 1 | ;;; alloc-tests.el --- alloc tests -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Daniel Colascione <dancol@dancol.org> | 5 | ;; Author: Daniel Colascione <dancol@dancol.org> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/src/buffer-tests.el b/test/src/buffer-tests.el index 2349e63ac33..5f534ed513a 100644 --- a/test/src/buffer-tests.el +++ b/test/src/buffer-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; buffer-tests.el --- tests for buffer.c functions -*- lexical-binding: t -*- | 1 | ;;; buffer-tests.el --- tests for buffer.c functions -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -8650,4 +8650,22 @@ Finally, kill the buffer and its temporary file." | |||
| 8650 | (should (= (point-min) 1)) | 8650 | (should (= (point-min) 1)) |
| 8651 | (should (= (point-max) 5001)))) | 8651 | (should (= (point-max) 5001)))) |
| 8652 | 8652 | ||
| 8653 | (ert-deftest test-line-spacing () | ||
| 8654 | "Test `line-spacing' impact on text size" | ||
| 8655 | (skip-unless (display-graphic-p)) | ||
| 8656 | (let* | ||
| 8657 | ((size-with-text (lambda (ls) | ||
| 8658 | (with-temp-buffer | ||
| 8659 | (setq-local line-spacing ls) | ||
| 8660 | (insert "X\nX") | ||
| 8661 | (cdr (buffer-text-pixel-size)))))) | ||
| 8662 | (cl-loop for x from 0 to 50 | ||
| 8663 | for y from 0 to 50 | ||
| 8664 | do | ||
| 8665 | (ert-info ((format "((linespacing '(%d . %d)) == (linespacing %d)" x y (+ x y)) | ||
| 8666 | :prefix "Linespace check: ") | ||
| 8667 | (should (= | ||
| 8668 | (funcall size-with-text (+ x y)) | ||
| 8669 | (funcall size-with-text (cons x y)))))))) | ||
| 8670 | |||
| 8653 | ;;; buffer-tests.el ends here | 8671 | ;;; buffer-tests.el ends here |
diff --git a/test/src/callint-tests.el b/test/src/callint-tests.el index f819a969528..a09fb40b3f8 100644 --- a/test/src/callint-tests.el +++ b/test/src/callint-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; callint-tests.el --- unit tests for callint.c -*- lexical-binding: t; -*- | 1 | ;;; callint-tests.el --- unit tests for callint.c -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Philipp Stephani <phst@google.com> | 5 | ;; Author: Philipp Stephani <phst@google.com> |
| 6 | 6 | ||
diff --git a/test/src/callproc-tests.el b/test/src/callproc-tests.el index acffece5c1d..8e0cf6eb6fd 100644 --- a/test/src/callproc-tests.el +++ b/test/src/callproc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; callproc-tests.el --- callproc.c tests -*- lexical-binding: t -*- | 1 | ;;; callproc-tests.el --- callproc.c tests -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/casefiddle-tests.el b/test/src/casefiddle-tests.el index 6cf9f98f6ca..dcbe2e32c22 100644 --- a/test/src/casefiddle-tests.el +++ b/test/src/casefiddle-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; casefiddle-tests.el --- tests for casefiddle.c functions -*- lexical-binding: t -*- | 1 | ;;; casefiddle-tests.el --- tests for casefiddle.c functions -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2016, 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2016, 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/character-tests.el b/test/src/character-tests.el index f40547da8f8..9c3dac24637 100644 --- a/test/src/character-tests.el +++ b/test/src/character-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; character-tests.el --- tests for character.c -*- lexical-binding:t -*- | 1 | ;;; character-tests.el --- tests for character.c -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/charset-tests.el b/test/src/charset-tests.el index 427162125c1..7545a907f5f 100644 --- a/test/src/charset-tests.el +++ b/test/src/charset-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; charset-tests.el --- Tests for charset.c -*- lexical-binding: t -*- | 1 | ;;; charset-tests.el --- Tests for charset.c -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/chartab-tests.el b/test/src/chartab-tests.el index ffdd46159cd..0f2e65b89a0 100644 --- a/test/src/chartab-tests.el +++ b/test/src/chartab-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; chartab-tests.el --- Tests for char-tab.c -*- lexical-binding: t -*- | 1 | ;;; chartab-tests.el --- Tests for char-tab.c -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eli Zaretskii <eliz@gnu.org> | 5 | ;; Author: Eli Zaretskii <eliz@gnu.org> |
| 6 | 6 | ||
diff --git a/test/src/cmds-tests.el b/test/src/cmds-tests.el index 8389c03434d..a02c36868ca 100644 --- a/test/src/cmds-tests.el +++ b/test/src/cmds-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; cmds-tests.el --- Testing some Emacs commands -*- lexical-binding: t -*- | 1 | ;;; cmds-tests.el --- Testing some Emacs commands -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Nicolas Richard <youngfrog@members.fsf.org> | 5 | ;; Author: Nicolas Richard <youngfrog@members.fsf.org> |
| 6 | ;; Keywords: | 6 | ;; Keywords: |
diff --git a/test/src/coding-tests.el b/test/src/coding-tests.el index 9fcb44c87c7..dc1abec2d58 100644 --- a/test/src/coding-tests.el +++ b/test/src/coding-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; coding-tests.el --- tests for text encoding and decoding -*- lexical-binding: t -*- | 1 | ;;; coding-tests.el --- tests for text encoding and decoding -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Eli Zaretskii <eliz@gnu.org> | 5 | ;; Author: Eli Zaretskii <eliz@gnu.org> |
| 6 | ;; Author: Kenichi Handa <handa@gnu.org> | 6 | ;; Author: Kenichi Handa <handa@gnu.org> |
diff --git a/test/src/comp-resources/comp-test-funcs-dyn.el b/test/src/comp-resources/comp-test-funcs-dyn.el index 10a11b20687..7342b8be449 100644 --- a/test/src/comp-resources/comp-test-funcs-dyn.el +++ b/test/src/comp-resources/comp-test-funcs-dyn.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; comp-test-funcs-dyn.el --- compilation unit tested by comp-tests.el -*- lexical-binding: nil; -*- | 1 | ;;; comp-test-funcs-dyn.el --- compilation unit tested by comp-tests.el -*- lexical-binding: nil; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Andrea Corallo <acorallo@gnu.org> | 5 | ;; Author: Andrea Corallo <acorallo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/src/comp-resources/comp-test-funcs-dyn2.el b/test/src/comp-resources/comp-test-funcs-dyn2.el index e3cad6c272f..23b8a46af39 100644 --- a/test/src/comp-resources/comp-test-funcs-dyn2.el +++ b/test/src/comp-resources/comp-test-funcs-dyn2.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; comp-test-funcs-dyn2.el -*- lexical-binding: nil; no-byte-compile: t; -*- | 1 | ;;; comp-test-funcs-dyn2.el -*- lexical-binding: nil; no-byte-compile: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2023-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2023-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Alan Mackenzie <acm@muc.de> | 5 | ;; Author: Alan Mackenzie <acm@muc.de> |
| 6 | 6 | ||
diff --git a/test/src/comp-resources/comp-test-funcs.el b/test/src/comp-resources/comp-test-funcs.el index 04e3afe49fa..200d3f6793d 100644 --- a/test/src/comp-resources/comp-test-funcs.el +++ b/test/src/comp-resources/comp-test-funcs.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; comp-test-funcs.el --- compilation unit tested by comp-tests.el -*- lexical-binding: t; -*- | 1 | ;;; comp-test-funcs.el --- compilation unit tested by comp-tests.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Andrea Corallo <acorallo@gnu.org> | 5 | ;; Author: Andrea Corallo <acorallo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/src/comp-resources/comp-test-pure.el b/test/src/comp-resources/comp-test-pure.el index cbcfc89733b..7795a668fa6 100644 --- a/test/src/comp-resources/comp-test-pure.el +++ b/test/src/comp-resources/comp-test-pure.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; comp-test-pure.el --- compilation unit tested by comp-tests.el -*- lexical-binding: t; -*- | 1 | ;;; comp-test-pure.el --- compilation unit tested by comp-tests.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Andrea Corallo <acorallo@gnu.org> | 5 | ;; Author: Andrea Corallo <acorallo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/src/comp-tests.el b/test/src/comp-tests.el index e9f4b1ad508..28418cc9b86 100644 --- a/test/src/comp-tests.el +++ b/test/src/comp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; comp-tests.el --- unit tests for src/comp.c -*- lexical-binding: t; -*- | 1 | ;;; comp-tests.el --- unit tests for src/comp.c -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2019-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2019-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Andrea Corallo <acorallo@gnu.org> | 5 | ;; Author: Andrea Corallo <acorallo@gnu.org> |
| 6 | 6 | ||
diff --git a/test/src/data-tests.el b/test/src/data-tests.el index 1499be015b5..0540a99f4c3 100644 --- a/test/src/data-tests.el +++ b/test/src/data-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; data-tests.el --- tests for src/data.c -*- lexical-binding:t -*- | 1 | ;;; data-tests.el --- tests for src/data.c -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/decompress-tests.el b/test/src/decompress-tests.el index 14bbd108eda..411d472c774 100644 --- a/test/src/decompress-tests.el +++ b/test/src/decompress-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; decompress-tests.el --- Test suite for decompress. -*- lexical-binding: t -*- | 1 | ;;; decompress-tests.el --- Test suite for decompress. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> | 5 | ;; Author: Lars Ingebrigtsen <larsi@gnus.org> |
| 6 | 6 | ||
diff --git a/test/src/doc-tests.el b/test/src/doc-tests.el index 87d9bd963e0..fbf3a91002a 100644 --- a/test/src/doc-tests.el +++ b/test/src/doc-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; doc-tests.el --- tests for doc.c functions -*- lexical-binding: t -*- | 1 | ;;; doc-tests.el --- tests for doc.c functions -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2022-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2022-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/editfns-tests.el b/test/src/editfns-tests.el index 4e0ca4c9d2a..9bdd5cf5db6 100644 --- a/test/src/editfns-tests.el +++ b/test/src/editfns-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; editfns-tests.el --- tests for editfns.c -*- lexical-binding:t -*- | 1 | ;;; editfns-tests.el --- tests for editfns.c -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -368,7 +368,7 @@ Execute tests as described by `editfns-tests--transpose-regions-tests'." | |||
| 368 | (should (equal (mapcar #'marker-position pmarkers) pmpos)) | 368 | (should (equal (mapcar #'marker-position pmarkers) pmpos)) |
| 369 | ;; Meh. This more or less blindly duplicates function | 369 | ;; Meh. This more or less blindly duplicates function |
| 370 | ;; transpose_markers, since I have been too lazy to | 370 | ;; transpose_markers, since I have been too lazy to |
| 371 | ;; reproduce the arithmetics myself. | 371 | ;; reproduce the arithmetic myself. |
| 372 | (setq pmpos | 372 | (setq pmpos |
| 373 | (mapcar | 373 | (mapcar |
| 374 | (lambda (pos) | 374 | (lambda (pos) |
| @@ -397,6 +397,82 @@ Execute tests as described by `editfns-tests--transpose-regions-tests'." | |||
| 397 | (ert-deftest format-c-float () | 397 | (ert-deftest format-c-float () |
| 398 | (should-error (format "%c" 0.5))) | 398 | (should-error (format "%c" 0.5))) |
| 399 | 399 | ||
| 400 | (ert-deftest format-binary-zero () | ||
| 401 | "Check that `%#b' and `%#B' are simplified for zero values." | ||
| 402 | (should (string-equal (format "%#b" 0) "0")) | ||
| 403 | (should (string-equal (format "%#B" 0) "0"))) | ||
| 404 | |||
| 405 | (ert-deftest format-binary-floats () | ||
| 406 | "Check that `%b' and `%B' drop the fractional part of floats." | ||
| 407 | (let* ((n 5) (N 10) | ||
| 408 | (fracs (mapcar #'(lambda (d) (/ d N 1.0)) (number-sequence 0 (1- N))))) | ||
| 409 | (dolist (f fracs) | ||
| 410 | (should (string-equal (format "%b" (+ n f)) (format "%b" n))) | ||
| 411 | (should (string-equal (format "%B" (+ n f)) (format "%B" n)))))) | ||
| 412 | |||
| 413 | (ert-deftest format-binary-nonzero-integers () | ||
| 414 | "Check `%b' and `%B' for non-zero integers. | ||
| 415 | For numbers of both signs, check each flag (`0' padding, signs `+' & | ||
| 416 | space, left alignment `-') with and without the alternative display | ||
| 417 | format `#'. Include both fixed and big numbers. The widths are chosen | ||
| 418 | sufficiently large to avoid truncation." | ||
| 419 | (dolist (nbits `((#x-5A . "1011010") | ||
| 420 | (#x5A . "1011010") | ||
| 421 | (#x-E97 . "111010010111") | ||
| 422 | (#xE97 . "111010010111") | ||
| 423 | (#xFFFFFFFFFFFFFFFFF . ,(make-string 68 ?1)) | ||
| 424 | (#x-FFFFFFFFFFFFFFFFF . ,(make-string 68 ?1)))) | ||
| 425 | (let* ((n (car nbits)) (bits (cdr nbits)) | ||
| 426 | (extra (+ 1 2 2)) ; 1 (sign) + 2 (0b prefix) + 2 (pad) | ||
| 427 | (w (+ (length bits) extra)) | ||
| 428 | (Npad (- extra (if (< n 0) 1 0))) ; 0 & space padding w/ prefix | ||
| 429 | (Nsgn (- extra 1)) ; padding w/o sign | ||
| 430 | (sgn- (if (< n 0) "-" "")) (sgn (if (< n 0) "-" "+")) | ||
| 431 | (0pad (make-string Npad ?0)) (0padalt (make-string (- Npad 2) ?0)) | ||
| 432 | (spad (make-string Npad ? )) (spadalt (make-string (- Npad 2) ? )) | ||
| 433 | (+pad (make-string Nsgn ? )) (+padalt (make-string (- Nsgn 2) ? ))) | ||
| 434 | ;; %b | ||
| 435 | (should (string-equal (format "%b" n) (concat sgn- bits))) | ||
| 436 | (should (string-equal (format "%B" n) (concat sgn- bits))) | ||
| 437 | (should (string-equal (format "%#b" n) (concat sgn- "0b" bits))) | ||
| 438 | (should (string-equal (format "%#B" n) (concat sgn- "0B" bits))) | ||
| 439 | ;; %0wb | ||
| 440 | (should (string-equal (format (format "%%0%db" w) n) | ||
| 441 | (concat sgn- 0pad bits))) | ||
| 442 | (should (string-equal (format (format "%%0%dB" w) n) | ||
| 443 | (concat sgn- 0pad bits))) | ||
| 444 | (should (string-equal (format (format "%%#0%db" w) n) | ||
| 445 | (concat sgn- "0b" 0padalt bits))) | ||
| 446 | (should (string-equal (format (format "%%#0%dB" w) n) | ||
| 447 | (concat sgn- "0B" 0padalt bits))) | ||
| 448 | ;; %-wb | ||
| 449 | (should (string-equal (format (format "%%-%db" w) n) | ||
| 450 | (concat sgn- bits spad))) | ||
| 451 | (should (string-equal (format (format "%%-%dB" w) n) | ||
| 452 | (concat sgn- bits spad))) | ||
| 453 | (should (string-equal (format (format "%%#-%db" w) n) | ||
| 454 | (concat sgn- "0b" bits spadalt))) | ||
| 455 | (should (string-equal (format (format "%%#-%dB" w) n) | ||
| 456 | (concat sgn- "0B" bits spadalt))) | ||
| 457 | ;; %+wb | ||
| 458 | (should (string-equal (format (format "%%+%db" w) n) | ||
| 459 | (concat +pad sgn bits))) | ||
| 460 | (should (string-equal (format (format "%%+%dB" w) n) | ||
| 461 | (concat +pad sgn bits))) | ||
| 462 | (should (string-equal (format (format "%%#+%db" w) n) | ||
| 463 | (concat +padalt sgn "0b" bits))) | ||
| 464 | (should (string-equal (format (format "%%#+%dB" w) n) | ||
| 465 | (concat +padalt sgn "0B" bits))) | ||
| 466 | ;; % wb | ||
| 467 | (should (string-equal (format (format "%% %db" w) n) | ||
| 468 | (concat spad sgn- bits))) | ||
| 469 | (should (string-equal (format (format "%% %dB" w) n) | ||
| 470 | (concat spad sgn- bits))) | ||
| 471 | (should (string-equal (format (format "%%# %db" w) n) | ||
| 472 | (concat spadalt sgn- "0b" bits))) | ||
| 473 | (should (string-equal (format (format "%%# %dB" w) n) | ||
| 474 | (concat spadalt sgn- "0B" bits)))))) | ||
| 475 | |||
| 400 | ;;; Test for Bug#29609. | 476 | ;;; Test for Bug#29609. |
| 401 | (ert-deftest format-sharp-0-x () | 477 | (ert-deftest format-sharp-0-x () |
| 402 | (should (string-equal (format "%#08x" #x10) "0x000010")) | 478 | (should (string-equal (format "%#08x" #x10) "0x000010")) |
| @@ -415,19 +491,22 @@ Execute tests as described by `editfns-tests--transpose-regions-tests'." | |||
| 415 | (ert-deftest format-%x-large-float () | 491 | (ert-deftest format-%x-large-float () |
| 416 | (should (string-equal (format "%x" 18446744073709551616.0) | 492 | (should (string-equal (format "%x" 18446744073709551616.0) |
| 417 | "10000000000000000"))) | 493 | "10000000000000000"))) |
| 494 | |||
| 418 | (ert-deftest read-large-integer () | 495 | (ert-deftest read-large-integer () |
| 419 | (should (eq (type-of (read (format "%d0" most-negative-fixnum))) 'integer)) | 496 | (should (eq (type-of (read (format "%d0" most-negative-fixnum))) 'integer)) |
| 420 | (should (eq (type-of (read (format "%+d" (* -8.0 most-negative-fixnum)))) | 497 | (should (eq (type-of (read (format "%+d" (* -8.0 most-negative-fixnum)))) |
| 421 | 'integer)) | 498 | 'integer)) |
| 422 | (should (eq (type-of (read (substring (format "%d" most-negative-fixnum) 1))) | 499 | (should (eq (type-of (read (substring (format "%d" most-negative-fixnum) 1))) |
| 423 | 'integer)) | 500 | 'integer)) |
| 424 | (should (eq (type-of (read (format "#x%x" most-negative-fixnum))) | 501 | (should (eq (type-of (read (format "#b%b" most-negative-fixnum))) |
| 425 | 'integer)) | 502 | 'integer)) |
| 426 | (should (eq (type-of (read (format "#o%o" most-negative-fixnum))) | 503 | (should (eq (type-of (read (format "#o%o" most-negative-fixnum))) |
| 427 | 'integer)) | 504 | 'integer)) |
| 505 | (should (eq (type-of (read (format "#x%x" most-negative-fixnum))) | ||
| 506 | 'integer)) | ||
| 428 | (should (eq (type-of (read (format "#32rG%x" most-positive-fixnum))) | 507 | (should (eq (type-of (read (format "#32rG%x" most-positive-fixnum))) |
| 429 | 'integer)) | 508 | 'integer)) |
| 430 | (dolist (fmt '("%d" "%s" "#o%o" "#x%x")) | 509 | (dolist (fmt '("%d" "%s" "#b%b" "#o%o" "#x%x")) |
| 431 | (dolist (val (list most-negative-fixnum (1+ most-negative-fixnum) | 510 | (dolist (val (list most-negative-fixnum (1+ most-negative-fixnum) |
| 432 | -1 0 1 | 511 | -1 0 1 |
| 433 | (1- most-positive-fixnum) most-positive-fixnum)) | 512 | (1- most-positive-fixnum) most-positive-fixnum)) |
diff --git a/test/src/emacs-module-resources/mod-test.c b/test/src/emacs-module-resources/mod-test.c index 2c690457161..7e68d32883e 100644 --- a/test/src/emacs-module-resources/mod-test.c +++ b/test/src/emacs-module-resources/mod-test.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Test GNU Emacs modules. | 1 | /* Test GNU Emacs modules. |
| 2 | 2 | ||
| 3 | Copyright 2015-2025 Free Software Foundation, Inc. | 3 | Copyright 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/emacs-module-tests.el b/test/src/emacs-module-tests.el index fa585b48df7..7a8bcd4779d 100644 --- a/test/src/emacs-module-tests.el +++ b/test/src/emacs-module-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; emacs-module-tests.el --- Test GNU Emacs modules. -*- lexical-binding: t; -*- | 1 | ;;; emacs-module-tests.el --- Test GNU Emacs modules. -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/emacs-tests.el b/test/src/emacs-tests.el index 2196c22ac3c..66b914f62ea 100644 --- a/test/src/emacs-tests.el +++ b/test/src/emacs-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; emacs-tests.el --- unit tests for emacs.c -*- lexical-binding: t; -*- | 1 | ;;; emacs-tests.el --- unit tests for emacs.c -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/eval-tests.el b/test/src/eval-tests.el index 64a108f8744..1e7c33069a7 100644 --- a/test/src/eval-tests.el +++ b/test/src/eval-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; eval-tests.el --- unit tests for src/eval.c -*- lexical-binding: t; -*- | 1 | ;;; eval-tests.el --- unit tests for src/eval.c -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Philipp Stephani <phst@google.com> | 5 | ;; Author: Philipp Stephani <phst@google.com> |
| 6 | 6 | ||
diff --git a/test/src/fileio-tests.el b/test/src/fileio-tests.el index 211536f415a..1a4d0423b89 100644 --- a/test/src/fileio-tests.el +++ b/test/src/fileio-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; fileio-tests.el --- unit tests for src/fileio.c -*- lexical-binding: t; -*- | 1 | ;;; fileio-tests.el --- unit tests for src/fileio.c -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/filelock-tests.el b/test/src/filelock-tests.el index 330b7879371..795039cd9cb 100644 --- a/test/src/filelock-tests.el +++ b/test/src/filelock-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; filelock-tests.el --- test file locking -*- lexical-binding: t; -*- | 1 | ;;; filelock-tests.el --- test file locking -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/floatfns-tests.el b/test/src/floatfns-tests.el index 04ee97a6137..49e76b809a3 100644 --- a/test/src/floatfns-tests.el +++ b/test/src/floatfns-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; floatfns-tests.el --- tests for floating point operations -*- lexical-binding: t -*- | 1 | ;;; floatfns-tests.el --- tests for floating point operations -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/fns-tests.el b/test/src/fns-tests.el index 7e9286a4251..fa00cec6118 100644 --- a/test/src/fns-tests.el +++ b/test/src/fns-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; fns-tests.el --- tests for src/fns.c -*- lexical-binding:t -*- | 1 | ;;; fns-tests.el --- tests for src/fns.c -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -38,10 +38,9 @@ | |||
| 38 | (should (= (random 1) 0)) | 38 | (should (= (random 1) 0)) |
| 39 | (should (>= (random 10) 0)) | 39 | (should (>= (random 10) 0)) |
| 40 | (should (< (random 10) 10)) | 40 | (should (< (random 10) 10)) |
| 41 | ;; On OpenBSD random is non-deterministic. | 41 | ;; On OpenBSD random is always non-deterministic. |
| 42 | (if (and (eq system-type 'berkeley-unix) | 42 | (unless (and (eq system-type 'berkeley-unix) |
| 43 | (string-match-p "openbsd" system-configuration)) | 43 | (string-match-p "openbsd" system-configuration)) |
| 44 | (should (not (equal (random "seed") (random "seed")))) | ||
| 45 | (should (equal (random "seed") (random "seed")))) | 44 | (should (equal (random "seed") (random "seed")))) |
| 46 | ;; The probability of four calls being the same is low. | 45 | ;; The probability of four calls being the same is low. |
| 47 | ;; This makes sure that the value isn't constant. | 46 | ;; This makes sure that the value isn't constant. |
diff --git a/test/src/font-tests.el b/test/src/font-tests.el index cc370429557..532b04c66a7 100644 --- a/test/src/font-tests.el +++ b/test/src/font-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; font-tests.el --- Test suite for font-related functions. -*- lexical-binding: t -*- | 1 | ;;; font-tests.el --- Test suite for font-related functions. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2011-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2011-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Chong Yidong <cyd@stupidchicken.com> | 5 | ;; Author: Chong Yidong <cyd@stupidchicken.com> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/src/image-tests.el b/test/src/image-tests.el index 6ebf54689b4..8527b2b2fa4 100644 --- a/test/src/image-tests.el +++ b/test/src/image-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; image-tests.el --- Tests for image.c -*- lexical-binding: t -*- | 1 | ;;; image-tests.el --- Tests for image.c -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> | 5 | ;; Author: Stefan Kangas <stefankangas@gmail.com> |
| 6 | 6 | ||
diff --git a/test/src/indent-tests.el b/test/src/indent-tests.el index 0edc65e3876..5c6e25868f8 100644 --- a/test/src/indent-tests.el +++ b/test/src/indent-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; indent-tests.el --- tests for src/indent.c -*- lexical-binding:t -*- | 1 | ;;; indent-tests.el --- tests for src/indent.c -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/inotify-tests.el b/test/src/inotify-tests.el index aa7801d1e2c..da186aab72f 100644 --- a/test/src/inotify-tests.el +++ b/test/src/inotify-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; inotify-tests.el --- Test suite for inotify. -*- lexical-binding: t -*- | 1 | ;;; inotify-tests.el --- Test suite for inotify. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2012-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2012-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Rüdiger Sonderfeld <ruediger@c-plusplus.de> | 5 | ;; Author: Rüdiger Sonderfeld <ruediger@c-plusplus.de> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/src/json-tests.el b/test/src/json-tests.el index 30cf32039f9..ec079f020bd 100644 --- a/test/src/json-tests.el +++ b/test/src/json-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; json-tests.el --- unit tests for json.c -*- lexical-binding: t; -*- | 1 | ;;; json-tests.el --- unit tests for json.c -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/keyboard-tests.el b/test/src/keyboard-tests.el index 3a36446ac83..d3787090794 100644 --- a/test/src/keyboard-tests.el +++ b/test/src/keyboard-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; keyboard-tests.el --- Tests for keyboard.c -*- lexical-binding: t -*- | 1 | ;;; keyboard-tests.el --- Tests for keyboard.c -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/keymap-tests.el b/test/src/keymap-tests.el index 0d203f6fcb0..c53ab7871c3 100644 --- a/test/src/keymap-tests.el +++ b/test/src/keymap-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; keymap-tests.el --- Test suite for src/keymap.c -*- lexical-binding: t -*- | 1 | ;;; keymap-tests.el --- Test suite for src/keymap.c -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Juanma Barranquero <lekktu@gmail.com> | 5 | ;; Author: Juanma Barranquero <lekktu@gmail.com> |
| 6 | ;; Stefan Kangas <stefankangas@gmail.com> | 6 | ;; Stefan Kangas <stefankangas@gmail.com> |
diff --git a/test/src/lcms-tests.el b/test/src/lcms-tests.el index 773f7c02fb2..74de139f0a1 100644 --- a/test/src/lcms-tests.el +++ b/test/src/lcms-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; lcms-tests.el --- tests for Little CMS interface -*- lexical-binding: t -*- | 1 | ;;; lcms-tests.el --- tests for Little CMS interface -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Maintainer: emacs-devel@gnu.org | 5 | ;; Maintainer: emacs-devel@gnu.org |
| 6 | 6 | ||
diff --git a/test/src/lread-tests.el b/test/src/lread-tests.el index d1320a665a5..e621a9d58b9 100644 --- a/test/src/lread-tests.el +++ b/test/src/lread-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; lread-tests.el --- tests for lread.c -*- lexical-binding: t; -*- | 1 | ;;; lread-tests.el --- tests for lread.c -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Philipp Stephani <phst@google.com> | 5 | ;; Author: Philipp Stephani <phst@google.com> |
| 6 | 6 | ||
diff --git a/test/src/marker-tests.el b/test/src/marker-tests.el index ac319dd4c32..ddd8bc702e4 100644 --- a/test/src/marker-tests.el +++ b/test/src/marker-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; marker-tests.el --- tests for marker.c functions -*- lexical-binding: t -*- | 1 | ;;; marker-tests.el --- tests for marker.c functions -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/minibuf-tests.el b/test/src/minibuf-tests.el index 2f932eacc4a..5bfbe710b10 100644 --- a/test/src/minibuf-tests.el +++ b/test/src/minibuf-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; minibuf-tests.el --- tests for minibuf.c functions -*- lexical-binding: t -*- | 1 | ;;; minibuf-tests.el --- tests for minibuf.c functions -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/print-tests.el b/test/src/print-tests.el index 0ef47a1d9d8..1485e063ab3 100644 --- a/test/src/print-tests.el +++ b/test/src/print-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; print-tests.el --- tests for src/print.c -*- lexical-binding: t; -*- | 1 | ;;; print-tests.el --- tests for src/print.c -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/process-tests.el b/test/src/process-tests.el index b8ceb931533..2cc5b37b187 100644 --- a/test/src/process-tests.el +++ b/test/src/process-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; process-tests.el --- Testing the process facilities -*- lexical-binding: t -*- | 1 | ;;; process-tests.el --- Testing the process facilities -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2013-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2013-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -106,6 +106,9 @@ process to complete." | |||
| 106 | (looking-at "hello stdout!"))) | 106 | (looking-at "hello stdout!"))) |
| 107 | (should (with-current-buffer stderr-buffer | 107 | (should (with-current-buffer stderr-buffer |
| 108 | (goto-char (point-min)) | 108 | (goto-char (point-min)) |
| 109 | ;; Instrument for bug#80166. | ||
| 110 | (when (getenv "EMACS_EMBA_CI") | ||
| 111 | (message "stderr\n%s" (buffer-string))) | ||
| 109 | (looking-at "hello stderr!")))))) | 112 | (looking-at "hello stderr!")))))) |
| 110 | 113 | ||
| 111 | (ert-deftest process-test-stderr-filter () | 114 | (ert-deftest process-test-stderr-filter () |
diff --git a/test/src/profiler-tests.el b/test/src/profiler-tests.el index fe50de713e2..555a579f21c 100644 --- a/test/src/profiler-tests.el +++ b/test/src/profiler-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; profiler-tests.el --- tests for src/profiler.c -*- lexical-binding:t -*- | 1 | ;;; profiler-tests.el --- tests for src/profiler.c -*- lexical-binding:t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2025-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/regex-emacs-tests.el b/test/src/regex-emacs-tests.el index 3b69f1a808f..061fb73ba8f 100644 --- a/test/src/regex-emacs-tests.el +++ b/test/src/regex-emacs-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; regex-emacs-tests.el --- tests for regex-emacs.c -*- lexical-binding: t -*- | 1 | ;;; regex-emacs-tests.el --- tests for regex-emacs.c -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/search-tests.el b/test/src/search-tests.el index 2af6f4fb933..74d36204e3a 100644 --- a/test/src/search-tests.el +++ b/test/src/search-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; search-tests.el --- tests for search.c functions -*- lexical-binding: t -*- | 1 | ;;; search-tests.el --- tests for search.c functions -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2016, 2018-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2016, 2018-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/sqlite-tests.el b/test/src/sqlite-tests.el index a835fea7632..a9fab7da681 100644 --- a/test/src/sqlite-tests.el +++ b/test/src/sqlite-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; sqlite-tests.el --- Tests for sqlite.el -*- lexical-binding: t; -*- | 1 | ;;; sqlite-tests.el --- Tests for sqlite.el -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/syntax-tests.el b/test/src/syntax-tests.el index 8b8cbee1948..9e0246f5338 100644 --- a/test/src/syntax-tests.el +++ b/test/src/syntax-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; syntax-tests.el --- tests for syntax.c functions -*- lexical-binding: t -*- | 1 | ;;; syntax-tests.el --- tests for syntax.c functions -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2017-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2017-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/textprop-tests.el b/test/src/textprop-tests.el index d29a644e96d..ee795914905 100644 --- a/test/src/textprop-tests.el +++ b/test/src/textprop-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; textprop-tests.el --- Test suite for text properties. -*- lexical-binding: t -*- | 1 | ;;; textprop-tests.el --- Test suite for text properties. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2015-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2015-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Wolfgang Jenkner <wjenkner@inode.at> | 5 | ;; Author: Wolfgang Jenkner <wjenkner@inode.at> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
diff --git a/test/src/thread-tests.el b/test/src/thread-tests.el index 51408de80cc..9cbe1f3a1aa 100644 --- a/test/src/thread-tests.el +++ b/test/src/thread-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; thread-tests.el --- tests for threads. -*- lexical-binding: t -*- | 1 | ;;; thread-tests.el --- tests for threads. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2012-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2012-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/timefns-tests.el b/test/src/timefns-tests.el index 89a199f37fc..20c18f989e2 100644 --- a/test/src/timefns-tests.el +++ b/test/src/timefns-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; timefns-tests.el --- tests for timefns.c -*- lexical-binding: t -*- | 1 | ;;; timefns-tests.el --- tests for timefns.c -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2016-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/treesit-tests.el b/test/src/treesit-tests.el index 89303114735..5492a45b1de 100644 --- a/test/src/treesit-tests.el +++ b/test/src/treesit-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; treesit-tests.el --- tests for src/treesit.c -*- lexical-binding: t; -*- | 1 | ;;; treesit-tests.el --- tests for src/treesit.c -*- lexical-binding: t; -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2021-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2021-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
| @@ -235,7 +235,7 @@ | |||
| 235 | ;;; Linecol | 235 | ;;; Linecol |
| 236 | 236 | ||
| 237 | (ert-deftest treesit-linecol-basic () | 237 | (ert-deftest treesit-linecol-basic () |
| 238 | "Tests for basic lincol synchronization." | 238 | "Tests for basic linecol synchronization." |
| 239 | (skip-unless (fboundp 'treesit--linecol-cache)) | 239 | (skip-unless (fboundp 'treesit--linecol-cache)) |
| 240 | (with-temp-buffer | 240 | (with-temp-buffer |
| 241 | (should (equal (treesit--linecol-cache) | 241 | (should (equal (treesit--linecol-cache) |
diff --git a/test/src/undo-tests.el b/test/src/undo-tests.el index c0984c13ea6..55d3bfe8930 100644 --- a/test/src/undo-tests.el +++ b/test/src/undo-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; undo-tests.el --- Tests of primitive-undo -*- lexical-binding: t -*- | 1 | ;;; undo-tests.el --- Tests of primitive-undo -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2012-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2012-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Aaron S. Hawley <aaron.s.hawley@gmail.com> | 5 | ;; Author: Aaron S. Hawley <aaron.s.hawley@gmail.com> |
| 6 | 6 | ||
diff --git a/test/src/xdisp-tests.el b/test/src/xdisp-tests.el index 62f98928720..3b5ab902cc2 100644 --- a/test/src/xdisp-tests.el +++ b/test/src/xdisp-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; xdisp-tests.el --- tests for xdisp.c functions -*- lexical-binding: t -*- | 1 | ;;; xdisp-tests.el --- tests for xdisp.c functions -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/xfaces-tests.el b/test/src/xfaces-tests.el index 6129018262c..ae57909a664 100644 --- a/test/src/xfaces-tests.el +++ b/test/src/xfaces-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; xfaces-tests.el --- tests for xfaces.c -*- lexical-binding: t -*- | 1 | ;;; xfaces-tests.el --- tests for xfaces.c -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2020-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2020-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 6 | 6 | ||
diff --git a/test/src/xml-tests.el b/test/src/xml-tests.el index 0add563b3fe..d8729e9cfd0 100644 --- a/test/src/xml-tests.el +++ b/test/src/xml-tests.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; xml-tests.el --- Test suite for libxml parsing. -*- lexical-binding: t -*- | 1 | ;;; xml-tests.el --- Test suite for libxml parsing. -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 2014-2025 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2014-2026 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Ulf Jasper <ulf.jasper@web.de> | 5 | ;; Author: Ulf Jasper <ulf.jasper@web.de> |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |