Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
db3a49a6
Commit
db3a49a6
authored
May 31, 2001
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(copy_overlays): Make ENABLE_CHECKING happy.
parent
0d88b7d0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
src/ChangeLog
src/ChangeLog
+6
-2
src/buffer.c
src/buffer.c
+2
-2
No files found.
src/ChangeLog
View file @
db3a49a6
2001-05-30 Stefan Monnier <monnier@cs.yale.edu>
* buffer.c (copy_overlays): Make ENABLE_CHECKING happy.
2001-05-30 Gerd Moellmann <gerd@gnu.org>
* xfns.c (enum image_value_type): New enumerator
...
...
@@ -24,7 +28,7 @@
2001-05-28 Gerd Moellmann <gerd@gnu.org>
* xmenu.c (xmenu_show) [!HAVE_MULTILINGUAL_MENU]: Don't overwrite
* xmenu.c (xmenu_show) [!HAVE_MULTILINGUAL_MENU]: Don't overwrite
an item's name with its key description in case the description
is a multibyte string.
...
...
@@ -56,7 +60,7 @@
* xfns.c (x_set_foreground_color): Change frame's cursor_pixel
only if it's equal to the former foreground pixel color.
(x_set_foreground_color, x_set_background_color)
(x_set_foreground_color, x_set_background_color)
(x_set_mouse_color, x_set_cursor_color): Cleaned up.
2001-05-16 Dave Love <fx@gnu.org>
...
...
src/buffer.c
View file @
db3a49a6
...
...
@@ -436,13 +436,13 @@ copy_overlays (b, list)
old_overlay
=
XCAR
(
list
);
charpos
=
marker_position
(
OVERLAY_START
(
old_overlay
));
start
=
Fmake_marker
();
Fset_marker
(
start
,
charpos
,
buffer
);
Fset_marker
(
start
,
make_number
(
charpos
)
,
buffer
);
XMARKER
(
start
)
->
insertion_type
=
XMARKER
(
OVERLAY_START
(
old_overlay
))
->
insertion_type
;
charpos
=
marker_position
(
OVERLAY_END
(
old_overlay
));
end
=
Fmake_marker
();
Fset_marker
(
end
,
charpos
,
buffer
);
Fset_marker
(
end
,
make_number
(
charpos
)
,
buffer
);
XMARKER
(
end
)
->
insertion_type
=
XMARKER
(
OVERLAY_END
(
old_overlay
))
->
insertion_type
;
...
...
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