aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* (scan_lists): Use xsignal3.Kim F. Storm2006-07-181-14/+9
|
* (scan_sexps_forward): Use EMACS_INT for out_bytepos andAndreas Schwab2006-07-131-1/+1
| | | | out_charpos.
* (check_syntax_table): Use CHECK_TYPE.Kim F. Storm2006-07-121-3/+2
|
* (forw_comment): Also use EMACS_INT for buffer positions.Stefan Monnier2006-07-111-2/+3
|
* (back_comment, scan_lists): Also use EMACS_INT for buffer positions.Stefan Monnier2006-07-091-11/+13
|
* (Fforward_comment): Revert the reversion.Stefan Monnier2006-07-091-5/+5
|
* (Fforward_comment): Use type int for `stop', `count1', `out_charpos'John Paul Wallington2006-07-091-3/+3
| | | | and `out_bytepos' too; revert Stef's previous change.
* (Fforward_comment): Use type int for `from' and `from_byte'.John Paul Wallington2006-07-091-2/+2
|
* (Fforward_comment): Fix int-32 vs EMACS_INT-64 mixup.Stefan Monnier2006-07-071-5/+5
|
* (init_syntax_once): Give most control chars' syntax Spunct.Richard M. Stallman2006-06-191-0/+14
|
* (Fforward_comment): Detect generic comment at beginning ofStefan Monnier2006-05-011-2/+2
| | | | buffer when moving backwards.
* (Fforward_comment): Don't forget to break out of the loopStefan Monnier2006-04-301-0/+3
| | | | when we skipped backward over a generic comment.
* Update years in copyright notice; nfc.Thien-Thi Nguyen2006-02-061-1/+1
|
* (Fparse_partial_sexp): Fix docstring.Stefan Monnier2005-10-291-2/+2
|
* (update_syntax_table): Properly reproduce the special +1Stefan Monnier2005-08-291-4/+10
| | | | | setting of e_property at the end of the buffer when bumping into the INTERVALS_AT_ONCE limit.
* Update years in copyright notice; nfc.Thien-Thi Nguyen2005-08-071-1/+2
|
* (syms_of_syntax): Staticpro lisp objects in gl_state.Kim F. Storm2005-07-141-0/+8
| | | | Staticpro re_match_object.
* Update FSF's address.Lute Kamstra2005-07-041-2/+2
|
* (Fstring_to_syntax): Follow error conventions.Juanma Barranquero2005-06-231-1/+1
|
* (Fforward_word): Avoid non-idempotent side-effects in macro arguments.Stefan Monnier2004-12-111-2/+4
|
* (scan_sexps_forward): Prefer 2-char comment-starter over a 1-char one.Stefan Monnier2004-10-271-22/+22
|
* (skip_chars): Fix for unibyte case.Kenichi Handa2004-08-201-4/+4
|
* (back_comment): Fixup globals in all cases.Stefan Monnier2004-08-191-1/+1
|
* (char_quoted): Mixup byte/char pos.Stefan Monnier2004-08-191-1/+1
|
* (skip_chars): Remove unused labels fwd_unibyte_ok and back_unibyte_ok.Stefan Monnier2004-06-301-2/+0
|
* (skip_chars): Only recognize [:class:] when it has theKim F. Storm2004-06-151-10/+7
| | | | proper format and class is a lower-case word.
* Include regex.h.Richard M. Stallman2004-06-131-9/+119
| | | | | | | | (skip_chars): New arg HANDLE_ISO_CLASSES. Callers changed. If requested, make a list of classes, then check the scanned chars for membership in them. (in_classes): New function. (Fskip_chars_forward): Doc fix.
* (char_quoted): Avoid warning about undefined operation.Andreas Schwab2004-06-131-9/+18
| | | | | | | (find_defun_start): Likewise. (scan_lists): Likewise. (INC_FROM): Likewise. (scan_sexps_forward): Likewise.
* (Fmodify_syntax_entry): Fix docstring.Juanma Barranquero2004-05-071-3/+3
|
* (scan_lists): Simplify backward string scan.Stefan Monnier2004-04-131-11/+5
| | | | Fix off-by-one boundary check for string and comment fences.
* (skip_chars): Treat '-' at end of string as ordinaryAndreas Schwab2004-01-061-7/+8
| | | | character.
* Add arch taglinesMiles Bader2003-09-011-0/+3
|
* (Fforward_word): Argument changed to optional. Set default value to 1.Richard M. Stallman2003-08-171-6/+10
|
* (find_defun_start): When open_paren_in_column_0_is_defun_start,Richard M. Stallman2003-05-171-15/+18
| | | | return beginning of buffer.
* (skip_chars): Fix previous change.Kenichi Handa2003-04-241-2/+2
|
* (skip_chars): Make the code faster by using the commonKenichi Handa2003-04-241-55/+135
| | | | technique of *p, *stop, and *endp.
* (back_comment): Only check nestedness of 2nd char if needed.Stefan Monnier2003-02-251-1/+1
|
* Trailing whitespace deleted.Juanma Barranquero2003-02-041-1/+1
|
* (Fskip_chars_forward)Dave Love2003-01-311-2/+4
| | | | (open-paren-in-column-0-is-defun-start): Doc fix.
* (scan_sexps_forward):Dave Love2002-11-141-1/+1
| | | | Declare all args (per C99).
* (scan_sexps_forward): Undo last patch.Stefan Monnier2002-11-121-2/+3
| | | | Use a more obvious fix: check eob before updating the syntax table.
* (scan_sexps_forward): Update syntax table before readingStefan Monnier2002-11-091-9/+3
| | | | a char rather than after so we don't update the table past eob.
* (Fforward_comment): Doc fix.Dave Love2002-10-301-2/+3
|
* Fix typo in comment.Juanma Barranquero2002-10-181-34/+34
|
* (scan_lists): Don't get fooled by a symbol ending with a backslash-quoted char.Stefan Monnier2002-10-141-1/+15
| | | | (scan_lists, scan_sexps_forward): Pacify the compiler.
* (Fstring_to_syntax, skip_chars): Treat Lisp stringKen Raeburn2002-07-191-4/+5
| | | | contents as const.
* Most uses of XSTRING combined with STRING_BYTES or indirection changed toKen Raeburn2002-07-151-10/+10
| | | | | SCHARS, SBYTES, STRING_INTERVALS, SREF, SDATA; explicit size_byte references left unchanged for now.
* (syms_of_syntax): Remove defsubr of Sdescribe_syntax.Stefan Monnier2001-11-261-44/+0
| | | | (describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
* (describe_syntax): Add dummy arg.Stefan Monnier2001-11-191-5/+6
| | | | (describe_syntax_1): Update call to describe_vector.
* (describe_syntax): New wrapper.Stefan Monnier2001-11-021-16/+28
| | | | | | (Finternal_describe_syntax_value): Rename from describe_syntax. Don't insert space at front and \n at the end. (syms_of_syntax): Defsubr Sinternal_describe_syntax_value.