From 7ae7b018ccf7760013f368fcb83aad9ecd8982a8 Mon Sep 17 00:00:00 2001 From: Mathieu Arnold Date: Mon, 20 Jun 2016 16:23:28 +0000 Subject: With the power of USES=dos2unix, get rid of most patches and files with CRLF. While there, run make makepatch, rename patches to use the new scheme, and various fixes. With hat: portmgr Sponsored by: Absolight --- .../patch-java_src_charvax_swing_JTextArea.java | 80 +++++++++++----------- 1 file changed, 40 insertions(+), 40 deletions(-) (limited to 'devel/charva/files/patch-java_src_charvax_swing_JTextArea.java') diff --git a/devel/charva/files/patch-java_src_charvax_swing_JTextArea.java b/devel/charva/files/patch-java_src_charvax_swing_JTextArea.java index e81f770de064..cfff4704fae8 100644 --- a/devel/charva/files/patch-java_src_charvax_swing_JTextArea.java +++ b/devel/charva/files/patch-java_src_charvax_swing_JTextArea.java @@ -1,40 +1,40 @@ ---- java/src/charvax/swing/JTextArea.java.orig Fri Dec 30 16:14:22 2005 -+++ java/src/charvax/swing/JTextArea.java Mon Jan 29 09:39:30 2007 -@@ -412,6 +412,10 @@ public class JTextArea - Point tempCaret = null; - Point caret = _caret; - -+ int attrib = 0; -+ if (_bold) -+ attrib |= Toolkit.A_BOLD; -+ - /* Get the absolute origin of this component. - */ - Point origin = getLocationOnScreen(); -@@ -458,7 +462,7 @@ public class JTextArea - _rows++; - term.setCursor(origin.addOffset(col, row)); - } else { -- term.addChar(chr, 0, colorpair); -+ term.addChar(chr, attrib, colorpair); - col++; - } - } else { // We have reached the right-hand column. -@@ -470,7 +474,7 @@ public class JTextArea - _rows++; - term.setCursor(origin.addOffset(col, row)); - } else { -- term.addChar(chr, 0, colorpair); -+ term.addChar(chr, attrib, colorpair); - col++; - _columns++; - } -@@ -482,7 +486,7 @@ public class JTextArea - _rows++; - term.setCursor(origin.addOffset(col, row)); - if (chr != '\n') // thanks to Chris Rogers for this -- term.addChar(chr, 0, colorpair); -+ term.addChar(chr, attrib, colorpair); - } else { - /* We must back-track until we get to whitespace, so - * that we can move the word to the next line. +--- java/src/charvax/swing/JTextArea.java.orig 2016-06-20 12:40:44 UTC ++++ java/src/charvax/swing/JTextArea.java +@@ -412,6 +412,10 @@ public class JTextArea + Point tempCaret = null; + Point caret = _caret; + ++ int attrib = 0; ++ if (_bold) ++ attrib |= Toolkit.A_BOLD; ++ + /* Get the absolute origin of this component. + */ + Point origin = getLocationOnScreen(); +@@ -458,7 +462,7 @@ public class JTextArea + _rows++; + term.setCursor(origin.addOffset(col, row)); + } else { +- term.addChar(chr, 0, colorpair); ++ term.addChar(chr, attrib, colorpair); + col++; + } + } else { // We have reached the right-hand column. +@@ -470,7 +474,7 @@ public class JTextArea + _rows++; + term.setCursor(origin.addOffset(col, row)); + } else { +- term.addChar(chr, 0, colorpair); ++ term.addChar(chr, attrib, colorpair); + col++; + _columns++; + } +@@ -482,7 +486,7 @@ public class JTextArea + _rows++; + term.setCursor(origin.addOffset(col, row)); + if (chr != '\n') // thanks to Chris Rogers for this +- term.addChar(chr, 0, colorpair); ++ term.addChar(chr, attrib, colorpair); + } else { + /* We must back-track until we get to whitespace, so + * that we can move the word to the next line. -- cgit v1.2.3