* (no subject)
@ 2010-05-07 19:28 Sven Schäfer
2010-05-07 20:58 ` console info objc
0 siblings, 1 reply; 22+ messages in thread
From: Sven Schäfer @ 2010-05-07 19:28 UTC (permalink / raw)
To: guile-user
[-- Attachment #1: Type: text/plain, Size: 376 bytes --]
Hello,
Im new in this list and I use Guile for the first time.
I start Guile in a program written in C.
Is it possible to disable the output guile> at the standard output?
That means, when I start Guile there is no guile> in the command line but
I can give instructions to the interpreter.
I hope somebody can help me with this problem.
[-- Attachment #2: Type: text/html, Size: 2589 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* console info
2010-05-07 19:28 (no subject) Sven Schäfer
@ 2010-05-07 20:58 ` objc
2010-05-08 6:28 ` AW: " Sven Schäfer
0 siblings, 1 reply; 22+ messages in thread
From: objc @ 2010-05-07 20:58 UTC (permalink / raw)
To: Sven Schäfer, guile-user
[-- Attachment #1: Type: text/plain, Size: 1044 bytes --]
Hi Sven,
I'm messing around with MS Windows right now...
One interesting way is
"How to spawn console processes with redirected standard handles"
sample code at :
http://support.microsoft.com/kb/190351
and it is quite a general solution for many applications (such as using guile with windows).
related :
Having a console with windows is easy to do, and VERY useful for writing debug info using a simple printf(). (compile with a -mconsole flag).
You could hack around your guile source of course ;O).
Hope this helps,
obj.
From: Sven Schäfer
Sent: Friday, May 07, 2010 8:28 PM
To: guile-user@gnu.org
Subject: (no subject)
Hello,
I'm new in this list and I use Guile for the first time.
I start Guile in a program written in C.
Is it possible to disable the output "guile>" at the standard output?
That means, when I start Guile there is no "guile>" in the command line but I can give instructions to the interpreter.
I hope somebody can help me with this problem.
[-- Attachment #2: Type: text/html, Size: 5006 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* AW: console info
2010-05-07 20:58 ` console info objc
@ 2010-05-08 6:28 ` Sven Schäfer
2010-05-08 10:03 ` Orm Finnendahl
2010-05-08 15:14 ` AW: " Thien-Thi Nguyen
0 siblings, 2 replies; 22+ messages in thread
From: Sven Schäfer @ 2010-05-08 6:28 UTC (permalink / raw)
To: 'objc', guile-user
[-- Attachment #1: Type: text/plain, Size: 2007 bytes --]
Hi obj.
I forgot to write that I will use Guile on a linux system.
Only the output guile> should be disable. All other outputs from Guile
should go to the stdout.
A short overview:
I will write the output from Guile in variables. A second program
communicates with the Guile-program over netcat. This program sends
instructions to the Guile program. Then the Guile program returns some data
(for example an integer). When I now write the output in the second program
into a variable, I write also the guile> into it. Because of this I will
only disable the output of guile>.
I hope I write this a little bit understandable. :-)
Sven
_____
Von: objc [mailto:objcjohn@hotmail.com]
Gesendet: Freitag, 7. Mai 2010 22:58
An: Sven Schäfer; guile-user@gnu.org
Betreff: console info
Hi Sven,
I'm messing around with MS Windows right now...
One interesting way is
"How to spawn console processes with redirected standard handles"
sample code at :
http://support.microsoft.com/kb/190351
and it is quite a general solution for many applications (such as using
guile with windows).
related :
Having a console with windows is easy to do, and VERY useful for writing
debug info using a simple printf(). (compile with a -mconsole flag).
You could hack around your guile source of course ;O).
Hope this helps,
obj.
From: Sven <mailto:sven-schaefer-ww@web.de> Schäfer
Sent: Friday, May 07, 2010 8:28 PM
To: guile-user@gnu.org
Subject: (no subject)
Hello,
Im new in this list and I use Guile for the first time.
I start Guile in a program written in C.
Is it possible to disable the output guile> at the standard output?
That means, when I start Guile there is no guile> in the command line but
I can give instructions to the interpreter.
I hope somebody can help me with this problem.
[-- Attachment #2: Type: text/html, Size: 13099 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: console info
2010-05-08 6:28 ` AW: " Sven Schäfer
@ 2010-05-08 10:03 ` Orm Finnendahl
2010-05-08 15:14 ` AW: " Thien-Thi Nguyen
1 sibling, 0 replies; 22+ messages in thread
From: Orm Finnendahl @ 2010-05-08 10:03 UTC (permalink / raw)
To: Sven Schäfer; +Cc: guile-user
Hi Sven,
I don't know whether there is a way to change the prompt to disappear
completely without changing the sources (as this is generally not the
intended behaviour) but as a workaround you could pipe the guile
output through sed to remove the prompt. Try this command in a
terminal:
guile | sed -e 's/^guile>//g'
That should do what you want. You can do that programmatically as well
or invoke this as a script from within your program.
In general your approach seems strange to me. Without exactly knowing
how to do it I'd suggest you look for a way to approach guile's read
routine directly and handle the results internally rather than dealing
with netcat and stdout.
--
Orm
Am Saturday, den 08. May 2010 um 08:28:38 Uhr (+0200) schrieb Sven Schäfer:
>
>
> Hi obj.
>
>
>
> I forgot to write that I will use Guile on a linux system.
>
> Only the output “guile>” should be disable. All other outputs from Guile
> should go to the stdout.
>
>
>
> A short overview:
>
> I will write the output from Guile in variables. A second program
> communicates with the “Guile”-program over netcat. This program sends
> instructions to the Guile program. Then the Guile program returns some
> data (for example an integer). When I now write the output in the second
> program into a variable, I write also the “guile>” into it. Because of
> this I will only disable the output of “guile>”.
>
>
>
> I hope I write this a little bit understandable. J
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: AW: console info
2010-05-08 6:28 ` AW: " Sven Schäfer
2010-05-08 10:03 ` Orm Finnendahl
@ 2010-05-08 15:14 ` Thien-Thi Nguyen
2010-05-21 11:01 ` Andy Wingo
1 sibling, 1 reply; 22+ messages in thread
From: Thien-Thi Nguyen @ 2010-05-08 15:14 UTC (permalink / raw)
To: guile-user
() Sven Schäfer <sven-schaefer-ww@web.de>
() Sat, 8 May 2010 08:28:38 +0200
Because of this I will only disable the output of "guile>".
On guile init, you can set the repl prompt using
‘set-repl-prompt!’. For example, in an interactive
session:
$ guile
guile> 1
1
guile> (set-repl-prompt! "")
2
2
Here, the first 1 and the first 2 are the input, everything else
is output.
Caveat: The above is tested w/ Guile 1.4.x, perhaps the interface
has changed w/ other Guile versions.
thi
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2010-03-05 21:11 kamal lamta
2010-03-07 22:29 ` Neil Jerram
0 siblings, 1 reply; 22+ messages in thread
From: kamal lamta @ 2010-03-05 21:11 UTC (permalink / raw)
To: guile-user
I have a project which main purpose is to edit the cursor so that the
program can write from right to left (arabic language)
I downloaded the software from the website and the source for windows
version wintexmacs-1.0.5-src.exe .I use microsoft visual studio 2008
after i tried to convert the existing project have been built with
4200 errors and thasn't work,then i saw that there is some
requirements to install the guile library
please i would be very thankful if you send me a detailed information
on how to builth the program.
any information that can help me in my project please .
thanks -----sorry for my bad english---
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: (no subject)
2010-03-05 21:11 (no subject) kamal lamta
@ 2010-03-07 22:29 ` Neil Jerram
[not found] ` <d8b4d5651003081312t25eb980dw4de7d7c100c8b8d@mail.gmail.com>
0 siblings, 1 reply; 22+ messages in thread
From: Neil Jerram @ 2010-03-07 22:29 UTC (permalink / raw)
To: kamal lamta; +Cc: guile-user
kamal lamta <lamtabbet@gmail.com> writes:
> I have a project which main purpose is to edit the cursor so that the
> program can write from right to left (arabic language)
>
> I downloaded the software from the website and the source for windows
> version wintexmacs-1.0.5-src.exe .I use microsoft visual studio 2008
> after i tried to convert the existing project have been built with
> 4200 errors and thasn't work,then i saw that there is some
> requirements to install the guile library
> please i would be very thankful if you send me a detailed information
> on how to builth the program.
>
> any information that can help me in my project please .
Hi Kamal,
I think you need to contact the TeXmacs people for this enquiry. Please
refer to the contact suggestions at
http://www.texmacs.org/tmweb/contact/contact.en.html.
Regards,
Neil
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2005-05-19 12:51 capital consultant
0 siblings, 0 replies; 22+ messages in thread
From: capital consultant @ 2005-05-19 12:51 UTC (permalink / raw)
Dear Mr/Mrs,
Allow me to introduce myself Cornell Weber.Congratulations! We WILL be taking in your mortga ge application.
Our company confirms you are legible for a $250.000 loan for a $380.00/month.
Approval process will take 1 minute, so please fill out the form on our website:
http://www.assetsguide.com/application/
Thank you.
Best Regards,
Cornell Weber;
Accounts Director
Trades/Fin ance Department
South Office
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2005-05-10 12:04 zshxzjgf
0 siblings, 0 replies; 22+ messages in thread
From: zshxzjgf @ 2005-05-10 12:04 UTC (permalink / raw)
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2005-01-07 4:00 lpabfjwrbhwf
0 siblings, 0 replies; 22+ messages in thread
From: lpabfjwrbhwf @ 2005-01-07 4:00 UTC (permalink / raw)
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2004-12-28 18:38 ihliklm
0 siblings, 0 replies; 22+ messages in thread
From: ihliklm @ 2004-12-28 18:38 UTC (permalink / raw)
>From <ihliklm@emo.com> Tue, 28 Dec 2004 12:17:04 -0600
Received: from risqya.gmail.com
by preview.cliftonlabs.com with smtp (Exim 4.30 #1 (Debian))
Received: by 41.06.30.25 with HTTP; Tue, 28 Dec 2004 12:19:04 -0600
Message-ID: <7225c25961302713207a27c7b5@mail.gmail.com>
Date: Tue, 28 Dec 2004 17:22:04 -0100
From: "Brendan Rivers" <ihliklm@emo.com>
To: coreutils-announce@gnu.org
Cc: cvs-hackers@gnu.org, cvs-utils@gnu.org, cvs-utils-request@gnu.org, free-books@gnu.org, guido@gnu.org, guile-devel@gnu.org, guile-user@gnu.org, gurhan@gnu.org, gvc@gnu.org, help-bison@gnu.org, help-cfengine@gnu.org, help-cgicc@gnu.org
Subject: Best M/E/D/S, Enormous Selection, fast shipping worldwide
MIME-Version: 1.0
Content-Type: text/html; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
<p align="center">Do you need V/I/A/G/R/A, V/A/L./I/U/M, X/A/N/A/X, C/I/A/L/I/S?</FONT> GET THOSE AND MUCH MUCH MORE HERE No need to wait any longer! It is your unique chance to save on M/E/D/S up to 90%! Confidentiality Guaranteed, Super Fast Ordering. <a href="http://UAG157.inanemcn.info/?BTDZDJCumFIPA55FHQ295">It is not just about saving. It is about boosting your health.
</a> FAST SHIPPING 10-14 business days world wide or faster. You will get your order on time Guaranteed! We carry just about any M/E/D/S you could possibly need so don't miss your chance.</p>
<p align="center"><a href="http://UXI057.hljmjnja.info/<POZ769>?fxNDNngE0jSZeLfZGM976|coreutils-announce@gnu.org">REMOVE YOURSELF </a></p>
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2004-12-05 20:09 dbvkyzijj
0 siblings, 0 replies; 22+ messages in thread
From: dbvkyzijj @ 2004-12-05 20:09 UTC (permalink / raw)
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2004-11-23 14:26 Joanna Young
0 siblings, 0 replies; 22+ messages in thread
From: Joanna Young @ 2004-11-23 14:26 UTC (permalink / raw)
[-- Attachment #1.1: hater cain frankfurter --]
[-- Type: text/html, Size: 3062 bytes --]
[-- Attachment #2: Type: text/plain, Size: 140 bytes --]
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2004-10-14 2:16 Brent Owen
0 siblings, 0 replies; 22+ messages in thread
From: Brent Owen @ 2004-10-14 2:16 UTC (permalink / raw)
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1: Type: text/plain; charset="iso-7298-1", Size: 369 bytes --]
Hello again,
My name is Brent Owen. I wite you because we are accepting your mortgage application.
Our office confirms you can get a $250.000 loÀn for a $295.00 per month payment.
Approval process will take approx 1 minute, so please fill out the form on our website :
http://carne.cash-home.net
Thank you
Regards Brent Owen
First Account Manager
[-- Attachment #2: Type: text/plain, Size: 140 bytes --]
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2004-05-29 6:27 深圳群力科技有限公司
0 siblings, 0 replies; 22+ messages in thread
From: 深圳群力科技有限公司 @ 2004-05-29 6:27 UTC (permalink / raw)
超低价**签约包月**专业上门维修电脑
(1)个人电脑组装及硬件销售与维修
(2)安装各种操作系统
(3)排除各种常见的故障
(4)提供和安装各种实用工具软件
(5)局域网、广域网共享
(6)网络系统布线设计及应用
(7)计算机病毒防治及防火墙设置
****电脑维护、电脑组装、网络工程****
*热烈欢迎单位或个人签约包月*
**热诚的服务,全心全意全为了您**
深圳群力科技有限公司
联系人:张锋
联系电话:13714661862或0755-83601633
QQ:282079259
E-mail:168it@126.com
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2004-05-23 14:43 Diann
0 siblings, 0 replies; 22+ messages in thread
From: Diann @ 2004-05-23 14:43 UTC (permalink / raw)
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2004-05-10 2:18 guile-sources-owner
0 siblings, 0 replies; 22+ messages in thread
From: guile-sources-owner @ 2004-05-10 2:18 UTC (permalink / raw)
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2004-05-03 7:43 Augusta Mcdowell
0 siblings, 0 replies; 22+ messages in thread
From: Augusta Mcdowell @ 2004-05-03 7:43 UTC (permalink / raw)
[-- Attachment #1.1: prexy bostonian william --]
[-- Type: text/html, Size: 3162 bytes --]
[-- Attachment #2: Type: text/plain, Size: 139 bytes --]
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2004-01-27 3:50 Lula
0 siblings, 0 replies; 22+ messages in thread
From: Lula @ 2004-01-27 3:50 UTC (permalink / raw)
[-- Attachment #1.1: Type: text/plain, Size: 195 bytes --]
lolly apocalypse waitress septa
devotee danube avesta bengal edmonds altar capricorn symbiotic
bourn sarsparilla substantive habitation intimal occurrent observatory otherwise surfeit dunkirk
[-- Attachment #1.2: Type: text/html, Size: 2597 bytes --]
[-- Attachment #2: Type: text/plain, Size: 139 bytes --]
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 22+ messages in thread
* (no subject)
@ 2003-12-31 20:55 rufnuap
0 siblings, 0 replies; 22+ messages in thread
From: rufnuap @ 2003-12-31 20:55 UTC (permalink / raw)
_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2010-05-21 11:01 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-07 19:28 (no subject) Sven Schäfer
2010-05-07 20:58 ` console info objc
2010-05-08 6:28 ` AW: " Sven Schäfer
2010-05-08 10:03 ` Orm Finnendahl
2010-05-08 15:14 ` AW: " Thien-Thi Nguyen
2010-05-21 11:01 ` Andy Wingo
-- strict thread matches above, loose matches on Subject: below --
2010-03-05 21:11 (no subject) kamal lamta
2010-03-07 22:29 ` Neil Jerram
[not found] ` <d8b4d5651003081312t25eb980dw4de7d7c100c8b8d@mail.gmail.com>
[not found] ` <87mxyiz9vv.fsf@ossau.uklinux.net>
2010-03-09 15:51 ` kamal lamta
2005-05-19 12:51 capital consultant
2005-05-10 12:04 zshxzjgf
2005-01-07 4:00 lpabfjwrbhwf
2004-12-28 18:38 ihliklm
2004-12-05 20:09 dbvkyzijj
2004-11-23 14:26 Joanna Young
2004-10-14 2:16 Brent Owen
2004-05-29 6:27 深圳群力科技有限公司
2004-05-23 14:43 Diann
2004-05-10 2:18 guile-sources-owner
2004-05-03 7:43 Augusta Mcdowell
2004-01-27 3:50 Lula
2003-12-31 20:55 rufnuap
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).