projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d5859f3
)
(display_string): Ignore W->left if OBEY_WINDOW_WIDTH is zero.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 18 Jul 1997 17:46:56 +0000
(17:46 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 18 Jul 1997 17:46:56 +0000
(17:46 +0000)
src/xdisp.c
patch
|
blob
|
history
diff --git
a/src/xdisp.c
b/src/xdisp.c
index 7790109de869ac12964ab7a3ba9dd25ce3374bcc..d5a867d22b3f1bcbf0ce89f53bc64e2d1ac36f82 100644
(file)
--- a/
src/xdisp.c
+++ b/
src/xdisp.c
@@
-4675,10
+4675,11
@@
display_string (w, vpos, string, length, hpos, truncate,
if (tab_width <= 0 || tab_width > 1000) tab_width = 8;
p1 = p1start;
- start = desired_glyphs->glyphs[vpos]
+ XFASTINT (w->left)
;
+ start = desired_glyphs->glyphs[vpos];
if (obey_window_width)
{
+ start += XFASTINT (w->left);
end = start + window_width - (truncate != 0);
if (!WINDOW_RIGHTMOST_P (w))