Re: Possible to install jEdit on a new Mac?
Vampire <[email protected]> Fri, 17 Nov 2023 16:50:07 +0100
| Newsgroups | gmane.editors.jedit.user |
|---|---|
| Message-ID | <CAKChYSpDFHKCTqP2kZ03NUk1XqwLaAS=ZLjCpXD5kvpof2TSiw@mail.gmail.com> |
--===============7140906344152028327==
Content-Type: multipart/alternative; boundary="000000000000dff615060a5b1748"
--000000000000dff615060a5b1748
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Yes, thanks.
It at least shows, that it can properly find the correct Java to use,
and that then it is either unable to open the dylib file, or it doesn't
find the JLI_Launch symbol in that dylib file.
Another command to do please:
find $(/usr/libexec/java_home -V 2>&1 | grep Contents/Home | rev | cut -d '
' -f 1 | rev | sort -u) -type f -name libjli.dylib | xargs -I{} sh -c
'echo; echo {}; nm -gU "{}" | grep JLI_Launch'
Cheers
Bj=C3=B6rn
Am Fr., 17. Nov. 2023 um 15:17 Uhr schrieb Gregory Garretson <
[email protected]>:
> Hi again Bj=C3=B6rn, and thanks. Here is what the commands return:
>
> What are these four commands returning?
>
> /usr/libexec/java_home -v 1.11+
>
>
> /Library/Java/JavaVirtualMachines/jdk-21.jdk/Contents/Home
>
> jEdit.app/Contents/MacOS/jedit --verbose
>
>
> Loading Application 'jEdit'
> Searching for a JRE.
> Searching for a Java 11
> Found a Java 1.8.0_391 JRE
> Looks like major version 8
> No matching JRE found.
> Found a Java 21.jdk JDK
> Looks like major version 21
> JDK version qualifies
> Java Runtime Dylib Path:
> '/Library/Java/JavaVirtualMachines/jdk-21.jdk/Contents/Home/lib/libjli.dy=
lib'
> Launchpath:
> /Library/Java/JavaVirtualMachines/jdk-21.jdk/Contents/Home/lib/libjli.dyl=
ib
> Error launching JVM Runtime ((null)) Relative Path:
> '/Library/Java/JavaVirtualMachines/jdk-21.jdk/Contents/Home' (dylib:
> /Library/Java/JavaVirtualMachines/jdk-21.jdk/Contents/Home/lib/libjli.dyl=
ib)
> error: This application requires that Java 11 or later be installed on
> your computer. Please download and install the latest version of Java fro=
m
> www.java.com and try again.
>
>
> echo $JAVA_ARCH
>
>
> returns null
>
> find $(/usr/libexec/java_home -V 2>&1 | grep Contents/Home | rev | cut -d
> ' ' -f 1 | rev | sort -u) -type f -name libjli.dylib
>
>
> /Library/Java/JavaVirtualMachines/jdk-21.jdk/Contents/Home/lib/libjli.dyl=
ib
>
> /Library/Java/JavaVirtualMachines/temurin-21.jdk/Contents/Home/lib/libjli=
.dylib
> find: Plug-Ins/JavaAppletPlugin.plugin/Contents/Home: No such file or
> directory
>
> Does that help?
> Gregory
>
>
>
>
>
> Cheers
> Bj=C3=B6rn
>
>
> Am Fr., 17. Nov. 2023 um 12:16 Uhr schrieb Gregory Garretson <
> [email protected]>:
>
>> Hi Bj=C3=B6rn,
>>
>> Thanks for this. Unfortunately, the new macOS launcher encounters the
>> same problem as the one for 5.6. I get the error message that Java 11 is
>> required, and I should update Java. Now, without having dug very deep in=
to
>> the C code, I can see two possible reasons for this.
>>
>> The first is that it stops when it encounters the Java internet plugin,
>> which in my case is 1.8:
>>
>> /usr/libexec/java_home -V
>> Matching Java Virtual Machines (3):
>> 21.0.1 (arm64) "Oracle Corporation" - "Java SE 21.0.1"
>> /Library/Java/JavaVirtualMachines/jdk-21.jdk/Contents/Home
>> 21.0.1 (arm64) "Eclipse Adoptium" - "OpenJDK 21.0.1"
>> /Library/Java/JavaVirtualMachines/temurin-21.jdk/Contents/Home
>> 1.8.391.13 (x86_64) "Oracle Corporation" - "Java" /Library/Internet
>> Plug-Ins/JavaAppletPlugin.plugin/Contents/Home
>>
>> There is no update available from Java for this plugin.
>>
>> (You can also see from the above that usr/libexec/java_home does lead to
>> the JDK without problem.)
>>
>> The other possibility is suggested by this code in
>> appbundler/native/main.m:
>>
>> /**
>> * Searches for a JRE or JDK dylib of the specified version or later.
>> * First checks the "usual" JRE location, and failing that looks for a
>> JDK.
>> * The version required should be a string of form "1.X". If no version
>> is
>> * specified or the version is pre-1.7, then a Java 1.7 is sought.
>> */
>> NSString * findJavaDylib (
>> NSString *jvmRequired,
>> bool jrePreferred,
>> bool jdkPreferred,
>> bool isDebugging,
>> bool exactMatch)
>> {...}
>>
>> Since Java is no longer using the nomenclature 1.7, 1.8, etc., then mayb=
e
>> this is parsing the name of the version incorrectly? The version here is
>> 21, but this method may not be finding it because it expects a string of
>> the form 1.x. Might that be the problem?
>>
>> I will look at this again in more detail when I have more time.
>> Meanwhile, I really appreciate any suggestions anybody can make.
>>
>> Cheers,
>> Gregory
>>
>>
>> On Nov 17, 2023, at 3:12 AM, Vampire <[email protected]> wrote:
>>
>> Hi Gregory,
>>
>> I was about to release 5.7.0 and there also updated the macOS app bundle=
r.
>> Maybe you could quickly try
>> https://www.swisstransfer.com/d/b8bcf63b-b3d3-403c-a0ea-fd3adb6d83bd ?
>> Actually, I don't think it changes much in what Java is discovered, from
>> what I have seen in the changes, but who knows.
>>
>> If you are able to read C code, you could maybe see from
>> https://github.com/evolvedbinary/appbundler/blob/main/appbundler/native/=
main.m
>> where Java runtimes are searched for.
>> From a very cursory look, I'd say it first searches for
>> `/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin/ja=
va`
>> and then uses `/usr/libexec/java_home` to find a matching JVM.
>>
>> If neither brings a result, it fails.
>>
>> Besides that Oracle Java is anyway questionable to be used since they
>> changed their licensing.
>> So maybe you also try with Temurin as Bobb suggested.
>>
>> Cheers
>> Bj=C3=B6rn
>>
>> Am 07.11.2023 18:07, schrieb Gregory Garretson:
>>
>> Hi Jack,
>>
>> Thanks, but I=E2=80=99m afraid it doesn=E2=80=99t seem to. I=E2=80=99ve =
installed both the JRE
>> and the JDK, but jEdit still tells me to install Java 11 or later, even
>> though I get this:
>>
>> java --version
>> java 21.0.1 2023-10-17 LTS
>> Java(TM) SE Runtime Environment (build 21.0.1+12-LTS-29)
>> Java HotSpot(TM) 64-Bit Server VM (build 21.0.1+12-LTS-29, mixed mode,
>> sharing)
>>
>> Any more thoughts?
>>
>> Thanks,
>> Gregory
>>
>>
>> On Nov 7, 2023, at 4:56 PM, Jack W. <[email protected]>
>> <[email protected]> wrote:
>>
>> Does this help?
>> https://docs.oracle.com/en/java/javase/11/install/installation-jdk-macos=
.html
>>
>> On Tue, Nov 7, 2023 at 9:35=E2=80=AFAM Gregory Garretson <
>> [email protected]> wrote:
>>
>>> Now I have a MacBook with an M3 Apple Silicon processor.
>>>
>>> My problem is that while jEdit 5.6 successfully installs on the machine=
,
>>> it doesn=E2=80=99t detect Java. It looks for Java 11,
>>
>>
>> --
>> Jack Woehr # If it doesn't work in Firefox,
>> Box 82, Beulah CO 81023 # it's broken.
>> http://www.softwoehr.com # Just Say No to Chrome.
>>
>>
>>
>>
>>
>>
>>
>>
>>
> --
> -----------------------------------------------
> jEdit Users' List
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/jedit-users
>
--000000000000dff615060a5b1748
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
<div dir=3D"ltr"><div>Yes, thanks.</div><div>It at least shows, that it can=
properly find the correct Java to use,</div><div>and that then it is eithe=
r unable to open the dylib file, or it doesn't find the JLI_Launch symb=
ol in that dylib file.</div><div><br></div><div>Another command to do pleas=
e:</div><div><br></div>find $(/usr/libexec/java_home -V 2>&1 | grep =
Contents/Home | rev | cut -d ' ' -f 1 | rev | sort -u) -type f -nam=
e libjli.dylib | xargs -I{} sh -c 'echo; echo {}; nm -gU "{}"=
| grep JLI_Launch'<br><div><br></div><div>Cheers</div><div>Bj=C3=B6rn<=
/div></div><br><div class=3D"gmail_quote"><div dir=3D"ltr" class=3D"gmail_a=
ttr">Am Fr., 17. Nov. 2023 um 15:17=C2=A0Uhr schrieb Gregory Garretson <=
<a href=3D"mailto:[email protected]">[email protected]</a>&=
gt;:<br></div><blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px=
0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div>Hi aga=
in Bj=C3=B6rn, and thanks. Here is what the commands return:<br><div><br><b=
lockquote type=3D"cite"><div>What are these four commands returning?</div><=
div><div dir=3D"ltr"><div><br></div><div>/usr/libexec/java_home -v 1.11+<br=
></div></div></div></blockquote><div><br></div><div>/Library/Java/JavaVirtu=
alMachines/jdk-21.jdk/Contents/Home</div><br><blockquote type=3D"cite"><div=
><div dir=3D"ltr"><div>jEdit.app/Contents/MacOS/jedit --verbose</div></div>=
</div></blockquote><div><br></div><div><div>Loading Application 'jEdit&=
#39;</div><div>Searching for a JRE.</div><div>Searching for a Java 11</div>=
<div>Found a Java 1.8.0_391 JRE</div><div>Looks like major version 8</div><=
div>No matching JRE found.</div><div>Found a Java 21.jdk JDK</div><div>Look=
s like major version 21</div><div>JDK version qualifies</div><div>Java Runt=
ime Dylib Path: '/Library/Java/JavaVirtualMachines/jdk-21.jdk/Contents/=
Home/lib/libjli.dylib'</div><div>Launchpath: /Library/Java/JavaVirtualM=
achines/jdk-21.jdk/Contents/Home/lib/libjli.dylib</div><div>Error launching=
JVM Runtime ((null)) Relative Path: '/Library/Java/JavaVirtualMachines=
/jdk-21.jdk/Contents/Home' (dylib: /Library/Java/JavaVirtualMachines/jd=
k-21.jdk/Contents/Home/lib/libjli.dylib)</div><div>=C2=A0 error: This appli=
cation requires that Java 11 or later be installed on your computer. Please=
download and install the latest version of Java from <a href=3D"http://www=
.java.com" target=3D"_blank">www.java.com</a> and try again.</div><div><br>=
</div></div><br><blockquote type=3D"cite"><div><div dir=3D"ltr"><div>echo $=
JAVA_ARCH</div></div></div></blockquote><div><br></div>returns null</div><d=
iv><br><blockquote type=3D"cite"><div><div dir=3D"ltr"><div>find $(/usr/lib=
exec/java_home -V 2>&1 | grep Contents/Home | rev | cut -d ' =
9; -f 1 | rev | sort -u) -type f -name libjli.dylib</div></div></div></bloc=
kquote><div><br></div><div>/Library/Java/JavaVirtualMachines/jdk-21.jdk/Con=
tents/Home/lib/libjli.dylib</div><div>/Library/Java/JavaVirtualMachines/tem=
urin-21.jdk/Contents/Home/lib/libjli.dylib</div><div>find: Plug-Ins/JavaApp=
letPlugin.plugin/Contents/Home: No such file or directory</div><div><br></d=
iv><div>Does that help?</div><div>Gregory</div><div><br></div><div><br></di=
v><div><br></div><blockquote type=3D"cite"><div><div dir=3D"ltr"><div><br><=
/div><div><br></div><div>Cheers</div><div>Bj=C3=B6rn</div><div><br></div></=
div><br><div class=3D"gmail_quote"><div dir=3D"ltr" class=3D"gmail_attr">Am=
Fr., 17. Nov. 2023 um 12:16=C2=A0Uhr schrieb Gregory Garretson <<a href=
=3D"mailto:[email protected]" target=3D"_blank">subscriber@garretso=
n.info</a>>:<br></div><blockquote class=3D"gmail_quote" style=3D"margin:=
0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">=
<div>Hi Bj=C3=B6rn,<div><br></div><div>Thanks for this. Unfortunately, the =
new macOS launcher encounters the same problem as the one for 5.6. I get th=
e error message that Java 11 is required, and I should update Java. Now, wi=
thout having dug very deep into the C code, I can see two possible reasons =
for this.</div><div><br></div><div>The first is that it stops when it encou=
nters the Java internet plugin, which in my case is 1.8:</div><div><br></di=
v><div><div>/usr/libexec/java_home -V</div><div>Matching Java Virtual Machi=
nes (3):</div><div>=C2=A0 =C2=A0 21.0.1 (arm64) "Oracle Corporation&qu=
ot; - "Java SE 21.0.1" /Library/Java/JavaVirtualMachines/jdk-21.j=
dk/Contents/Home</div><div>=C2=A0 =C2=A0 21.0.1 (arm64) "Eclipse Adopt=
ium" - "OpenJDK 21.0.1" /Library/Java/JavaVirtualMachines/te=
murin-21.jdk/Contents/Home</div><div>=C2=A0 =C2=A0 1.8.391.13 (x86_64) &quo=
t;Oracle Corporation" - "Java" /Library/Internet Plug-Ins/Ja=
vaAppletPlugin.plugin/Contents/Home</div><div><br></div><div>There is no up=
date available from Java for this plugin.</div><div><br></div><div>(You can=
also see from the above that usr/libexec/java_home does lead to the JDK wi=
thout problem.)</div><div><br></div><div>The other possibility is suggested=
by this code in appbundler/native/main.m:</div><div><br></div><div><div>/*=
*</div><div>=C2=A0* =C2=A0Searches for a JRE or JDK dylib of the specified =
version or later.</div><div>=C2=A0* =C2=A0First checks the "usual"=
; JRE location, and failing that looks for a JDK.</div><div>=C2=A0* =C2=A0T=
he version required should be a string of form "1.X". If no versi=
on is</div><div>=C2=A0* =C2=A0specified or the version is pre-1.7, then a J=
ava 1.7 is sought.</div><div>=C2=A0*/</div><div>NSString * findJavaDylib (<=
/div><div>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 NSString *jvmRequired,</div><div>=C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 bool jrePreferred,</div><div>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 bool jdkPreferred,</div><d=
iv>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 bool isDebugging,</div><div>=C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 bool exa=
ctMatch)</div><div>{...}</div></div><div><br></div><div>Since Java is no lo=
nger using the nomenclature 1.7, 1.8, etc., then maybe this is parsing the =
name of the version incorrectly? The version here is 21, but this method ma=
y not be finding it because it expects a string of the form 1.x. Might that=
be the problem?</div><div><br></div><div>I will look at this again in more=
detail when I have more time. Meanwhile, I really appreciate any suggestio=
ns anybody can make.</div><div><br></div><div>Cheers,</div><div>Gregory</di=
v><div><br></div><div><br><blockquote type=3D"cite"><div>On Nov 17, 2023, a=
t 3:12 AM, Vampire <[email protected]> wrote:</div><br><div>
=20
=20
=20
<div bgcolor=3D"#FFFFFF">
<div bgcolor=3D"#FFFFFF">Hi Gregory,</div>
<div bgcolor=3D"#FFFFFF"><br>
</div>
<div bgcolor=3D"#FFFFFF">I was about to release 5.7.0
and there also updated the macOS app bundler.</div>
<div bgcolor=3D"#FFFFFF">Maybe you could quickly try=C2=A0<a href=3D"ht=
tps://www.swisstransfer.com/d/b8bcf63b-b3d3-403c-a0ea-fd3adb6d83bd" target=
=3D"_blank">https://www.swisstransfer.com/d/b8bcf63b-b3d3-403c-a0ea-fd3adb6=
d83bd</a>
?<br>
Actually, I don't think=C2=A0it changes much in what Java is
discovered, from what I have seen in the changes, but who knows.</div=
>
<div bgcolor=3D"#FFFFFF"><br>
</div>
<div bgcolor=3D"#FFFFFF">If you are able to read C
code, you could maybe see from=C2=A0<a href=3D"https://github.com/evo=
lvedbinary/appbundler/blob/main/appbundler/native/main.m" target=3D"_blank"=
>https://github.com/evolvedbinary/appbundler/blob/main/appbundler/native/ma=
in.m</a>
where Java runtimes are searched for.</div>
<div bgcolor=3D"#FFFFFF">From a very cursory look, I'd
say it first searches for `/Library/Internet
Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin/java`</div>
<div bgcolor=3D"#FFFFFF">and then uses
`/usr/libexec/java_home` to find a matching JVM.</div>
<div bgcolor=3D"#FFFFFF"><br>
</div>
<div bgcolor=3D"#FFFFFF">If neither brings a result, it
fails.</div>
<div bgcolor=3D"#FFFFFF"><br>
</div>
<div bgcolor=3D"#FFFFFF">Besides that Oracle Java is
anyway questionable to be used since they changed their licensing.</d=
iv>
<div bgcolor=3D"#FFFFFF">So maybe you also try with
Temurin as Bobb suggested.</div>
<div bgcolor=3D"#FFFFFF"><br>
</div>
<div bgcolor=3D"#FFFFFF">Cheers</div>
<div bgcolor=3D"#FFFFFF">Bj=C3=B6rn</div>
<br>
<div>Am 07.11.2023 18:07, schrieb Gregory
Garretson:<br>
</div>
<blockquote type=3D"cite">
=20
Hi Jack,
<div><br>
</div>
<div>Thanks, but I=E2=80=99m afraid it doesn=E2=80=99t seem to. I=E2=
=80=99ve installed
both the JRE and the JDK, but jEdit still tells me to install
Java 11 or later, even though I get this:</div>
<div><br>
</div>
<div><div style=3D"margin:0px;font-style:normal;font-variant-caps:nor=
mal;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo=
;font-kerning:auto;font-variant-alternates:normal;font-variant-ligatures:no=
rmal;font-variant-numeric:normal;font-variant-east-asian:normal;font-featur=
e-settings:normal"><span style=3D"font-variant-ligatures:no-common-ligature=
s">java
--version</span></div><div style=3D"margin:0px;font-style:norma=
l;font-variant-caps:normal;font-stretch:normal;font-size:11px;line-height:n=
ormal;font-family:Menlo;font-kerning:auto;font-variant-alternates:normal;fo=
nt-variant-ligatures:normal;font-variant-numeric:normal;font-variant-east-a=
sian:normal;font-feature-settings:normal"><span style=3D"font-variant-ligat=
ures:no-common-ligatures">java
21.0.1 2023-10-17 LTS</span></div><div style=3D"margin:0px;font=
-style:normal;font-variant-caps:normal;font-stretch:normal;font-size:11px;l=
ine-height:normal;font-family:Menlo;font-kerning:auto;font-variant-alternat=
es:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-va=
riant-east-asian:normal;font-feature-settings:normal"><span style=3D"font-v=
ariant-ligatures:no-common-ligatures">Java(TM)
SE Runtime Environment (build 21.0.1+12-LTS-29)</span></div><di=
v style=3D"margin:0px;font-style:normal;font-variant-caps:normal;font-stret=
ch:normal;font-size:11px;line-height:normal;font-family:Menlo;font-kerning:=
auto;font-variant-alternates:normal;font-variant-ligatures:normal;font-vari=
ant-numeric:normal;font-variant-east-asian:normal;font-feature-settings:nor=
mal"><span style=3D"font-variant-ligatures:no-common-ligatures">Java
HotSpot(TM) 64-Bit Server VM (build 21.0.1+12-LTS-29, mixed
mode, sharing)</span></div>
</div>
<div><span style=3D"font-variant-ligatures:no-common-ligatures"><br>
</span></div>
<div><span style=3D"font-variant-ligatures:no-common-ligatures">Any
more thoughts?</span></div>
<div><span style=3D"font-variant-ligatures:no-common-ligatures"><br>
</span></div>
<div><span style=3D"font-variant-ligatures:no-common-ligatures">Thank=
s,</span></div>
<div>Gregory</div>
<div><span style=3D"font-variant-ligatures:no-common-ligatures"><br>
</span></div>
<div><br>
<blockquote type=3D"cite">
<div>On Nov 7, 2023, at 4:56 PM, Jack W.
<a href=3D"mailto:[email protected]" target=3D"_blank"><so=
[email protected]></a> wrote:</div>
<br>
<div>
<div dir=3D"ltr">
<div dir=3D"ltr">Does this help? <a href=3D"https://docs.orac=
le.com/en/java/javase/11/install/installation-jdk-macos.html" target=3D"_bl=
ank">https://docs.oracle.com/en/java/javase/11/install/installation-jdk-mac=
os.html</a></div>
<br>
<div class=3D"gmail_quote">
<div dir=3D"ltr" class=3D"gmail_attr">On Tue, Nov 7, 2023 a=
t
9:35=E2=80=AFAM Gregory Garretson <<a href=3D"mailto:s=
[email protected]" target=3D"_blank">[email protected]</a>&g=
t;
wrote:<br>
</div>
<blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0=
px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Now I hav=
e a
MacBook with an M3 Apple Silicon processor. <br>
<br>
My problem is that while jEdit 5.6 successfully
installs on the machine, it doesn=E2=80=99t detect Java. =
It
looks for Java 11,</blockquote>
</div>
<br>
<span class=3D"gmail_signature_prefix">-- </span><br>
<div dir=3D"ltr" class=3D"gmail_signature">
<div dir=3D"ltr">
<div>
<div dir=3D"ltr">
<div>
<div dir=3D"ltr">
<div>
<div dir=3D"ltr">
<div>
<div dir=3D"ltr">
<div>
<div dir=3D"ltr">
<div style=3D"text-align:left">
<div dir=3D"ltr">
<div>
<div dir=3D"ltr">
<div>
<div dir=3D"ltr"><span styl=
e=3D"font-family:monospace">Jack
Woehr=C2=A0=C2=A0=C2=A0=
=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0
# If it doesn't wor=
k
in Firefox,<br>
Box 82, Beulah CO
81023=C2=A0 # it's
broken.<br>
<a href=3D"http://www.s=
oftwoehr.com/" target=3D"_blank">http://www.softwoehr.com</a>
# Just Say No to
Chrome.</span><br>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</blockquote>
</div>
<br>
<br>
<fieldset></fieldset>
<br>
<br>
<fieldset></fieldset>
<br>
</blockquote>
<br>
</div>
</div></blockquote></div><br></div></div></blockquote></div>
</div></blockquote></div><br></div>-- <br>
-----------------------------------------------<br>
jEdit Users' List<br>
<a href=3D"mailto:[email protected]" target=3D"_blank">jEdi=
[email protected]</a><br>
<a href=3D"https://lists.sourceforge.net/lists/listinfo/jedit-users" rel=3D=
"noreferrer" target=3D"_blank">https://lists.sourceforge.net/lists/listinfo=
/jedit-users</a><br>
</blockquote></div>
--000000000000dff615060a5b1748--
--===============7140906344152028327==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
--===============7140906344152028327==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
--
-----------------------------------------------
jEdit Users' List
[email protected]
https://lists.sourceforge.net/lists/listinfo/jedit-users
--===============7140906344152028327==--