]> git.eshelyaron.com Git - emacs.git/commitdiff
* character.c (syms_of_character) <script-representative-chars>:
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 5 Feb 2009 08:46:51 +0000 (08:46 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 5 Feb 2009 08:46:51 +0000 (08:46 +0000)
  Fix typo in docstring.

src/ChangeLog
src/character.c

index 7952b434b4f6867d4dabbb679fd8bb59415418da..e16edecfdafa6b2ad96491cfe2c72dd36ecfe7f7 100644 (file)
@@ -1,3 +1,8 @@
+2009-02-05  Juanma Barranquero  <lekktu@gmail.com>
+
+       * character.c (syms_of_character) <script-representative-chars>:
+       Fix typo in docstring.
+
 2009-02-04  Adrian Robert  <Adrian.B.Robert@gmail.com>
 
        * nsmenu.m (pop_down_menu): New function.
index 9d61d60ca7f49cc36991de5b600f069a8fcb1df4..50ca6521262897454183a36c20ff814fa6ffb138 100644 (file)
@@ -1047,7 +1047,7 @@ character is not ASCII nor 8-bit character, an error is signalled.  */)
       if (NILP (position))
        {
          p = PT_ADDR;
-       }         
+       }
       else
        {
          CHECK_NUMBER_COERCE_MARKER (position);
@@ -1166,7 +1166,7 @@ It has one extra slot whose value is a list of script symbols.  */);
   DEFVAR_LISP ("script-representative-chars", &Vscript_representative_chars,
               doc: /* Alist of scripts vs the representative characters.
 Each element is a cons (SCRIPT . CHARS).
-SCRIPT is a symbol representing a script or a subgroupd of a script.
+SCRIPT is a symbol representing a script or a subgroup of a script.
 CHARS is a list or a vector of characters.
 If it is a list, all characters in the list are necessary for supporting SCRIPT.
 If it is a vector, one of the characters in the vector is necessary.