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 | |
| parent | ad483434e52196daa45b87cd6e1528c9ba0bdeb8 (diff) | |
| download | emacs-791ef5f8ea3810d934f44a4dab828767c7db4acd.tar.gz emacs-791ef5f8ea3810d934f44a4dab828767c7db4acd.zip | |
Spelling fixes.
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | lisp/window.el | 2 | ||||
| -rw-r--r-- | src/lisp.h | 4 | ||||
| -rw-r--r-- | src/w32fns.c | 3 |
4 files changed, 5 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 5520dd6a903..7104b9de170 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -2538,7 +2538,7 @@ no_return_alloc_pixels | |||
| 2538 | fi | 2538 | fi |
| 2539 | 2539 | ||
| 2540 | if test "${HAVE_XPM}" = "yes"; then | 2540 | if test "${HAVE_XPM}" = "yes"; then |
| 2541 | AC_DEFINE(HAVE_XPM, 1, [Define to 1 if you have the Xpm libary (-lXpm).]) | 2541 | AC_DEFINE(HAVE_XPM, 1, [Define to 1 if you have the Xpm library (-lXpm).]) |
| 2542 | LIBXPM=-lXpm | 2542 | LIBXPM=-lXpm |
| 2543 | fi | 2543 | fi |
| 2544 | fi | 2544 | fi |
diff --git a/lisp/window.el b/lisp/window.el index a17e0adcdfe..fa7b08375ce 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -5828,7 +5828,7 @@ buffer with the name BUFFER-OR-NAME and return that buffer." | |||
| 5828 | "If non-nil, `switch-to-buffer' tries to preserve `window-point'. | 5828 | "If non-nil, `switch-to-buffer' tries to preserve `window-point'. |
| 5829 | If this is nil, `switch-to-buffer' displays the buffer at that | 5829 | If this is nil, `switch-to-buffer' displays the buffer at that |
| 5830 | buffer's `point'. If this is `already-displayed', it tries to | 5830 | buffer's `point'. If this is `already-displayed', it tries to |
| 5831 | display the buffer at its pevious position in the selected | 5831 | display the buffer at its previous position in the selected |
| 5832 | window, provided the buffer is currently displayed in some other | 5832 | window, provided the buffer is currently displayed in some other |
| 5833 | window on any visible or iconified frame. If this is t, it | 5833 | window on any visible or iconified frame. If this is t, it |
| 5834 | unconditionally tries to display the buffer at its previous | 5834 | unconditionally tries to display the buffer at its previous |
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 | |||