aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c (unfollow)
Commit message (Expand)AuthorFilesLines
2012-11-03* lisp/cus-start.el: Make cursor-type customizable.Chong Yidong1-8/+8
2012-10-17* buffer.c (Fkill_buffer): When unchaining the marker,Dmitry Antipov1-12/+13
2012-10-17Do not verify indirection counters of killed buffers (Bug#12579).Dmitry Antipov1-9/+4
2012-10-11* src/buffer.c (Fset_buffer): Doc fix. (Bug#12624)Glenn Morris1-1/+1
2012-10-11* src/buffer.c (Fkill_buffer): Null out the overlay list(s) as well.Stefan Monnier1-11/+20
2012-10-01* src/buffer.c (Fmake_overlay): Fix last change.Stefan Monnier1-3/+2
2012-10-01Misc minor simplifications in C code.Stefan Monnier1-7/+6
2012-09-30Prefer plain 'static' to 'static inline'.Paul Eggert1-46/+46
2012-09-23Simplify and avoid signal-handling races.Paul Eggert1-12/+12
2012-09-22Fix auto-save and locking for indirect buffers.Chong Yidong1-2/+6
2012-09-15Port better to POSIX hosts lacking _setjmp.Paul Eggert1-1/+0
2012-09-11Convenient macro to check whether the buffer is live.Dmitry Antipov1-16/+16
2012-09-09* lisp/eshell/em-unix.el (eshell/sudo): Explicitly drop return value.Stefan Monnier1-5/+5
2012-09-06Explicitly mark buffer_defaults and buffer_local_symbols.Dmitry Antipov1-19/+3
2012-09-04Simplify redefinition of 'abort' (Bug#12316).Paul Eggert1-6/+6
2012-09-03Fix minor problems found by static checking.Paul Eggert1-0/+1
2012-09-03New macro with-temp-buffer-window and related fixes.Martin Rudalics1-0/+20
2012-08-28Do not allow to set major mode for a dead buffer.Dmitry Antipov1-4/+4
2012-08-28Always use set_buffer_if_live to restore original buffer at unwind.Dmitry Antipov1-1/+1
2012-08-28Fix usage of set_buffer_internal.Dmitry Antipov1-17/+1
2012-08-23* buffer.c, buffer.h: Use bool for boolean.Paul Eggert1-65/+53
2012-08-20Inline getter and setter functions for per-buffer values.Dmitry Antipov1-5/+5
2012-08-17* buffer.h (BSET): Remove.Paul Eggert1-138/+364
2012-08-17* frame.h (FSET): Remove (Bug#12215).Paul Eggert1-5/+5
2012-08-17A few more naming-convention fixes for getters and setters.Paul Eggert1-29/+42
2012-08-14Revert and cleanup some recent overlay changes.Dmitry Antipov1-65/+57
2012-08-13Use BSET for write access to Lisp_Object members of struct buffer.Dmitry Antipov1-135/+138
2012-08-08Inline functions to examine and change buffer overlays.Dmitry Antipov1-59/+73
2012-08-08Inline functions to examine and change buffer intervals.Dmitry Antipov1-4/+4
2012-08-08Inline functions to examine and change string intervals.Dmitry Antipov1-2/+2
2012-08-08Cleanup intervals.Dmitry Antipov1-6/+6
2012-08-07Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.Dmitry Antipov1-15/+15
2012-08-07Drop WGET and revert read access to Lisp_Objects slots of struct window.Dmitry Antipov1-9/+9
2012-08-07Drop FGET and revert read access to Lisp_Objects slots of struct frame.Dmitry Antipov1-7/+7
2012-08-06Separate read and write access to Lisp_Object slots of struct window.Dmitry Antipov1-9/+9
2012-08-06Separate read and write access to Lisp_Object slots of struct frame.Dmitry Antipov1-8/+8
2012-08-05Generalize common compile-time constants.Dmitry Antipov1-5/+4
2012-08-02Use C99-style 'extern inline' if available.Paul Eggert1-0/+2
2012-08-01Use INTERNAL_FIELD for conses and overlays.Dmitry Antipov1-14/+15
2012-08-01Use INTERNAL_FIELD for windows.Dmitry Antipov1-9/+10
2012-07-31Generalize INTERNAL_FIELD between buffers, keyboards and frames.Dmitry Antipov1-9/+10
2012-07-29* lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.Paul Eggert1-4/+4
2012-07-28Use Gnulib stdalign and environ modules (Bug#9772, Bug#9960).Paul Eggert1-2/+2
2012-07-27Fix failure to compile on Windows due to 2012-07-27T06:04:35Z!dmantipov@yande...Eli Zaretskii1-1/+1
2012-07-27Utility function to make a list from specified amount of objects.Dmitry Antipov1-1/+1
2012-07-25Adjust buffer text indirection counters at the end of Fkill_buffer.Dmitry Antipov1-9/+12
2012-07-24Simplify copy_overlay.Dmitry Antipov1-19/+11
2012-07-23Cleanup miscellaneous objects allocation and initialization.Dmitry Antipov1-12/+3
2012-07-23Swap buffer text indirection counters in Fbuffer_swap_text.Dmitry Antipov1-0/+1
2012-07-20Add indirection counting to speed up Fkill_buffer.Dmitry Antipov1-3/+29