emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/term.c


From: Juri Linkov
Subject: [Emacs-diffs] Changes to emacs/src/term.c
Date: Thu, 30 Jun 2005 10:57:50 -0400

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);
        }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]