- 15 Jul, 2002 1 commit
-
-
Ken Raeburn authored
SCHARS, SBYTES, STRING_INTERVALS, SREF, SDATA; explicit size_byte references left unchanged for now.
-
- 26 Nov, 2001 1 commit
-
-
Stefan Monnier authored
(describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
-
- 19 Nov, 2001 1 commit
-
-
Stefan Monnier authored
(describe_syntax_1): Update call to describe_vector.
-
- 02 Nov, 2001 2 commits
-
-
Stefan Monnier authored
(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.
-
Pavel Janík authored
-
- 25 Oct, 2001 1 commit
-
-
Stefan Monnier authored
-
- 23 Oct, 2001 1 commit
-
-
Pavel Janík authored
-
- 20 Oct, 2001 1 commit
-
-
Pavel Janík authored
-
- 12 Oct, 2001 1 commit
-
-
Stefan Monnier authored
(Fforward_comment): Don't skip quoted chars when going backward.
-
- 10 Oct, 2001 1 commit
-
-
Stefan Monnier authored
-
- 08 Sep, 2001 1 commit
-
-
Richard M. Stallman authored
-
- 15 Jun, 2001 1 commit
-
-
Eli Zaretskii authored
-
- 01 May, 2001 1 commit
-
-
Stefan Monnier authored
properties as old_prop before deciding not to invalidate.
-
- 09 Dec, 2000 1 commit
-
-
Stefan Monnier authored
right Sstring syntax when jumping over strings. (init_syntax_once): Use Smax rather than 13.
-
- 24 Oct, 2000 1 commit
-
-
Kenichi Handa authored
-
- 15 Oct, 2000 3 commits
-
-
Stefan Monnier authored
-
Stefan Monnier authored
(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.
-
Eli Zaretskii authored
-
- 12 Oct, 2000 1 commit
-
-
Kenichi Handa authored
multibyte char.
-
- 02 Oct, 2000 2 commits
-
-
Stefan Monnier authored
(back_comment): Check two-char comment markers more carefully to better handle overlapping cases like *//* or /* */* */ ... Match nestedness of ender/starter.
-
Stefan Monnier authored
(Fforward_comment): Treat an unmatched \n comment-ender as whitespace.
-
- 28 Sep, 2000 1 commit
-
-
Kenichi Handa authored
-
- 27 Aug, 2000 1 commit
-
-
Stefan Monnier authored
actually inside another comment as in: /* a // b */ c // d \n. Make it clear that `comstart_pos' is unused for nested comments.
-
- 07 Aug, 2000 1 commit
-
-
Kenichi Handa authored
unibyte string consistent with that of regex search.
-
- 05 Aug, 2000 1 commit
-
-
Kenichi Handa authored
-
- 04 Aug, 2000 1 commit
-
-
Gerd Moellmann authored
-
- 25 Jul, 2000 1 commit
-
-
Gerd Moellmann authored
Fconstrain_to_field.
-
- 14 Jul, 2000 1 commit
-
-
Dave Love authored
-
- 12 Jul, 2000 1 commit
-
-
Stefan Monnier authored
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.
-
- 21 Jun, 2000 1 commit
-
-
Stefan Monnier authored
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: " /* " /* " */.
-
- 20 Jun, 2000 2 commits
-
-
Stefan Monnier authored
Check the comstyle of single-char comment-starters. Clarify control-flow around the Scomment case.
-
Stefan Monnier authored
(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 (*) ... (*)).
-
- 19 Jun, 2000 1 commit
-
-
Dave Love authored
-
- 29 May, 2000 1 commit
-
-
Gerd Moellmann authored
open_paren_in_column_0_is_defun_start outside of the loop.
-
- 23 May, 2000 1 commit
-
-
Kenichi Handa authored
-
- 27 Mar, 2000 1 commit
-
-
Gerd Moellmann authored
for handling per-buffer variables.
-
- 26 Mar, 2000 1 commit
-
-
Gerd Moellmann authored
variables.
-
- 24 Mar, 2000 1 commit
-
-
Gerd Moellmann authored
(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.
-
- 22 Mar, 2000 1 commit
-
-
Ken Raeburn authored
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.
-
- 23 Feb, 2000 1 commit
-
-
Kenichi Handa authored
(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.
-