aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTE
diff options
context:
space:
mode:
authorJohn Wiegley2016-01-11 22:50:30 -0800
committerJohn Wiegley2016-01-11 22:50:30 -0800
commitfee9e3ff5e3181e5e477849b5db94e7e39a4e0c4 (patch)
treeb5a8934d6b587f3517d2b8214a6738374b07820d /CONTRIBUTE
parent2d7f4d99f715a3b32bb2873be6e9b4e7e1dad1da (diff)
parentce4a052415b70030ee591af3cb5bed0fb79ef3aa (diff)
downloademacs-fee9e3ff5e3181e5e477849b5db94e7e39a4e0c4.tar.gz
emacs-fee9e3ff5e3181e5e477849b5db94e7e39a4e0c4.zip
Merge from origin/emacs-25
ce4a052 Add defvar-local to lisp-imenu-generic-expression a0121bc Revert commit b1e3d14845517bfa9fa5d6d3840f3ab3160306fd 76fe2d5 * lisp/emacs-lisp/autoload.el (autoload-find-destination): Doc fix. 1ae088f * lisp/emacs-lisp/autoload.el (autoload-find-destination): b6b47af Properly encode/decode base64Binary data in SOAP c632466 Obey coding-system-for-write when writing stdout/stderr in batch 2f32cb5 * doc/misc/efaq.texi (Packages that do not come with Emacs): Update the URI of MELPA and marmalade-repo. Reported by CHENG Goa <chenggao@royau.me> in https://lists.gnu.org/archive/html/emacs-devel/2016-01/msg00390.html. d2937aa * lisp/progmodes/opascal.el (opascal-mode-syntax-table): 5330c25 * lisp/progmodes/xscheme.el (xscheme-prompt-for-expression-exit): 7380990 Remove function wrongly on AWK Mode value of context fontification hook. d400753 * src/buffer.c: Stick with ASCII in doc string. 221240c Reword transient-mark-mode doc string 977d3ea Update doc string of 'selective-display' 229c3fa Make C++ buffers writeable when writing their initial text properties. f5c762c Additional changes for "make check-expensive" 1729cf3 ; * admin/MAINTAINERS: Remove myself. 33219d3 Apply text properties for <, > in new after-change function (C++ Java Modes).
Diffstat (limited to 'CONTRIBUTE')
-rw-r--r--CONTRIBUTE8
1 files changed, 8 insertions, 0 deletions
diff --git a/CONTRIBUTE b/CONTRIBUTE
index 19ec68221c4..323f9b9d060 100644
--- a/CONTRIBUTE
+++ b/CONTRIBUTE
@@ -262,12 +262,20 @@ Emacs uses ERT, Emacs Lisp Regression Testing, for testing. See (info
262"(ert)") or https://www.gnu.org/software/emacs/manual/html_node/ert/ 262"(ert)") or https://www.gnu.org/software/emacs/manual/html_node/ert/
263for more information on writing and running tests. 263for more information on writing and running tests.
264 264
265If your test lasts longer than some few seconds, mark it in its
266`ert-deftest' definition with ":tags '(:expensive-test)".
267
265To run tests on the entire Emacs tree, run "make check" from the 268To run tests on the entire Emacs tree, run "make check" from the
266top-level directory. Most tests are in the directory 269top-level directory. Most tests are in the directory
267"test/". From the "test/" directory, run "make 270"test/". From the "test/" directory, run "make
268<filename>" to run the tests for <filename>.el(c). See 271<filename>" to run the tests for <filename>.el(c). See
269"test/Makefile" for more information. 272"test/Makefile" for more information.
270 273
274Tests which are tagged ":expensive-test" are enabled additionally, if
275you run "make check-expensive" from the top-level directory. "make
276<filename>" as mentioned above incorporates expensive tests for
277<filename>.el(c).
278
271** Understanding Emacs Internals. 279** Understanding Emacs Internals.
272 280
273The best way to understand Emacs Internals is to read the code, 281The best way to understand Emacs Internals is to read the code,