aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-08-11 03:47:40 +0000
committerRichard M. Stallman1994-08-11 03:47:40 +0000
commitb4718ffa3a367c539719ca29db2d88a192a30ba5 (patch)
treee1c56878fb0656e4eed707fb22fa617e4c12a199 /src
parentc764f95fab66ee945b884d8a609347f2a6574208 (diff)
downloademacs-b4718ffa3a367c539719ca29db2d88a192a30ba5.tar.gz
emacs-b4718ffa3a367c539719ca29db2d88a192a30ba5.zip
(display_text_line): Make previous change #ifdef HAVE_X_WINDOWS.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 571db0fc91d..4af4988c3ba 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -2490,6 +2490,7 @@ display_text_line (w, start, vpos, hpos, taboffset)
2490 2490
2491 if (len > width) 2491 if (len > width)
2492 len = width; 2492 len = width;
2493#ifdef HAVE_X_WINDOWS
2493 if (!NULL_INTERVAL_P (XSTRING (Voverlay_arrow_string)->intervals)) 2494 if (!NULL_INTERVAL_P (XSTRING (Voverlay_arrow_string)->intervals))
2494 { 2495 {
2495 /* If the arrow string has text props, obey them when displaying. */ 2496 /* If the arrow string has text props, obey them when displaying. */
@@ -2506,6 +2507,7 @@ display_text_line (w, start, vpos, hpos, taboffset)
2506 } 2507 }
2507 } 2508 }
2508 else 2509 else
2510#endif /* HAVE_X_WINDOWS */
2509 { 2511 {
2510 for (i = 0; i < len; i++) 2512 for (i = 0; i < len; i++)
2511 leftmargin[i] = p[i]; 2513 leftmargin[i] = p[i];