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
8738febd
Commit
8738febd
authored
Oct 23, 2001
by
Gerd Moellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(display_line): For a tab continued to the next line,
set row's ends_in_middle_of_char_p.
parent
6acf9baf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/xdisp.c
src/xdisp.c
+4
-1
No files found.
src/ChangeLog
View file @
8738febd
2001-10-23 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (display_line): For a tab continued to the next line,
set row's ends_in_middle_of_char_p.
2001-10-22 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (display_line): Fix computation of continuation lines
...
...
src/xdisp.c
View file @
8738febd
...
...
@@ -12944,7 +12944,10 @@ display_line (it)
/* A TAB takes us to the right edge of the window. */
if (it->c == '\t')
it->continuation_lines_width += it->last_visible_x;
{
it->continuation_lines_width += it->last_visible_x;
row->ends_in_middle_of_char_p = 1;
}
else
it->continuation_lines_width += x;
...
...
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