1 /* Copyright (C) 1995 Free Software Foundation.
2 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2010
5 This file is part of XEmacs.
7 XEmacs is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with XEmacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* Synched up with: Mule 2.3. Not in FSF. */
36 DEFUN ("define-word-pattern", Fdefine_word_pattern, 1, 1, 0, /*
37 Don't call this function directly, instead use 'define-word' which
38 accept a pattern compiled by 'regexp-compile' with word-option t.
48 len = XINT (Flength (pattern));
50 error ("Too complicated regular expression for word!");
51 for (i = 0; i < len; i++)
53 temp = XCAR (pattern);
55 CHECK_STRING (XVECTOR_DATA (temp)[0]);
56 s = XSTRING (XVECTOR_DATA (temp)[0]);
58 wordbuf[i] = xnew (struct re_pattern_buffer);
60 if (wordbuf[i]->buffer) xfree (wordbuf[i]->buffer);
61 wordbuf[i]->buffer = (char *) xmalloc (s->size + 1);
62 wordbuf[i]->used = s->size;
63 memcpy (wordbuf[i]->buffer, s->data, s->size + 1);
65 wordbuf[i]->translate = 0;
66 wordbuf[i]->fastmap_accurate = 0;
67 wordbuf[i]->fastmap = 0;
68 wordbuf[i]->can_be_null = 1;
70 wordbuf[i]->mc_flag = 1;
71 wordbuf[i]->short_flag = 0;
72 wordbuf[i]->no_empty = 0;
74 wordbuf[i]->syntax_version = 0;
75 wordbuf[i]->category_version = 0;
77 wordbuf[i]->regs_allocated = REGS_UNALLOCATED;
78 wordbuf[i]->re_nsub = 0;
79 wordbuf[i]->no_sub = 0;
80 wordbuf[i]->newline_anchor = 1;
82 wordbuf[i]->syntax = 0;
83 wordbuf[i]->not_bol = wordbuf[i]->not_eol = 0;
84 #endif /* EMACS19_REGEXP */
85 pattern = XCDR (pattern);
87 for (; i < MAXWORDBUF && wordbuf[i]; i++)
89 if (wordbuf[i]->buffer) xfree (wordbuf[i]->buffer);
91 wordbuf[i] = (struct re_pattern_buffer *) 0;
96 #endif /* MULE_REGEXP */
99 Lisp_Object Vxemacs_chise_version;
107 DEFSUBR (Fdefine_word_pattern);
115 DEFVAR_BOOL ("re-short-flag", &re_short_flag /*
116 *T means regexp search success when the shortest match is found.
119 #endif /* MULE_REGEXP */
121 Fprovide (intern ("mule"));
124 Fprovide (intern ("utf-2000"));
126 Vxemacs_chise_version = build_string("0.25 (Ōkawara)");
127 DEFVAR_LISP ("xemacs-chise-version", &Vxemacs_chise_version /*
128 Version number of XEmacs CHISE.
130 DEFVAR_LISP ("utf-2000-version", &Vxemacs_chise_version /*
131 Version number of XEmacs CHISE.
136 Fprovide (intern ("chise"));
140 Fprovide (intern ("egg"));
143 Fprovide (intern ("wnn"));