1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-23 06:21:29 -07:00

Fix typo.

Copied from Perforce
 Change: 185252
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2014-04-06 17:24:08 +01:00
parent ee5b6b12b3
commit 46da5d0d69

View file

@ -103,10 +103,10 @@ but ``arg.h`` provides a macro for this::
We define keys as static structures (rather than, say, an enum) because:
- The set of keys can be extended indefinitely.
- The set of keys can be extended by indepdently linked modules.
- The set of keys can be extended by independently linked modules.
- The structure contents allow strong checking of argument lists.
In the MPS Interface, we declare keys like this::
In the MPS C Interface, we declare keys like this::
extern const struct mps_key_s _mps_key_extend_by;
#define MPS_KEY_EXTEND_BY (&_mps_key_extend_by)