aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* (syms_of_buffer): Document `%i' and `%I' constructs forLute Kamstra2003-09-081-0/+2
| | | | `mode-line-format'.
* Add arch taglinesMiles Bader2003-09-011-0/+3
|
* (Fmove_overlay): Set overlay's next pointerGerd Moellmann2003-08-191-6/+4
| | | | unconditionally.
* (delete_all_overlays): New function.Stefan Monnier2003-07-221-1/+29
|
* (copy_overlays): Use EMACS_INT for positions.Stefan Monnier2003-07-151-1/+14
| | | | | (Fswitch_to_buffer): Don't signal an error when switching to the same buffer in a dedicated window.
* (modify_overlay): Update prototype.Andreas Schwab2003-07-111-1/+1
|
* (fix_overlays_before): Fix typo in last commit.Stefan Monnier2003-07-091-1/+1
|
* (overlay_strings, recenter_overlay_lists): Fix typo in eassert in last commit.Stefan Monnier2003-07-091-167/+199
| | | | | | | | | | | (unchain_overlay): New function. (add_overlay_mod_hooklist): Use AREF. (copy_overlays, reset_buffer, overlays_at, overlays_in) (overlay_touches_p, overlay_strings, recenter_overlay_lists) (fix_overlays_in_range, fix_overlays_before, Fmake_overlay) (Fmove_overlay, Fdelete_overlay, Foverlay_lists) (report_overlay_modification, evaporate_overlays, init_buffer_once): Adjust to new type of overlays_(before|after).
* (report_overlay_modification): Don't run hooks whileStefan Monnier2003-07-081-125/+87
| | | | traversing the list of overlays.
* (reset_buffer, recenter_overlay_lists)Stefan Monnier2003-07-081-41/+33
| | | | | | | | (adjust_overlays_for_insert, adjust_overlays_for_delete) (fix_overlays_in_range, Fmake_overlay, Fmove_overlay) (evaporate_overlays, init_buffer_once): Update use of overlay_center. (overlays_at, evaporate_overlays, recenter_overlay_lists) (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
* (Fkill_buffer): Clear charpos cache if necessary.Kenichi Handa2003-07-071-0/+1
|
* (set_buffer_internal_1): Test CONSP for lists.Stefan Monnier2003-06-261-29/+21
| | | | (Fget_buffer_create, Fkill_buffer, Fset_buffer_multibyte): Update to new types.
* (init_buffer_once): Make kill-buffer-hook permanent-local.Stefan Monnier2003-06-031-0/+1
|
* (Fset_buffer_multibyte): Fix previous change.Kenichi Handa2003-06-021-1/+1
|
* (Fset_buffer_multibyte): Correctly recover a narrowedKenichi Handa2003-06-011-1/+6
| | | | region when a buffer is changed to unibyte.
* Comment.Dave Love2003-05-291-3/+4
|
* (syms_of_buffer) <default-direction-reversed>: Doc fix.Andreas Schwab2003-05-261-1/+1
|
* (Fkill_buffer): Remove unused var `list'.Stefan Monnier2003-05-251-1/+0
|
* (init_buffer_once): Set buffer_defaults andKim F. Storm2003-05-241-8/+74
| | | | | | | | buffer_local_flags for new buffer-local variables left_fringe_width, right_fringe_width, fringes_outside_margins, scroll_bar_width, and vertical_scroll_bar_type. (syms_of_buffer): Defvar_per_buffer them, and defvar_lisp_nopro default-* variables for them.
* (reset_buffer_local_variables): Remove redundant setting.Stefan Monnier2003-05-231-1/+0
|
* (Fselect_window): Add optional arg `norecord'.Stefan Monnier2003-05-171-3/+3
|
* (Foverlay_recenter): Doc fix.Richard M. Stallman2003-04-161-1/+3
|
* (overlays_in): Declare static.Stefan Monnier2003-03-251-3/+4
| | | | | (syms_of_buffer) <enable-multibyte-characters>: Use the symbol's `constant' field rather than the variable's `type' field.
* (Fkill_buffer): Use Frun_hook_with_args_until_failureRichard M. Stallman2003-03-031-6/+8
| | | | | | to run kill-buffer-query-functions. (Qkill_buffer_query_functions): New var. (syms_of_buffer): Init and staticpro it.
* (Fset_buffer_multibyte): Pay attention to the bufferKenichi Handa2003-02-251-0/+2
| | | | process only when "subprocesses" is defined.
* (Fset_buffer_multibyte): If the current buffer has aKenichi Handa2003-02-101-0/+9
| | | | process, update coding systems for the process.
* Trailing whitespace deleted.Juanma Barranquero2003-02-041-70/+70
|
* (Fkill_buffer): Call format2 instead of format1.Richard M. Stallman2003-01-251-2/+2
|
* (syms_of_buffer) <scroll-up-aggressively, scroll-down-aggressively>: Doc fixes.Richard M. Stallman2003-01-061-8/+18
|
* (syms_of_buffer) <scroll-up-aggressively, scroll-down-aggressively>: Doc fix.Richard M. Stallman2002-12-231-2/+4
|
* (Fget_buffer_create): Call Qucs_set_table_for_input as the last thing.Richard M. Stallman2002-12-091-3/+4
|
* (Qucs_set_table_for_input): New.Dave Love2002-12-031-8/+16
| | | | | | | | | (Fget_buffer_create): Use it. (Qset_buffer_major_mode_hook): Deleted. (Fset_buffer_major_mode): Revert previous change. (init_buffer_once): Intern ucs-set-table-for-input. (syms_of_buffer): Delete Qset_buffer_major_mode_hook. Add &Qucs_set_table_for_input.
* (syms_of_buffer): Doc fix.Richard M. Stallman2002-11-151-1/+2
|
* (syms_of_buffer) <mode-line-format>: Document symbolKim F. Storm2002-11-141-0/+5
| | | | dependency on `risky-local-variable' and the :propertize form.
* (Fset_buffer_major_mode): Fix last change.Dave Love2002-11-091-1/+1
|
* (Qset_buffer_major_mode_hook): New.Dave Love2002-11-061-6/+8
| | | | (Fset_buffer_major_mode): Use it.
* Comment.Dave Love2002-10-301-2/+2
|
* (assoc_ignore_text_properties, Fother_buffer, Fkill_buffer)Stefan Monnier2002-10-221-21/+21
| | | | | (call_overlay_mod_hooks): Use CONSP and XCAR/XCDR. (Fget_buffer_create, advance_to_char_boundary): Use BEG and BEG_BYTE;
* (overlays_at): Handle extending vec uniformly.Richard M. Stallman2002-08-171-4/+14
| | | | (overlays_in): Handle extending vec from length 0 as in overlays_at.
* (syms_of_buffer) <fill-column>: Doc fix.Richard M. Stallman2002-08-121-1/+2
|
* (Fbuffer_list): Doc fix.Richard M. Stallman2002-07-211-1/+3
|
* comment last changeKen Raeburn2002-07-211-1/+5
|
* (mmap_realloc): When shrinking, make sure number ofKen Raeburn2002-07-211-1/+1
| | | | pages is rounded towards zero.
* (reset_buffer_local_variables): Delete "#if 0" settings of non-existent fields.Ken Raeburn2002-07-161-5/+0
|
* * buffer.c (Fother_buffer): Use SREF when retrieving a byte fromKen Raeburn2002-07-161-1/+1
| | | | a string.
* * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use it.Ken Raeburn2002-07-151-2/+2
|
* Most uses of XSTRING combined with STRING_BYTES or indirection changed toKen Raeburn2002-07-151-29/+29
| | | | | SCHARS, SBYTES, STRING_INTERVALS, SREF, SDATA; explicit size_byte references left unchanged for now.
* Use macro SPECPDL_INDEX.Juanma Barranquero2002-07-111-4/+4
|
* (Fbuffer_local_value): Store current value into its bindingRichard M. Stallman2002-07-071-1/+20
| | | | so we get the up-to-date value for the binding that is loaded.
* (Fbury_buffer): Use frames_discard_buffer.Richard M. Stallman2002-06-261-1/+4
|