diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-04-10 22:12:04 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-04-10 22:12:04 +0000 |
commit | 15c60737b711af5fa22ea86db5b2b70156c4bec5 (patch) | |
tree | f39384644376218be6e9ff80562ac722d58688db /src/category.c | |
parent | efee68610e4877c5fd97c200ce748e502a864d50 (diff) | |
download | emacs-15c60737b711af5fa22ea86db5b2b70156c4bec5.tar.gz |
(Fmake_category_set): Use XSETFASTINT.
Diffstat (limited to 'src/category.c')
-rw-r--r-- | src/category.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/category.c b/src/category.c index cd87abd5637..b644448b486 100644 --- a/src/category.c +++ b/src/category.c @@ -67,8 +67,9 @@ CATEGORIES is a string of category mnemonics.") len = XSTRING (categories)->size; while (--len >= 0) { - Lisp_Object category = make_number (XSTRING (categories)->data[len]); + Lisp_Object category; + XSETFASTINT (category, XSTRING (categories)->data[len]); CHECK_CATEGORY (category, 0); SET_CATEGORY_SET (val, category, Qt); } |