diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-12-07 08:35:53 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-12-07 08:38:05 -0800 |
commit | 9b0ffdbaddec7d9d46dcd7fc525c4fde7c842c46 (patch) | |
tree | 2ca71fc967f2ecd5c59c51bad3d8f10e666eabfa /src/emacs-module.c | |
parent | f366f23624d9c571a9203c23d73cd5a2b141483f (diff) | |
download | emacs-9b0ffdbaddec7d9d46dcd7fc525c4fde7c842c46.tar.gz emacs-9b0ffdbaddec7d9d46dcd7fc525c4fde7c842c46.tar.bz2 emacs-9b0ffdbaddec7d9d46dcd7fc525c4fde7c842c46.zip |
Spelling fixes
* 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.
Diffstat (limited to 'src/emacs-module.c')
-rw-r--r-- | src/emacs-module.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); } |