annotate etc/Makefile @ 18260:a642c99198ec

(PTR_TO_OFFSET): New macro. (POS_AS_IN_BUFFER): New macro. (SYNTAX_ENTRY_VIA_PROPERTY): Set to take `syntax-table' text property into account when doing SYNTAX (c). (re_compile_fastmap): disable fastmap if any of wordbound notwordbound wordbeg wordend notsyntaxspec syntaxspec are seen. (re_search_2): SETUP_SYNTAX_TABLE_FOR_OBJECT at the start. (re_match_object): New variable. (re_match_2): SETUP_SYNTAX_TABLE_FOR_OBJECT at the start. (re_match_2_internal): For any of wordbound notwordbound wordbeg wordend notsyntaxspec syntaxspec call UPDATE_SYNTAX_TABLE before doing SYNTAX (c). [emacs]: Include charset.h and category.h [!emacs] (BASE_LEADING_CODE_P, WORD_BOUNDARY_P, CHAR_HEAD_P, SINGLE_BYTE_CHAR_P, SAME_CHARSET_P, MULTIBYTE_FORM_LENGTH, STRING_CHAR_AND_LENGTH, GET_CHAR_AFTER_2, GET_CHAR_BEFORE_2): New dummy macros. (enum re_opcode_t): New member categoryspec and notcategoryspec. (STORE_CHARACTER_AND_INCR, EXTRACT_CHARACTER, CHARSET_LOOKUP_RANGE_TABLE_WITH_COUNT, CHARSET_LOOKUP_RANGE_TABLE, CHARSET_BITMAP_SIZE, CHARSET_RANGE_TABLE_EXISTS_P, CHARSET_RANGE_TABLE CHARSET_PAST_RANGE_TABLE): New macros. (TRANSLATE): Cast return value to unsigned char, not char. (struct range_table_work_area): New structure. (EXTEND_RANGE_TABLE_WORK_AREA, SET_RANGE_TABLE_WORK_AREA, FREE_RANGE_TABLE_WORK_AREA, CLEAR_RANGE_TABLE_WORK_USED, RANGE_TABLE_WORK_USED, RANGE_TABLE_WORK_ELT): New macros. (FREE_STACK_RETURN): Call FREE_RANGE_TABLE_WORK_AREA. (regex_compile): Declare `c' and `c1' as int to store multibyte characters. Declare range_table_work and initialize it. Initialize bufp->multibyte to 0 if not emacs. For case '[' and `default', code re-written to handle multibyte characters. Add code for case 'c' and 'C' to handle category spec. (re_compile_fastmap): New local variables k, simple_char_max, and match_any_multibyte_characters. Use macro CHARSET_BITMAP_SIZE. Handle multibyte characters in cases charset, charset_not, wordchar, notwordchar, anychar, syntaxspec, notsyntaxspec, categoryspec, notcategoryspec. (STOP_ADDR_VSTRING, POS_ADDR_VSTRING): New macros. (re_search_2): Code re-written to handle multibyte characters. (AT_WORD_BOUNDARY): Macro disabled. (re_match_2_internal): New local variable multibyte. `d' is incremented while paying attention to multibyte characters if necessary. For case charset, charsetnot, wordbound, notwordbound, wordbeg, wordend, matchsyntax, and matchnotsyntax, code re-written to handle multibyte characters. Add code for case categoryspec and notcategoryspec. Declare c, c1 as unsigned int, not unsigned char.
author Richard M. Stallman <rms@gnu.org>
date Sun, 15 Jun 1997 19:00:12 +0000
parents 4baa1bd953d8
children 86432f19ad96
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2260
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
1 DESTDIR=
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
2 LIBDIR=/usr/local/lib
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
3 BINDIR=/usr/local/bin
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
4 MANDIR=/usr/man/man1
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
5 MANEXT=1
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
6
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
7 all:
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
8
6996
cb15d148ee99 (clean): Delete DOC*.
Richard M. Stallman <rms@gnu.org>
parents: 3752
diff changeset
9 mostlyclean:
3752
3ce509de88ec entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 2260
diff changeset
10 -rm -f core
2260
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
11
11602
4baa1bd953d8 (maintainer-clean): Renamed from realclean.
Karl Heuer <kwzh@gnu.org>
parents: 10053
diff changeset
12 clean distclean maintainer-clean:
3752
3ce509de88ec entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 2260
diff changeset
13 -rm -f DOC* core
2260
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
14
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
15 SOURCES = [0-9A-QS-Z]* README *.[ch16] emacs.* etags.* ledit.l ms-* \
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
16 news.texi rc2log refcard.tex spook-lines termcap.* ulimit.hack \
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
17 vcdiff vipcard.tex xmouse.doc
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
18
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
19 unlock:
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
20 chmod u+w $(SOURCES)
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
21
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
22 relock:
bb1a01e47d85 Initial revision
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
diff changeset
23 chmod u-w $(SOURCES)
10053
0c5b5d89288e (eterm): New rule.
Richard M. Stallman <rms@gnu.org>
parents: 6996
diff changeset
24
0c5b5d89288e (eterm): New rule.
Richard M. Stallman <rms@gnu.org>
parents: 6996
diff changeset
25 # ${etcdir}/e/eterm is used by ../lisp/term.el.
0c5b5d89288e (eterm): New rule.
Richard M. Stallman <rms@gnu.org>
parents: 6996
diff changeset
26 # TERMINFO systems use terminfo files compiled by the Terminfo Compiler (tic).
0c5b5d89288e (eterm): New rule.
Richard M. Stallman <rms@gnu.org>
parents: 6996
diff changeset
27 # These files are binary, and depend on the version of tic, but they seem
0c5b5d89288e (eterm): New rule.
Richard M. Stallman <rms@gnu.org>
parents: 6996
diff changeset
28 # to be system-independent and backwardly compatible.
0c5b5d89288e (eterm): New rule.
Richard M. Stallman <rms@gnu.org>
parents: 6996
diff changeset
29 # So there should be no need to recompile the distributed binary version.
0c5b5d89288e (eterm): New rule.
Richard M. Stallman <rms@gnu.org>
parents: 6996
diff changeset
30 TIC=tic
0c5b5d89288e (eterm): New rule.
Richard M. Stallman <rms@gnu.org>
parents: 6996
diff changeset
31 e/eterm: e/eterm.ti
0c5b5d89288e (eterm): New rule.
Richard M. Stallman <rms@gnu.org>
parents: 6996
diff changeset
32 TERMINFO=`pwd`; export TERMINFO; $(TIC) e/eterm.ti
0c5b5d89288e (eterm): New rule.
Richard M. Stallman <rms@gnu.org>
parents: 6996
diff changeset
33