emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/category.c


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/category.c
Date: Fri, 31 Jan 2003 01:10:06 -0500

Index: emacs/src/category.c
diff -c emacs/src/category.c:1.30 emacs/src/category.c:1.31
*** emacs/src/category.c:1.30   Wed Nov 28 15:44:42 2001
--- emacs/src/category.c        Sun Jul 14 20:00:35 2002
***************
*** 69,80 ****
    if (STRING_MULTIBYTE (categories))
      error ("Multibyte string in make-category-set");
  
!   len = XSTRING (categories)->size;
    while (--len >= 0)
      {
        Lisp_Object category;
  
!       XSETFASTINT (category, XSTRING (categories)->data[len]);
        CHECK_CATEGORY (category);
        SET_CATEGORY_SET (val, category, Qt);
      }
--- 69,80 ----
    if (STRING_MULTIBYTE (categories))
      error ("Multibyte string in make-category-set");
  
!   len = SCHARS (categories);
    while (--len >= 0)
      {
        Lisp_Object category;
  
!       XSETFASTINT (category, SREF (categories, len));
        CHECK_CATEGORY (category);
        SET_CATEGORY_SET (val, category, Qt);
      }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]