]> code.delx.au - gnu-emacs/commitdiff
Fix typos in comments and ChangeLogs.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 14 Sep 2010 20:32:35 +0000 (22:32 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 14 Sep 2010 20:32:35 +0000 (22:32 +0200)
admin/unidata/unidata-gen.el
lisp/international/ucs-normalize.el
lisp/language/hebrew.el
src/ChangeLog
src/ChangeLog.10
src/ChangeLog.8
src/buffer.c
src/charset.c
src/editfns.c

index 88e21d7226e0182a44f143f9c93710c8b6bb775c..211c6f0a530c8951f2925f713f2679658f326c9a 100644 (file)
@@ -95,7 +95,7 @@
     (with-temp-buffer
       ;; Insert a file of this format:
       ;;   (CHAR NAME CATEGORY ...)
-      ;; where CHAR is a charater code, the following elements are strings
+      ;; where CHAR is a character code, the following elements are strings
       ;; representing character properties.
       (insert-file-contents unidata-text-file)
       (goto-char (point-min))
index 5061e500587a9be47d1d57406ec6ff5b1043317d..59850621388138050ba46145d68c7103ae7d083e 100644 (file)
 ;; D. Sorting and Composition  of Smaller Blocks (`ucs-normalize-block-compose-chars')
 ;;
 ;;    The block will be split to multiple samller blocks by starter
-;;    charcters.  Each block is sorted, and composed if necessary.
+;;    characters.  Each block is sorted, and composed if necessary.
 ;;
 ;; E. Composition of Entire Block (`ucs-normalize-compose-chars')
 ;;
index 24ddfb2c11f6a4444fca36d69827b07d3554b3ff..bcc3d625d6827bb354a127af4ed389bd37403bba 100644 (file)
@@ -88,14 +88,14 @@ Bidirectional editing is supported.")))
 ;; corresponding glyph of FONT-OBJECT.
 (defun hebrew-font-get-precomposed (font-object)
   (let ((precomposed (font-get font-object 'hebrew-precomposed))
-       ;; Vector of Hebrew precomposed charaters.
+       ;; Vector of Hebrew precomposed characters.
        (chars [#xFB2A #xFB2B #xFB2C #xFB2D #xFB2E #xFB2F #xFB30 #xFB31
                #xFB32 #xFB33 #xFB34 #xFB35 #xFB36 #xFB38 #xFB39 #xFB3A
                #xFB3B #xFB3C #xFB3E #xFB40 #xFB41 #xFB43 #xFB44 #xFB46
                #xFB47 #xFB48 #xFB49 #xFB4A #xFB4B #xFB4C #xFB4D #xFB4E])
        ;; Vector of decomposition character sequences corresponding
        ;; to the above vector.
-       (decomposed 
+       (decomposed
         [[#x05E9 #x05C1]
          [#x05E9 #x05C2]
          [#x05E9 #x05BC #x05C1]
index 7f7a0d7a2225e24ab9592b78dd9de64c0382f1cf..5685ec476831d18be1553e004f4f8d61cd9008ab 100644 (file)
 
        * search.c (search_buffer): Give up BM search on case-fold-search
        if one of a target character has a case-equivalence of different
-       byte length even if that target charcter is an ASCII.
+       byte length even if that target character is an ASCII.
        (simple_search): Fix calculation of byte length of matched text.
        (boyer_moore): Fix handling of case-equivalent multibyte characters.
 
index dd847f8a64e4ee5499b6c6196814691ee4aacc35..14a0f012b065b2cde6074caf842ec8fa63c7bf45 100644 (file)
 
        * search.c (search_buffer): Give up BM search on case-fold-search
        if one of a target character has a case-equivalence of different
-       charset even if that target charcter is an ASCII.
+       charset even if that target character is an ASCII.
 
        * casefiddle.c (casify_object): Fix for the case that case
        conversion change the byte length.
index 4dd3d0dd071468f51d1a4af1a29ab431da921579..4dac2b262b789899dd4e6ea0be772de30cf2c0b1 100644 (file)
 1998-08-31  Kenichi Handa  <handa@etl.go.jp>
 
        * charset.c (unibyte_char_to_multibyte):
-       Vnonacii_translation_table will convert a 7-bit charcater.
+       Vnonacii_translation_table will convert a 7-bit character.
        (multibyte_char_to_unibyte): Handle the case that
-       Vnonacii_translation_table converts a multibyte charcater to a
-       unibyte charcter of less than 128.
+       Vnonacii_translation_table converts a multibyte character to a
+       unibyte character of less than 128.
        (init_charset_once): Initialize nonascii_insert_offset and
        Vnonacii_translation_table.
 
index 39fabf581bb7343b2213f2ff9e5f941fdfd5ca55..84b60779b349847ffd83fa2e5007cd31a2aedef6 100644 (file)
@@ -2345,7 +2345,7 @@ current buffer is cleared.  */)
            {
              c = STRING_CHAR_AND_LENGTH (p, bytes);
              /* Delete all bytes for this 8-bit character but the
-                last one, and change the last one to the charcter
+                last one, and change the last one to the character
                 code.  */
              bytes--;
              del_range_2 (pos, pos, pos + bytes, pos + bytes, 0);
index 036d7146db69c982e8b9991e4c9252dbbfd088b2..8051b11330e8f00e48bb59a68099fb1bfbd21771 100644 (file)
@@ -427,7 +427,7 @@ load_charset_map (struct charset *charset, struct charset_map_entries *entries,
 
 
 /* Read a hexadecimal number (preceded by "0x") from the file FP while
-   paying attention to comment charcter '#'.  */
+   paying attention to comment character '#'.  */
 
 static INLINE unsigned
 read_hex (FILE *fp, int *eof)
index 1bd6682c3b605fbb714973f119712f81315375ca..add2f37109b08ffa265fd18326cbe14482d2cf5c 100644 (file)
@@ -3517,7 +3517,7 @@ usage: (format STRING &rest OBJECTS)  */)
   int multibyte = 0;
   /* When we make a multibyte string, we must pay attention to the
      byte combining problem, i.e., a byte may be combined with a
-     multibyte charcter of the previous string.  This flag tells if we
+     multibyte character of the previous string.  This flag tells if we
      must consider such a situation or not.  */
   int maybe_combine_byte;
   unsigned char *this_format;