Index: emacs/src/term.c
diff -c emacs/src/term.c:1.162 emacs/src/term.c:1.163
*** emacs/src/term.c:1.162 Fri Jun 17 14:08:58 2005
--- emacs/src/term.c Thu Jun 30 14:57:50 2005
***************
*** 2005,2018 ****
if (fg >= 0 && TS_set_foreground)
{
! p = tparam (TS_set_foreground, NULL, 0, (int) fg);
OUTPUT (p);
xfree (p);
}
if (bg >= 0 && TS_set_background)
{
! p = tparam (TS_set_background, NULL, 0, (int) bg);
OUTPUT (p);
xfree (p);
}
--- 2005,2024 ----
if (fg >= 0 && TS_set_foreground)
{
! if (standout_mode)
! p = tparam (TS_set_background, NULL, 0, (int) fg);
! else
! p = tparam (TS_set_foreground, NULL, 0, (int) fg);
OUTPUT (p);
xfree (p);
}
if (bg >= 0 && TS_set_background)
{
! if (standout_mode)
! p = tparam (TS_set_foreground, NULL, 0, (int) bg);
! else
! p = tparam (TS_set_background, NULL, 0, (int) bg);
OUTPUT (p);
xfree (p);
}
_______________________________________________
Emacs-diffs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-diffs