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
f2fa858f
Commit
f2fa858f
authored
Nov 22, 1999
by
Gerd Moellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(direct_output_for_insert): Increment glyph positions
for glyphs from buffer text only.
parent
855b9e33
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
src/ChangeLog
src/ChangeLog
+3
-0
src/dispnew.c
src/dispnew.c
+1
-1
No files found.
src/ChangeLog
View file @
f2fa858f
No preview for this file type
src/dispnew.c
View file @
f2fa858f
...
...
@@ -3163,7 +3163,7 @@ direct_output_for_insert (g)
/* Increment buffer positions for glyphs following the newly
inserted ones. */
for
(
glyph
=
glyphs
+
n
;
glyph
<
end
;
++
glyph
)
if
(
glyph
->
charpos
>
0
)
if
(
glyph
->
charpos
>
0
&&
BUFFERP
(
glyph
->
object
)
)
glyph
->
charpos
+=
delta
;
if
(
MATRIX_ROW_END_CHARPOS
(
glyph_row
)
>
0
)
...
...
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