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