Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
de8c03dc
Commit
de8c03dc
authored
Apr 10, 2012
by
Stefan Monnier
Browse files
* src/window.c (save_window_save): Obey window-point-insertion-type.
* lisp/window.el (window--state-get-1): Idem.
parent
050cc68b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
1 deletion
+15
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/window.el
lisp/window.el
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/window.c
src/window.c
+2
-0
No files found.
lisp/ChangeLog
View file @
de8c03dc
2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
* window.el (window--state-get-1): Obey window-point-insertion-type.
2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
* emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
...
...
lisp/window.el
View file @
de8c03dc
...
...
@@ -3643,7 +3643,11 @@ specific buffers."
(
scroll-bars
.
,
(
window-scroll-bars
window
))
(
vscroll
.
,
(
window-vscroll
window
))
(
dedicated
.
,
(
window-dedicated-p
window
))
(
point
.
,
(
if
writable
point
(
copy-marker
point
)))
(
point
.
,
(
if
writable
point
(
copy-marker
point
(
buffer-local-value
'window-point-insertion-type
buffer
))))
(
start
.
,
(
if
writable
start
(
copy-marker
start
)))))))))
(
tail
(
when
(
memq
type
'
(
vc
hc
))
...
...
src/ChangeLog
View file @
de8c03dc
2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
* window.c (save_window_save): Obey window-point-insertion-type.
2012-04-11 Glenn Morris <rgm@gnu.org>
* Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
...
...
src/window.c
View file @
de8c03dc
...
...
@@ -5945,6 +5945,8 @@ save_window_save (Lisp_Object window, struct Lisp_Vector *vector, int i)
}
else
p->pointm = Fcopy_marker (w->pointm, Qnil);
XMARKER (p->pointm)->insertion_type
= !NILP (Vwindow_point_insertion_type);
p->start = Fcopy_marker (w->start, Qnil);
p->start_at_line_beg = w->start_at_line_beg;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment