diff options
| author | Dmitry Antipov | 2012-08-13 07:39:07 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2012-08-13 07:39:07 +0400 |
| commit | 4c31be6153255dfe29a0231253263ea0d9011ac3 (patch) | |
| tree | cfd30617b9270436aad8cdf810a97721aaa20747 /src/cmds.c | |
| parent | 1439443be63a2b0d796df8ebca882cdaecb7269f (diff) | |
| download | emacs-4c31be6153255dfe29a0231253263ea0d9011ac3.tar.gz emacs-4c31be6153255dfe29a0231253263ea0d9011ac3.zip | |
Use BSET for write access to Lisp_Object members of struct buffer.
* buffer.h (BSET): New macro.
* buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
* fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
* minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
* window.c, xdisp.c, xfns.c: Adjust users.
Diffstat (limited to 'src/cmds.c')
| -rw-r--r-- | src/cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmds.c b/src/cmds.c index c06a9edd160..24778fae6e3 100644 --- a/src/cmds.c +++ b/src/cmds.c | |||
| @@ -301,7 +301,7 @@ At the end, it runs `post-self-insert-hook'. */) | |||
| 301 | added be explicit calls to undo-boundary. */ | 301 | added be explicit calls to undo-boundary. */ |
| 302 | && EQ (BVAR (current_buffer, undo_list), last_undo_boundary)) | 302 | && EQ (BVAR (current_buffer, undo_list), last_undo_boundary)) |
| 303 | /* Remove the undo_boundary that was just pushed. */ | 303 | /* Remove the undo_boundary that was just pushed. */ |
| 304 | BVAR (current_buffer, undo_list) = XCDR (BVAR (current_buffer, undo_list)); | 304 | BSET (current_buffer, undo_list, XCDR (BVAR (current_buffer, undo_list))); |
| 305 | 305 | ||
| 306 | /* Barf if the key that invoked this was not a character. */ | 306 | /* Barf if the key that invoked this was not a character. */ |
| 307 | if (!CHARACTERP (last_command_event)) | 307 | if (!CHARACTERP (last_command_event)) |