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.h


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/category.h
Date: Thu, 28 Feb 2002 20:13:46 -0500

Index: emacs/src/category.h
diff -c emacs/src/category.h:1.13 emacs/src/category.h:1.14
*** emacs/src/category.h:1.13   Tue Dec 14 19:02:55 1999
--- emacs/src/category.h        Fri Nov  2 15:12:54 2001
***************
*** 53,59 ****
  #define CATEGORYP(x) \
    (INTEGERP ((x)) && XFASTINT ((x)) >= 0x20 && XFASTINT ((x)) <= 0x7E)
  
! #define CHECK_CATEGORY(x, i)                                          \
    do {                                                                        
\
      if (!CATEGORYP ((x))) x = wrong_type_argument (Qcategoryp, (x));  \
    } while (0)
--- 53,59 ----
  #define CATEGORYP(x) \
    (INTEGERP ((x)) && XFASTINT ((x)) >= 0x20 && XFASTINT ((x)) <= 0x7E)
  
! #define CHECK_CATEGORY(x)                                             \
    do {                                                                        
\
      if (!CATEGORYP ((x))) x = wrong_type_argument (Qcategoryp, (x));  \
    } while (0)
***************
*** 71,77 ****
  #define SET_CATEGORY_SET(category_set, category, val) \
    (Faset (category_set, category, val))
  
! #define CHECK_CATEGORY_SET(x, i)                                         \
    do {                                                                        
   \
      if (!CATEGORY_SET_P ((x))) x = wrong_type_argument (Qcategorysetp, (x)); \
    } while (0)
--- 71,77 ----
  #define SET_CATEGORY_SET(category_set, category, val) \
    (Faset (category_set, category, val))
  
! #define CHECK_CATEGORY_SET(x)                                    \
    do {                                                                        
   \
      if (!CATEGORY_SET_P ((x))) x = wrong_type_argument (Qcategorysetp, (x)); \
    } while (0)



reply via email to

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