diff options
| author | Kenichi Handa | 2008-11-27 07:59:11 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2008-11-27 07:59:11 +0000 |
| commit | 1a182119e39ae4ce2f2dab91bc84cc985eb43db2 (patch) | |
| tree | 3d5bce779fc235486aa00ec85ba3bcf4f4772648 | |
| parent | 708550f509756e730559723094f6f64f4e8f5e23 (diff) | |
| download | emacs-1a182119e39ae4ce2f2dab91bc84cc985eb43db2.tar.gz emacs-1a182119e39ae4ce2f2dab91bc84cc985eb43db2.zip | |
(SET_CATEGORY_SET): Call set_category_set.
(set_category_set): Extern it.
| -rw-r--r-- | src/category.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/category.h b/src/category.h index 7517be6d537..aebc0bb4d76 100644 --- a/src/category.h +++ b/src/category.h | |||
| @@ -70,7 +70,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 70 | /* Make CATEGORY_SET includes (if VAL is t) or excludes (if VAL is | 70 | /* Make CATEGORY_SET includes (if VAL is t) or excludes (if VAL is |
| 71 | nil) CATEGORY. */ | 71 | nil) CATEGORY. */ |
| 72 | #define SET_CATEGORY_SET(category_set, category, val) \ | 72 | #define SET_CATEGORY_SET(category_set, category, val) \ |
| 73 | (Faset (category_set, category, val)) | 73 | (set_category_set (category_set, category, val)) |
| 74 | 74 | ||
| 75 | #define CHECK_CATEGORY_SET(x) \ | 75 | #define CHECK_CATEGORY_SET(x) \ |
| 76 | CHECK_TYPE (CATEGORY_SET_P (x), Qcategorysetp, x) | 76 | CHECK_TYPE (CATEGORY_SET_P (x), Qcategorysetp, x) |
| @@ -114,6 +114,7 @@ extern Lisp_Object _temp_category_set; | |||
| 114 | && word_boundary_p (c1, c2)) | 114 | && word_boundary_p (c1, c2)) |
| 115 | 115 | ||
| 116 | extern int word_boundary_p P_ ((int, int)); | 116 | extern int word_boundary_p P_ ((int, int)); |
| 117 | extern void set_category_set P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); | ||
| 117 | 118 | ||
| 118 | /* arch-tag: 309dfe83-c3e2-4d22-8e81-faae5aece0ff | 119 | /* arch-tag: 309dfe83-c3e2-4d22-8e81-faae5aece0ff |
| 119 | (do not change this comment) */ | 120 | (do not change this comment) */ |