diff options
| author | Sean Whitton | 2025-04-27 11:59:17 +0800 |
|---|---|---|
| committer | Sean Whitton | 2025-04-27 11:59:17 +0800 |
| commit | b5967dda32dd9091389e30d8aaa46bdf8319d3e8 (patch) | |
| tree | 16cbcdb76987d120f26a758e25b48bc457551bf3 | |
| parent | be4819bd578b696a4692cf7cc1b3d52390a65129 (diff) | |
| download | emacs-b5967dda32dd9091389e30d8aaa46bdf8319d3e8.tar.gz emacs-b5967dda32dd9091389e30d8aaa46bdf8319d3e8.zip | |
; * doc/misc/ert.texi (Introduction): Be more Lisp-specific.
| -rw-r--r-- | doc/misc/ert.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/misc/ert.texi b/doc/misc/ert.texi index fdf2b2b8aaf..bde76d79394 100644 --- a/doc/misc/ert.texi +++ b/doc/misc/ert.texi | |||
| @@ -134,11 +134,11 @@ package @file{pp.el}): | |||
| 134 | ;; (pp-to-string '('a 'b)) ; same as above | 134 | ;; (pp-to-string '('a 'b)) ; same as above |
| 135 | @end lisp | 135 | @end lisp |
| 136 | 136 | ||
| 137 | The code contained in these comments can be evaluated from time to | 137 | The Lisp forms contained in these comments can be evaluated from time to |
| 138 | time to compare the output with the expected output. ERT formalizes | 138 | time, e.g. with @kbd{C-x C-e}, to compare the output with the expected |
| 139 | this and introduces a common convention, which simplifies Emacs | 139 | output. ERT formalizes this and introduces a common convention, which |
| 140 | development, since programmers no longer have to manually find and | 140 | simplifies Emacs development, since programmers no longer have to |
| 141 | evaluate such comments. | 141 | manually find and evaluate such comments. |
| 142 | 142 | ||
| 143 | An ERT test definition equivalent to the above comments is this: | 143 | An ERT test definition equivalent to the above comments is this: |
| 144 | 144 | ||