Guest User

Untitled

a guest
Jun 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. diff -pruN riece-7.0.0.orig/lisp/riece-ctlseq.el riece-7.0.0/lisp/riece-ctlseq.el
  2. --- riece-7.0.0.orig/lisp/riece-ctlseq.el 2010-05-29 08:58:38.000000000 +0900
  3. +++ riece-7.0.0/lisp/riece-ctlseq.el 2010-10-14 16:21:47.000000000 +0900
  4. @@ -136,7 +136,13 @@
  5. (cond
  6. ((eq (aref tag 0) ?\x2) ;^B
  7. (plist-put attrs 'bold (not (plist-get attrs 'bold))))
  8. - ((eq (aref tag 0) ?\xF)) ;^O
  9. + ((eq (aref tag 0) ?\xF) ;^O
  10. + (progn
  11. + (plist-put attrs 'bold nil)
  12. + (plist-put attrs 'inverse-video nil)
  13. + (plist-put attrs 'underline nil)
  14. + (plist-put attrs 'foreground nil)
  15. + (plist-put attrs 'background nil)))
  16. ((eq (aref tag 0) ?\x16) ;^V
  17. (plist-put attrs 'inverse-video (not (plist-get attrs 'inverse-video))))
  18. ((eq (aref tag 0) ?\x1F) ;^_
Add Comment
Please, Sign In to add comment