billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=2063e2f4f4ab6515601eecf9379bcbbd2b7d928d

commit 2063e2f4f4ab6515601eecf9379bcbbd2b7d928d
Author: Boris Faure <[email protected]>
Date:   Mon Mar 3 23:02:17 2014 +0100

    fix ^[22m: no bold/bright, no faint
---
 src/bin/termptyesc.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/bin/termptyesc.c b/src/bin/termptyesc.c
index daf0ce7..1366a93 100644
--- a/src/bin/termptyesc.c
+++ b/src/bin/termptyesc.c
@@ -165,7 +165,8 @@ _handle_esc_csi_color_set(Termpty *ty, Eina_Unicode **ptr)
                 case 21: // no bold/bright
                    ty->state.att.bold = 0;
                    break;
-                case 22: // no faint
+                case 22: // no bold/bright, no faint
+                   ty->state.att.bold = 0;
                    ty->state.att.faint = 0;
                    break;
                 case 23: // no italic

-- 


Reply via email to