aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* (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.
* Update usage of CHECK_ macros (remove unused second argument).Pavel Janík2001-11-021-14/+14
|
* Fix comment ending.Stefan Monnier2001-10-251-2/+1
|
* (modify-syntax-entry): Fix argument names (use CHAR instead of C) and usage.Pavel Janík2001-10-231-9/+10
|
* Change doc-string comments to `new style' [w/`doc:' keyword].Pavel Janík2001-10-201-192/+174
|
* (update_syntax_table): Simplify.Stefan Monnier2001-10-121-74/+59
| | | | (Fforward_comment): Don't skip quoted chars when going backward.
* Include keymap.h.Stefan Monnier2001-10-101-0/+1
|
* Comment change.Richard M. Stallman2001-09-081-3/+9
|
* Fixed a typo in a comment.Eli Zaretskii2001-06-151-1/+1
|
* (update_syntax_table): Check that oldi has the sameStefan Monnier2001-05-011-7/+7
| | | | properties as old_prop before deciding not to invalidate.
* (scan_lists): Check that the right quote char has theStefan Monnier2000-12-091-4/+6
| | | | | right Sstring syntax when jumping over strings. (init_syntax_once): Use Smax rather than 13.
* *** empty log message ***Kenichi Handa2000-10-241-6/+6
|
* (describe_syntax): Add code for comment and string fences.Stefan Monnier2000-10-151-1/+7
|
* (Fstring_to_syntax): New function extracted from Fmodify_syntax_entry.Stefan Monnier2000-10-151-69/+77
| | | | | | (Fmodify_syntax_entry): Use it and document the ! and | fences. (skip_chars, Fforward_comment): Remove unused variables. (syms_of_syntax): Add defsubr for string-to-syntax.
* Fix wording in a comment.Eli Zaretskii2000-10-151-6/+6
|
* (skip_chars): Change the way of handling a range from unibyte char toKenichi Handa2000-10-121-6/+7
| | | | multibyte char.
* (prev_char_comstart_first): Remove.Stefan Monnier2000-10-021-38/+77
| | | | | | (back_comment): Check two-char comment markers more carefully to better handle overlapping cases like *//* or /* */* */ ... Match nestedness of ender/starter.
* (forw_comment): Match nestedness of ender/starter.Stefan Monnier2000-10-021-26/+30
| | | | (Fforward_comment): Treat an unmatched \n comment-ender as whitespace.
* (skip_chars): Handle negation correctly.Kenichi Handa2000-09-281-49/+30
|
* (back_comment): Detect cases where a comment-starter isStefan Monnier2000-08-271-16/+27
| | | | | actually inside another comment as in: /* a // b */ c // d \n. Make it clear that `comstart_pos' is unused for nested comments.
* * syntax.c (skip_chars): Fix previous change. Make the handling ofKenichi Handa2000-08-071-54/+50
| | | | unibyte string consistent with that of regex search.
* (skip_chars): Fix handling of multibyte<->unibyte conversion.Kenichi Handa2000-08-051-17/+35
|
* (skip_chars): Fix typo in error message.Gerd Moellmann2000-08-041-2/+2
|
* (Fforward_word): Add last arg nil in call ofGerd Moellmann2000-07-251-1/+1
| | | | Fconstrain_to_field.
* (back_comment): Add null default in switch for pcc.Dave Love2000-07-141-0/+1
|
* (back_comment): Use one switch rather than a few `if's.Stefan Monnier2000-07-121-40/+51
| | | | | | | | | Obey open_paren_in_column_0_is_defun_start. When reverting to the `slow' method, try to nicely handle the case of nested comments by checking that the comment-starter we found does indeed match the comment-ender. (scan_sexps_forward, scan_sexps_forward): Ignore excessive opening parenthesis rather than throwing an error.
* (back_comment): Simplify string-parity counting (withStefan Monnier2000-06-211-31/+32
| | | | | | | the added benefit of handling multiple string-styles as long as they are not nested). Jump to the slow code as soon as a comment starter is found in a "string_lossage" position. Fixes the case: " /* " /* " */.
* (scan_sexps_forward):Stefan Monnier2000-06-201-13/+5
| | | | | Check the comstyle of single-char comment-starters. Clarify control-flow around the Scomment case.
* (describe_syntax): Recognize the `n'estable bit.Stefan Monnier2000-06-201-5/+15
| | | | | | | (Fforward_comment, scan_lists): Check the comstyle of single-char comment-starters. (scan_sexps_forward): Don't try to recognize `half comment-enders' if we're just at the beginning of the comment (f.ex with (*) ... (*)).
* (Fparse_partial_sexp): Doc fix.Dave Love2000-06-191-3/+3
|
* (find_defun_start): Move test forGerd Moellmann2000-05-291-13/+15
| | | | open_paren_in_column_0_is_defun_start outside of the loop.
* (skip_chars): Use FETCH_STRING_CHAR_ADVANCE unconditionally.Kenichi Handa2000-05-231-22/+6
|
* Use new macro namesGerd Moellmann2000-03-271-2/+2
| | | | for handling per-buffer variables.
* (Fset_syntax_table): Use new macros for per-bufferGerd Moellmann2000-03-261-2/+3
| | | | variables.
* (open_paren_in_column_0_is_defun_start): New variable.Gerd Moellmann2000-03-241-2/+15
| | | | | | (find_defun_start): Consider an open parenthesis in column 0 a defun start only if open_paren_in_column_0_is_defun_start is set. (syms_of_syntax): New variable open-paren-in-column-0-is-defun-start.
* Changes towards better type safety regarding intervals, primarilyKen Raeburn2000-03-221-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | regarding the "parent" handle. These just separate out the different usages based on the type of parent (interval vs lisp object); later changes will do type checking and enforcement. * intervals.h (NULL_INTERVAL): Cast to INTERVAL type. (INT_LISPLIKE): New macro. (NULL_INTERVAL_P): Use it. (INTERVAL_HAS_PARENT, INTERVAL_HAS_OBJECT, SET_INTERVAL_PARENT, SET_INTERVAL_OBJECT, INTERVAL_PARENT, COPY_INTERVAL_PARENT, GET_INTERVAL_OBJECT, INTERVAL_PARENT_OR_NULL): New macros. * alloc.c (make_interval, gc_sweep): Use new macros; eliminate all explicit references to "parent" field of struct interval and associated unclean type conversions. * intervals.c (create_root_interval, root_interval, rotate_right, rotate_left, balance_possible_root_interval, split_interval_right, split_interval_left, interval_start_pos, find_interval, next_interval, previous_interval, update_interval, adjust_intervals_for_insertion, delete_node, delete_interval, adjust_intervals_for_deletion, merge_interval_right, merge_interval_left, reproduce_tree, graft_intervals_into_buffer, copy_intervals_to_string): Likewise. * intervals.h (AM_LEFT_CHILD, AM_RIGHT_CHILD, RESET_INTERVAL): Likewise. * syntax.c (update_syntax_table): Likewise. * intervals.c (reproduce_tree_obj): New function, like reproduce_tree but takes a Lisp_Object for the parent. Declare with prototype. (graft_intervals_into_buffer): Use it when appropriate. (reproduce_tree): Declare with prototype. (balance_possible_root_interval): Check that the parent is a lisp object before trying to examine its type.
* (multibyte_syntax_as_symbol): New variable.Kenichi Handa2000-02-231-9/+32
| | | | | | | | | (syms_of_syntax): Declare it as a Lisp variable. (SYNTAX_WITH_MULTIBYTE_CHECK): New macro. (scan_lists): If both sexpflag and multibyte_syntax_as_symbol are nonzero, treat all multibyte characters as symbol. (init_syntax_once): Give syntax `word' to all mutlbiyte characters.