aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-12-14 23:24:10 -0800
committerPaul Eggert2011-12-14 23:24:10 -0800
commitbbd240ceeefcf4181aa9205f4e743b32b5c68e1f (patch)
tree957397737a8b0e76a40dfe79f191945e9f5aa09b /src
parent100d5755ed82e6c47833a3559fb0a154381d5afd (diff)
downloademacs-bbd240ceeefcf4181aa9205f4e743b32b5c68e1f.tar.gz
emacs-bbd240ceeefcf4181aa9205f4e743b32b5c68e1f.zip
Spelling fixes.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog.112
-rw-r--r--src/ChangeLog.82
-rw-r--r--src/charset.c2
-rw-r--r--src/charset.h4
-rw-r--r--src/font.h2
-rw-r--r--src/w16select.c9
-rw-r--r--src/w32font.c2
7 files changed, 11 insertions, 12 deletions
diff --git a/src/ChangeLog.11 b/src/ChangeLog.11
index f9fd442da3f..289ef168088 100644
--- a/src/ChangeLog.11
+++ b/src/ChangeLog.11
@@ -30657,7 +30657,7 @@
30657 (display_buffer): Do not set split_height_threshold to twice the 30657 (display_buffer): Do not set split_height_threshold to twice the
30658 value of window_min_height to avoid changing the value of a 30658 value of window_min_height to avoid changing the value of a
30659 customizable variable. Rather explicitly check whether the 30659 customizable variable. Rather explicitly check whether the
30660 height of the window that shall be splitted is at least as large 30660 height of the window that shall be split is at least as large
30661 as split_height_threshold. 30661 as split_height_threshold.
30662 (Fwindow_full_width_p): New defun. 30662 (Fwindow_full_width_p): New defun.
30663 (syms_of_window): Defsubr it. 30663 (syms_of_window): Defsubr it.
diff --git a/src/ChangeLog.8 b/src/ChangeLog.8
index e2572e8ac88..6973717a7d7 100644
--- a/src/ChangeLog.8
+++ b/src/ChangeLog.8
@@ -11485,7 +11485,7 @@
11485 Substitute homedir by `~' also in default_filename. 11485 Substitute homedir by `~' also in default_filename.
11486 11486
11487 * xdisp.c (try_window_id): Fix computation of tab_offset when 11487 * xdisp.c (try_window_id): Fix computation of tab_offset when
11488 backing up over a character that is splitted across lines. 11488 backing up over a character that is split across lines.
11489 11489
114901999-05-08 Kenichi HANDA <handa@etl.go.jp> 114901999-05-08 Kenichi HANDA <handa@etl.go.jp>
11491 11491
diff --git a/src/charset.c b/src/charset.c
index 3c15f1bee54..49fc7288069 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -1660,7 +1660,7 @@ maybe_unify_char (int c, Lisp_Object val)
1660} 1660}
1661 1661
1662 1662
1663/* Return a character correponding to the code-point CODE of 1663/* Return a character corresponding to the code-point CODE of
1664 CHARSET. */ 1664 CHARSET. */
1665 1665
1666int 1666int
diff --git a/src/charset.h b/src/charset.h
index fc35d6bb991..5ca83130b77 100644
--- a/src/charset.h
+++ b/src/charset.h
@@ -238,7 +238,7 @@ struct charset
238 int unified_p; 238 int unified_p;
239}; 239};
240 240
241/* Hash table of charset symbols vs. the correponding attribute 241/* Hash table of charset symbols vs. the corresponding attribute
242 vectors. */ 242 vectors. */
243extern Lisp_Object Vcharset_hash_table; 243extern Lisp_Object Vcharset_hash_table;
244 244
@@ -389,7 +389,7 @@ extern Lisp_Object Vchar_charset_set;
389#endif 389#endif
390 390
391 391
392/* Return a character correponding to the code-point CODE of CHARSET. 392/* Return a character corresponding to the code-point CODE of CHARSET.
393 Try some optimization before calling decode_char. */ 393 Try some optimization before calling decode_char. */
394 394
395#define DECODE_CHAR(charset, code) \ 395#define DECODE_CHAR(charset, code) \
diff --git a/src/font.h b/src/font.h
index 8ca7c9c19c4..b6c1acf4a30 100644
--- a/src/font.h
+++ b/src/font.h
@@ -621,7 +621,7 @@ struct font_driver
621 /* Optional. 621 /* Optional.
622 Get coordinates of the INDEXth anchor point of the glyph whose 622 Get coordinates of the INDEXth anchor point of the glyph whose
623 code is CODE. Store the coordinates in *X and *Y. Return 0 if 623 code is CODE. Store the coordinates in *X and *Y. Return 0 if
624 the operations was successfull. Otherwise return -1. */ 624 the operations was successful. Otherwise return -1. */
625 int (*anchor_point) (struct font *font, unsigned code, int index, 625 int (*anchor_point) (struct font *font, unsigned code, int index,
626 int *x, int *y); 626 int *x, int *y);
627 627
diff --git a/src/w16select.c b/src/w16select.c
index cae7a6f82dd..7ba62fde0e5 100644
--- a/src/w16select.c
+++ b/src/w16select.c
@@ -114,7 +114,7 @@ identify_winoldap_version (void)
114 return regs.x.ax; 114 return regs.x.ax;
115} 115}
116 116
117/* Open the clipboard, return non-zero if successfull. */ 117/* Open the clipboard, return non-zero if successful. */
118unsigned 118unsigned
119open_clipboard (void) 119open_clipboard (void)
120{ 120{
@@ -137,7 +137,7 @@ open_clipboard (void)
137 return regs.x.ax; 137 return regs.x.ax;
138} 138}
139 139
140/* Empty clipboard, return non-zero if successfull. */ 140/* Empty clipboard, return non-zero if successful. */
141unsigned 141unsigned
142empty_clipboard (void) 142empty_clipboard (void)
143{ 143{
@@ -207,7 +207,7 @@ free_xfer_buf (void)
207 } 207 }
208} 208}
209 209
210/* Copy data into the clipboard, return zero if successfull. */ 210/* Copy data into the clipboard, return zero if successful. */
211unsigned 211unsigned
212set_clipboard_data (unsigned Format, void *Data, unsigned Size, int Raw) 212set_clipboard_data (unsigned Format, void *Data, unsigned Size, int Raw)
213{ 213{
@@ -405,7 +405,7 @@ get_clipboard_data (unsigned Format, void *Data, unsigned Size, int Raw)
405 return (unsigned) (dp - (unsigned char *)Data - 1); 405 return (unsigned) (dp - (unsigned char *)Data - 1);
406} 406}
407 407
408/* Close clipboard, return non-zero if successfull. */ 408/* Close clipboard, return non-zero if successful. */
409unsigned 409unsigned
410close_clipboard (void) 410close_clipboard (void)
411{ 411{
@@ -730,4 +730,3 @@ After the communication, this variable is set to nil. */);
730} 730}
731 731
732#endif /* MSDOS */ 732#endif /* MSDOS */
733
diff --git a/src/w32font.c b/src/w32font.c
index 5cc37c0e74f..e8a223de0a4 100644
--- a/src/w32font.c
+++ b/src/w32font.c
@@ -786,7 +786,7 @@ w32font_free_outline (struct font *font, void *outline);
786 Optional. 786 Optional.
787 Get coordinates of the INDEXth anchor point of the glyph whose 787 Get coordinates of the INDEXth anchor point of the glyph whose
788 code is CODE. Store the coordinates in *X and *Y. Return 0 if 788 code is CODE. Store the coordinates in *X and *Y. Return 0 if
789 the operations was successfull. Otherwise return -1. 789 the operations was successful. Otherwise return -1.
790static int 790static int
791w32font_anchor_point (struct font *font, unsigned code, 791w32font_anchor_point (struct font *font, unsigned code,
792 int index, int *x, int *y); 792 int index, int *x, int *y);