diff options
| author | Paul Eggert | 2012-10-21 00:23:34 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-10-21 00:23:34 -0700 |
| commit | 791ef5f8ea3810d934f44a4dab828767c7db4acd (patch) | |
| tree | c7b69335d23a625e2df9f14de0872c05ce05fe15 /src | |
| parent | ad483434e52196daa45b87cd6e1528c9ba0bdeb8 (diff) | |
| download | emacs-791ef5f8ea3810d934f44a4dab828767c7db4acd.tar.gz emacs-791ef5f8ea3810d934f44a4dab828767c7db4acd.zip | |
Spelling fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 4 | ||||
| -rw-r--r-- | src/w32fns.c | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/lisp.h b/src/lisp.h index 52b5b685b7d..4cf8fef0de3 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -308,7 +308,7 @@ enum Lisp_Fwd_Type | |||
| 308 | First, there are already a couple of Lisp types that can be used if | 308 | First, there are already a couple of Lisp types that can be used if |
| 309 | your new type does not need to be exposed to Lisp programs nor | 309 | your new type does not need to be exposed to Lisp programs nor |
| 310 | displayed to users. These are Lisp_Save_Value, a Lisp_Misc | 310 | displayed to users. These are Lisp_Save_Value, a Lisp_Misc |
| 311 | subtype, and PVEC_OTHER, a kind of vectorlike object. The former | 311 | subtype; and PVEC_OTHER, a kind of vectorlike object. The former |
| 312 | is suitable for temporarily stashing away pointers and integers in | 312 | is suitable for temporarily stashing away pointers and integers in |
| 313 | a Lisp object (see the existing uses of make_save_value and | 313 | a Lisp object (see the existing uses of make_save_value and |
| 314 | XSAVE_VALUE). The latter is useful for vector-like Lisp objects | 314 | XSAVE_VALUE). The latter is useful for vector-like Lisp objects |
| @@ -322,7 +322,7 @@ enum Lisp_Fwd_Type | |||
| 322 | To define a new data type, add one more Lisp_Misc subtype or one | 322 | To define a new data type, add one more Lisp_Misc subtype or one |
| 323 | more pseudovector subtype. Pseudovectors are more suitable for | 323 | more pseudovector subtype. Pseudovectors are more suitable for |
| 324 | objects with several slots that need to support fast random access, | 324 | objects with several slots that need to support fast random access, |
| 325 | whil Lisp_Misc types are foreverything else. A pseudovector object | 325 | while Lisp_Misc types are for everything else. A pseudovector object |
| 326 | provides one or more slots for Lisp objects, followed by struct | 326 | provides one or more slots for Lisp objects, followed by struct |
| 327 | members that are accessible only from C. A Lisp_Misc object is a | 327 | members that are accessible only from C. A Lisp_Misc object is a |
| 328 | wrapper for a C struct that can contain anything you like. | 328 | wrapper for a C struct that can contain anything you like. |
diff --git a/src/w32fns.c b/src/w32fns.c index 8dd3eb83c60..28e8ea02e05 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -211,7 +211,7 @@ static void w32_show_hourglass (struct frame *); | |||
| 211 | static void w32_hide_hourglass (void); | 211 | static void w32_hide_hourglass (void); |
| 212 | 212 | ||
| 213 | #ifdef WINDOWSNT | 213 | #ifdef WINDOWSNT |
| 214 | /* From w32inevet.c */ | 214 | /* From w32inevt.c */ |
| 215 | extern int faked_key; | 215 | extern int faked_key; |
| 216 | #endif /* WINDOWSNT */ | 216 | #endif /* WINDOWSNT */ |
| 217 | 217 | ||
| @@ -7711,4 +7711,3 @@ emacs_abort (void) | |||
| 7711 | break; | 7711 | break; |
| 7712 | } | 7712 | } |
| 7713 | } | 7713 | } |
| 7714 | |||