From: Glenn Morris Date: Sun, 5 Feb 2012 03:26:26 +0000 (-0800) Subject: Mention ERT in the Emacs manual. X-Git-Tag: emacs-pretest-24.0.94~313 X-Git-Url: https://code.delx.au/gnu-emacs/commitdiff_plain/d273439c6a02f669a8d9830723e7e49818985065 Mention ERT in the Emacs manual. * doc/emacs/maintaining.texi (Maintaining): Add cross-ref to ERT. * etc/NEWS: Related markup. --- diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 54cd9fe9b9..6ff188a3da 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog @@ -1,3 +1,7 @@ +2012-02-05 Glenn Morris + + * maintaining.texi (Maintaining): Add cross-ref to ERT. + 2012-02-04 Glenn Morris * macos.texi (Customization options specific to Mac OS / GNUstep): diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi index 2ec477031c..984c65fbf2 100644 --- a/doc/emacs/maintaining.texi +++ b/doc/emacs/maintaining.texi @@ -6,7 +6,9 @@ @chapter Maintaining Large Programs This chapter describes Emacs features for maintaining large -programs. +programs. In addition to the features described here, you may find +the @file{ERT} (``Emacs Lisp Regression Testing'') library useful in +this context (@pxref{Top,,ERT,ert, Emacs Lisp Regression Testing}). @menu * Version Control:: Using version control systems. diff --git a/etc/NEWS b/etc/NEWS index b50e04d217..45d27ae016 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -1071,6 +1071,7 @@ of function value which looks like (closure ENV ARGS &rest BODY). *** New function `special-variable-p' to check whether a variable is declared as dynamically bound. ++++ ** An Emacs Lisp testing tool is now included. Emacs Lisp developers can use this tool to write automated tests for their code. See the ERT info manual for details.