aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2010-10-12 17:16:57 +0200
committerJuanma Barranquero2010-10-12 17:16:57 +0200
commit51e4f4a88de94846f6b44b3e11496c7b67aa2f5e (patch)
tree0eeaf52c6c802c1ac20b70b917927788f94500e3 /src
parentad1746f5db1b4c52da8d7bdc52359d6b0a5a5e24 (diff)
downloademacs-51e4f4a88de94846f6b44b3e11496c7b67aa2f5e.tar.gz
emacs-51e4f4a88de94846f6b44b3e11496c7b67aa2f5e.zip
Fix typos in docstrings, comments and ChangeLogs.
* lisp/composite.el (compose-region): * src/ccl.c (Fccl_execute_on_string): Fix typo in docstring.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/ChangeLog.74
-rw-r--r--src/ccl.c4
-rw-r--r--src/dispextern.h2
-rw-r--r--src/font.h2
-rw-r--r--src/print.c2
-rw-r--r--src/regex.c2
-rw-r--r--src/w32font.c2
-rw-r--r--src/w32uniscribe.c2
9 files changed, 14 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9ce5007d3b3..01ecd37eec7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12010-10-12 Juanma Barranquero <lekktu@gmail.com>
2
3 * ccl.c (Fccl_execute_on_string): Fix typo in docstring.
4
12010-10-10 Jan Djärv <jan.h.d@swipnet.se> 52010-10-10 Jan Djärv <jan.h.d@swipnet.se>
2 6
3 * nsterm.m (Qleft): Declare. 7 * nsterm.m (Qleft): Declare.
diff --git a/src/ChangeLog.7 b/src/ChangeLog.7
index 6cc3d0f9e3e..a334b4806da 100644
--- a/src/ChangeLog.7
+++ b/src/ChangeLog.7
@@ -491,7 +491,7 @@
491 491
492 * xselect.c (selection_data_to_lisp_data): Set 492 * xselect.c (selection_data_to_lisp_data): Set
493 Vlast_coding_system_used. 493 Vlast_coding_system_used.
494 (lisp_data_to_selection_data): Likewize. 494 (lisp_data_to_selection_data): Likesize.
495 495
4961998-07-07 Richard Stallman <rms@psilocin.ai.mit.edu> 4961998-07-07 Richard Stallman <rms@psilocin.ai.mit.edu>
497 497
@@ -502,7 +502,7 @@
502 * editfns.c (Fformat): Replace explicit numeric constants with 502 * editfns.c (Fformat): Replace explicit numeric constants with
503 proper macros. 503 proper macros.
504 504
505 * fns.c (concat): Likewize. 505 * fns.c (concat): Likewise.
506 506
5071998-07-06 Kenichi Handa <handa@etl.go.jp> 5071998-07-06 Kenichi Handa <handa@etl.go.jp>
508 508
diff --git a/src/ccl.c b/src/ccl.c
index c33df9e56de..ac1d7be621c 100644
--- a/src/ccl.c
+++ b/src/ccl.c
@@ -450,7 +450,7 @@ extern int charset_unicode;
450 Therefore, the instruction code range is 0..16384(0x3fff). 450 Therefore, the instruction code range is 0..16384(0x3fff).
451 */ 451 */
452 452
453/* Read a multibyte characeter. 453/* Read a multibyte character.
454 A code point is stored into reg[rrr]. A charset ID is stored into 454 A code point is stored into reg[rrr]. A charset ID is stored into
455 reg[RRR]. */ 455 reg[RRR]. */
456 456
@@ -2058,7 +2058,7 @@ If R0..R7 are nil, they are initialized to 0.
2058If IC is nil, it is initialized to head of the CCL program. 2058If IC is nil, it is initialized to head of the CCL program.
2059 2059
2060If optional 4th arg CONTINUE is non-nil, keep IC on read operation 2060If optional 4th arg CONTINUE is non-nil, keep IC on read operation
2061when read buffer is exausted, else, IC is always set to the end of 2061when read buffer is exhausted, else, IC is always set to the end of
2062CCL-PROGRAM on exit. 2062CCL-PROGRAM on exit.
2063 2063
2064It returns the contents of write buffer as a string, 2064It returns the contents of write buffer as a string,
diff --git a/src/dispextern.h b/src/dispextern.h
index 076d9055859..ca91c5b6812 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -1873,7 +1873,7 @@ struct composition_it
1873 are not iterating over a composition now. */ 1873 are not iterating over a composition now. */
1874 int id; 1874 int id;
1875 /* If non-negative, character that triggers the automatic 1875 /* If non-negative, character that triggers the automatic
1876 composition at `stop_pos', and this is an automatic compositoin. 1876 composition at `stop_pos', and this is an automatic composition.
1877 If negative, this is a static composition. This is set to -2 1877 If negative, this is a static composition. This is set to -2
1878 temporarily if searching of composition reach a limit or a 1878 temporarily if searching of composition reach a limit or a
1879 newline. */ 1879 newline. */
diff --git a/src/font.h b/src/font.h
index 952ea269495..96227ffe40b 100644
--- a/src/font.h
+++ b/src/font.h
@@ -574,7 +574,7 @@ struct font_driver
574 FONT-ENTITY and it must be opened to check it, return -1. */ 574 FONT-ENTITY and it must be opened to check it, return -1. */
575 int (*has_char) P_ ((Lisp_Object font, int c)); 575 int (*has_char) P_ ((Lisp_Object font, int c));
576 576
577 /* Return a glyph code of FONT for characer C (Unicode code point). 577 /* Return a glyph code of FONT for character C (Unicode code point).
578 If FONT doesn't have such a glyph, return FONT_INVALID_CODE. */ 578 If FONT doesn't have such a glyph, return FONT_INVALID_CODE. */
579 unsigned (*encode_char) P_ ((struct font *font, int c)); 579 unsigned (*encode_char) P_ ((struct font *font, int c));
580 580
diff --git a/src/print.c b/src/print.c
index ccbf8d8c0c7..43f17a7c15d 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1450,7 +1450,7 @@ static void print_check_string_charset_prop ();
1450#define PRINT_STRING_NON_CHARSET_FOUND 1 1450#define PRINT_STRING_NON_CHARSET_FOUND 1
1451#define PRINT_STRING_UNSAFE_CHARSET_FOUND 2 1451#define PRINT_STRING_UNSAFE_CHARSET_FOUND 2
1452 1452
1453/* Bitwize or of the abobe macros. */ 1453/* Bitwise or of the above macros. */
1454static int print_check_string_result; 1454static int print_check_string_result;
1455 1455
1456static void 1456static void
diff --git a/src/regex.c b/src/regex.c
index 85ff9b99604..7d12089fea2 100644
--- a/src/regex.c
+++ b/src/regex.c
@@ -4145,7 +4145,7 @@ analyse_first (p, pend, fastmap, multibyte)
4145 && match_any_multibyte_characters == false) 4145 && match_any_multibyte_characters == false)
4146 { 4146 {
4147 /* Set fastmap[I] to 1 where I is a leading code of each 4147 /* Set fastmap[I] to 1 where I is a leading code of each
4148 multibyte characer in the range table. */ 4148 multibyte character in the range table. */
4149 int c, count; 4149 int c, count;
4150 unsigned char lc1, lc2; 4150 unsigned char lc1, lc2;
4151 4151
diff --git a/src/w32font.c b/src/w32font.c
index e93dbca2ddb..a07762e970f 100644
--- a/src/w32font.c
+++ b/src/w32font.c
@@ -346,7 +346,7 @@ w32font_has_char (entity, c)
346} 346}
347 347
348/* w32 implementation of encode_char for font backend. 348/* w32 implementation of encode_char for font backend.
349 Return a glyph code of FONT for characer C (Unicode code point). 349 Return a glyph code of FONT for character C (Unicode code point).
350 If FONT doesn't have such a glyph, return FONT_INVALID_CODE. 350 If FONT doesn't have such a glyph, return FONT_INVALID_CODE.
351 351
352 For speed, the gdi backend uses unicode (Emacs calls encode_char 352 For speed, the gdi backend uses unicode (Emacs calls encode_char
diff --git a/src/w32uniscribe.c b/src/w32uniscribe.c
index cfdf629ceee..9cd1ac6426c 100644
--- a/src/w32uniscribe.c
+++ b/src/w32uniscribe.c
@@ -448,7 +448,7 @@ uniscribe_shape (lgstring)
448} 448}
449 449
450/* Uniscribe implementation of encode_char for font backend. 450/* Uniscribe implementation of encode_char for font backend.
451 Return a glyph code of FONT for characer C (Unicode code point). 451 Return a glyph code of FONT for character C (Unicode code point).
452 If FONT doesn't have such a glyph, return FONT_INVALID_CODE. */ 452 If FONT doesn't have such a glyph, return FONT_INVALID_CODE. */
453static unsigned 453static unsigned
454uniscribe_encode_char (font, c) 454uniscribe_encode_char (font, c)