From 9b0ffdbaddec7d9d46dcd7fc525c4fde7c842c46 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 7 Dec 2015 08:35:53 -0800 Subject: Spelling fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * doc/misc/calc.texi (Predefined Units): Use the bland modern scientific style for spelling the units “ampere” and “angstrom” rather than the older style “Ampere” and “Ångstrom”. The latter spelling was wrong anyway (it should have been “Ångström”). * lisp/emacs-lisp/ert.el (ert--explain-equal-rec): Fix misspelling of ‘atom’ in code. --- src/emacs-module.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/emacs-module.c') diff --git a/src/emacs-module.c b/src/emacs-module.c index 9967fc49afe..620df930a44 100644 --- a/src/emacs-module.c +++ b/src/emacs-module.c @@ -906,7 +906,7 @@ value_to_lisp (emacs_value v) /* Attempt to convert O to an emacs_value. Do not do any checking or or allocate any storage; the caller should prevent or detect - any resulting bitpattern that is not a valid emacs_value. */ + any resulting bit pattern that is not a valid emacs_value. */ static emacs_value lisp_to_value_bits (Lisp_Object o) { @@ -932,7 +932,7 @@ lisp_to_value (Lisp_Object o) if (! EQ (o, value_to_lisp_bits (v))) { - /* Package the uncompressible object pointer inside a pair + /* Package the incompressible object pointer inside a pair that is compressible. */ Lisp_Object pair = Fcons (o, ltv_mark); @@ -944,7 +944,7 @@ lisp_to_value (Lisp_Object o) pair = Fcons (o, pair); /* Plant the mark. The garbage collector will eventually - reclaim any just-allocated uncompressible pairs. */ + reclaim any just-allocated incompressible pairs. */ XSETCDR (pair, ltv_mark); } -- cgit v1.2.3