summaryrefslogtreecommitdiff
path: root/src/buffer.c
AgeCommit message (Collapse)Author
2002-05-19* buffer.c (fix_overlays_in_range, fix_overlays_before): Don't take the addressKen Raeburn
of the cdr part of a cons cell; instead, track the parent cell and call XSETCDR, or set the variable for the head of the list if we haven't started down the list yet.
2002-05-17(emacs_strerror): Declare.Dave Love
(MMAP_ALLOCATED_P, mmap_enlarge, syms_of_buffer): Import changes from trunk.
2002-05-14(Fset_buffer_multibyte): Convert 8-bit bytes toKenichi Handa
multibyte form correctly.
2002-05-07(Fset_buffer_multibyte): Fix 8-bit char handling.Kenichi Handa
2002-04-23(syms_of_buffer): Doc fix.Colin Walters
2002-04-23(init_buffer): Fix PWD comment.Paul Eggert
2002-04-16(MMAP_ALLOCATED_P): New macro to be set from systemGerd Moellmann
configuration files. (mmap_enlarge): Enlarge mapped regions only if MMAP_ALLOCATED_P returns 0.
2002-03-04(syms_of_buffer): Allow non-string `mode-name'.Stefan Monnier
2002-03-02(syms_of_buffer) <buffer-file-coding-system>: Doc fix.Eli Zaretskii
2002-03-01Include "character.h" instead of "charset.h", don't includeKenichi Handa
"coding.h". (Fset_buffer_multibyte): Adjuted for UTF-8.
2002-01-26(syms_of_buffer): Doc fixes for scroll-...-aggressively.Richard M. Stallman
2002-01-15(Fkill_all_local_variables): Increment `update_mode_lines' only once.Pavel Janík
2001-12-16(reset_buffer): Initialize `display_error_modiff'.Richard M. Stallman
2001-11-26(Fkill_buffer): Use Frun_hooks, not Vrun_hooks.Richard M. Stallman
2001-11-14(syms_of_buffer): Doc fixes.Richard M. Stallman
2001-11-09(Fbury_buffer): Use braces to follow GNU Coding Standards.Pavel Janík
2001-11-06(Fkill_buffer): Don't delete auto save file if buffer is modified.Richard M. Stallman
2001-11-05(Fbuffer_local_value): Remove extra args from CHECK_SYMBOL and CHECK_BUFFER.Richard M. Stallman
2001-11-05(Fbuffer_local_value): New function.Richard M. Stallman
(syms_of_buffer): defsubr it.
2001-11-02Update usage of CHECK_ macros (remove unused second argument).Pavel Janík
2001-11-01Fix a typo.Gerd Moellmann
2001-10-31(selective-display-ellipses): Doc fix.Pavel Janík
2001-10-21Reindent DEFUNs and DEFVARs woth doc: keywords.Pavel Janík
2001-10-17Change doc-string comments to `new style' [w/`doc:' keyword].Miles Bader
2001-10-16(Fset_buffer_major_mode): Use initial-major-mode forGerd Moellmann
*scratch*.
2001-10-16Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimentingKen Raeburn
with lisp system changes.
2001-10-15Put doc strings in comments.Pavel Janík
2001-10-12(Fbury_buffer): Don't try to remove the buffer from theStefan Monnier
selected window if it's not displayed there. Handle the case when the window is dedicated. (syms_of_buffer): Fix docstrings not to mention "buffer-local" anymore.
2001-10-10Include keymap.h.Stefan Monnier
2001-10-05Use SYMBOL_VALUE/SET_SYMBOL_VALUE macros instead of accessingGerd Moellmann
symbols' value directly.
2001-09-18Fix a typo in a comment.Eli Zaretskii
2001-09-18(modify_overlay): Don't do nothing if START == END;Gerd Moellmann
This can still be a modification, for example when an overlay has a before-string or after-string. (Fdelete_overlay): Prevent redisplay optimizations when deleting an overlay with before-string or after-string.
2001-09-03(syms_of_buffer): Doc fix.Gerd Moellmann
2001-07-06(syms_of_buffer) [if 0]: Avoid a warning from GCC 3.0.Eli Zaretskii
2001-05-31(copy_overlays): Make ENABLE_CHECKING happy.Stefan Monnier
2001-05-16(copy_overlays): New function.Gerd Moellmann
(clone_per_buffer_values): Use it.
2001-04-25(mouse_face_overlay_overlaps): Fix the computationGerd Moellmann
of the number of overlays to check.
2001-03-26(syms_of_buffer): Doc fix.Eli Zaretskii
2001-03-15(swap_out_buffer_local_variables): CallGerd Moellmann
store_symval_forwarding with BUF null.
2001-03-07(syms_of_buffer) <header-line-format>: Doc fix.Gerd Moellmann
2001-03-06(mouse_face_overlay_overlaps): New function.Gerd Moellmann
2001-01-16(Fset_buffer_modified_p): Set buffer'sGerd Moellmann
prevent_redisplay_optimizations_p flag.
2000-12-12(Fkill_buffer): Don't Fset_buffer when testing ifGerd Moellmann
the buffer is the sole visible buffer when in the mini-buffer.
2000-11-22(Fmake_indirect_buffer): Don't treat nil as aGerd Moellmann
buffer object.
2000-11-21(Fkill_buffer): Notice if the buffer to kill is theGerd Moellmann
sole visible buffer when we're currently in the mini-buffer, and give up if so.
2000-11-21(mmap_free_1): Avoid a compiler warning.Gerd Moellmann
2000-11-20(MAP_FAILED): Define it as `((void *) -1)' if it'sGerd Moellmann
not defined in mman.h.
2000-11-18(mmap_enlarge): Don't print a message on stderrGerd Moellmann
if mapping new memory at the end of the existing region fails.
2000-10-25(overlays_at): Only let CHANGE_REQ inhibit an assignment of startpos toMiles Bader
prev when startpos == pos.
2000-09-25Include stdio.h.Dave Love