diff options
| author | Stefan Monnier | 2019-01-08 13:38:17 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2019-01-08 13:38:17 -0500 |
| commit | f9d0fd6c1953138f7473a22917a1508740b2ce40 (patch) | |
| tree | f6ddbdbfd8ba699166cf4fc0f36535c448b3f32a /src | |
| parent | f369c2cbee629177bd545b90065682f3d067f4c4 (diff) | |
| download | emacs-f9d0fd6c1953138f7473a22917a1508740b2ce40.tar.gz emacs-f9d0fd6c1953138f7473a22917a1508740b2ce40.zip | |
* src/window.c (save_window_save): Revert part of d82e73f
...made unnecessary by a058edae.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/window.c b/src/window.c index 4a1db932ec3..72185f9340a 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -6965,11 +6965,9 @@ save_window_save (Lisp_Object window, struct Lisp_Vector *vector, ptrdiff_t i) | |||
| 6965 | 6965 | ||
| 6966 | if (BUFFERP (w->contents)) | 6966 | if (BUFFERP (w->contents)) |
| 6967 | { | 6967 | { |
| 6968 | Lisp_Object buffer_local_window_point_insertion_type | ||
| 6969 | = (buffer_local_value (Qwindow_point_insertion_type, w->contents)); | ||
| 6970 | bool window_point_insertion_type | 6968 | bool window_point_insertion_type |
| 6971 | = (!NILP (buffer_local_window_point_insertion_type) | 6969 | = !NILP (buffer_local_value |
| 6972 | && !EQ (buffer_local_window_point_insertion_type, Qunbound)); | 6970 | (Qwindow_point_insertion_type, w->contents)); |
| 6973 | 6971 | ||
| 6974 | /* Save w's value of point in the window configuration. If w | 6972 | /* Save w's value of point in the window configuration. If w |
| 6975 | is the selected window, then get the value of point from | 6973 | is the selected window, then get the value of point from |