Difficulty integrating with Swift/Objective-C

2021-09-04 Thread paul
line 585 of weak-set.c. 4. I've also sometimes seen this one, https://lists.gnu.org/archive/html/emacs-bug-tracker/2020-01/msg00365.html, although perhaps that's indeed related to closed stdout. Because these errors are different all the time i guess it's some race condition or threading issue? I wonder if someone knows an avenue i can attempt to use to debug what's going on? 🙏 All the best, paul 1. https://mail.gnu.org/archive/html/bug-guile/2021-03/msg00012.html

Re: Difficulty integrating with Swift/Objective-C

2021-09-05 Thread paul
Hey Taylan, Thank you for your reply! On 2021-09-05 at 18:26 AEST, quoth Taylan Kammer : To narrow down the issue, I'd attempt a few things, in order: 1. Compile only the C code, adding a main() function, just to make sure the OS and the chosen Guile version and such are working fine with

Re: Difficulty integrating with Swift/Objective-C

2021-09-06 Thread paul
Hello again list, Taylan, On 2021-09-05 at 18:26 AEST, quoth Taylan Kammer : To narrow down the issue, I'd attempt a few things, in order: 1. Compile only the C code, adding a main() function, just to make sure the OS and the chosen Guile version and such are working fine with each oth

Re: Difficulty integrating with Swift/Objective-C

2021-09-06 Thread paul
Hey Chris, On 2021-09-05 at 20:56 AEST, quoth Chris Vine : You appear to want to run scheme code as an extension language, via the guile VM, in a program written for MacOS in the Swift language. This is exactly right. I know nothing about the Swift language and whether it has a sufficient

Re: Difficulty integrating with Swift/Objective-C

2021-09-08 Thread paul
I wanted to follow up about another thing: On 2021-09-05 at 16:03 AEST, quoth paul : I had some difficulty getting my app to compile against Guile, but i eventually managed to link against a version of Guile installed with Homebrew (guile: stable 3.0.7 (bottled)), however when trying to boot

Trouble creating SRFI-9 Record in C

2021-09-10 Thread paul
Good day guile-users, I am having a struggle with SRFI-9 records. They look very convenient, so i'd like to use them in my Guile scripts. However, i'm not sure how to correctly construct them from C-land. I have something like the following: ``` (define-record-type (make-foo a b) foo?

Re: Trouble creating SRFI-9 Record in C

2021-09-11 Thread paul
Hey Matt, Yeah that was exactly my workaround 🙂 I was wondering whether i could use the syntax transformer more "directly" from C, or something like that. Thanks, paul > On 11 Sep 2021, at 23:31, Matt Wette wrote: > > maybe add > > (define (make-foo-x a b) (make

Thanks all!

2021-09-18 Thread paul
Hey guile-users, I have just made a release of my app [1] which integrates a Guile runtime -- since i received invaluable pointers from this mailing list, i thought folks might be curious as to what i was building. The app is called Spotiqueue, and it's a macOS-native client for listening to

Re: Ideas for making Guile easier to approach

2022-02-09 Thread paul
7;t think to mention my confusion because.. well, i'm just the peanut gallery. But i won't miss the opportunity to say "i agree"! :) All the best to everyone reading, paul

Re: Lilypond speed (was Re: How to make GNU Guile more successful)

2017-03-09 Thread Paul
f architectures with different byte orders and type sizes, it seems tricky to get this under wraps. The next largest performance impact will be redecoding issues. -Paul

Re: Lilypond speed (was Re: How to make GNU Guile more successful)

2017-03-10 Thread Paul
tion? (I'm an occasional LilyPond contributor who learned Scheme from hacking with/on LilyPond, and I'd love to see LilyPond working well with Guile2. Ultimately, it seems like that would be in the best interests of both projects, especially in the long run.) Cheers, -Paul

Re: ?-suffix for booleans... good-idea? or bad-idea?

2017-04-25 Thread Paul
tes. I often use 'is-' prefix for boolean values, which reads well: (if is-raining ...) -Paul

Weather Problems

2005-05-18 Thread Paul
Rain. Snow. Freezing temps. Fog. High winds. Bad weather can wreak havoc on our classes, programs, games, practices, and events. How will you get the word out about last minute schedule changes and cancellations? We have a simple, affordable, and extremely fast way to share your urgent ann

Re: Starting a GNU Guile awesome list

2020-11-08 Thread Paul Smith
On Sun, 2020-11-08 at 18:09 +0100, Zelphir Kaltstahl wrote: > I was hoping for a solution, which could use Elisp in one part of the > makefile and bash in another part of the makefile. I apologize that I wasn't following the previous messages in this thread so I don't have the full context. Howev

Guile + SWIG

2021-04-05 Thread Paul Emsley
5 (enhanced-ligand-coot-p))) (newline) So, inner_main() knows that enhanced-ligand-coot-p is available, but the scheme script does not. I don't know how to resolve this. How do I get a list of the available functions? Thanks in advance for your help. Paul.

Guile + SWIG

2021-04-05 Thread Paul Emsley
ist 55 (enhanced-ligand-coot-p))) (newline) So, inner_main() knows that enhanced-ligand-coot-p is available, but the scheme script does not. I don't know how to resolve this. How do I get a list of the available functions? Thanks in advance for your help. Paul.

Re: Guile + SWIG

2021-04-05 Thread Paul Emsley
If that is the case, then can I not compile my .scm files? How to do that? Or can I somehow say "don't worry that it's not there now, when the application runs, it will be there"? Thanks, Paul. p.s. It's quite likely that Coot was used in the analysis of spike protein

Re: Guile + SWIG

2021-04-08 Thread Paul Emsley
"Return", so when it didn't, I thought that there was something wrong)). So guile 2.2 is in the bag - and I'm pleased about that. Soon I will be looking at converting guile-gtk scripts to guile-gnome. Regards, Paul. On Mon, 2021-04-05 at 16:51 -0700, Matt Wette wrote: >

G-Golf - Getting started

2021-04-12 Thread Paul Emsley
ong? Thanks, Paul. ;; Load Gtk (use-modules (g-golf)) (gi-import "Gtk") ;; When the application is launched.. (define (activate app) ;; - Create a new window and a new button (let ((window (make #:title "Hello" #:application app)

Re: Curiosity: Microkernel implemented in Guile ?

2022-06-23 Thread Paul Emsley
t;top" for the Hurd (it didn't have one) using Guile (1.3 maybe?) and libps. It may be possible to find it with some searching (not tried). Paul.

Re: defining macros within eval

2022-10-19 Thread Paul Jarc
Maxime Devos wrote: > For an example in the wild, see > e.g. > . Thanks (to Jean as well) for all the suggestions. Can you point me to an example of where include/sexp is used? To take a step back, my ultimate goal

Help installing guile-ncurses

2023-02-05 Thread paul wisehart
rrors with: mkdir: /usr/local/share/guile/site/3.0/ncurses: Permission denied See in my configure I set the prefix ? This worked for json, which installed into $HOME/guile/... (And i've used it succesfully in guile code) Any ideas ? Happy to give more info or try things and report back. Thanks! -- Paul

Re: Help installing guile-ncurses

2023-02-05 Thread paul wisehart
UILE_LOAD_PATH=/home/wise/guile/share/guile/site/3.0 But I'll know to try GUILE_SYSTEM_EXTENSIONS_PATH if the code doesn't load. Thanks! -- Paul

custom module loading and compilation

2024-05-11 Thread Paul Jarc
Hi. I'm writing a custom module system that avoids the standard search path and list-of-symbols naming scheme. Instead of using use-modules and define-module, I have a roughly similar procedure, let's call it my-load, that creates a module with make-module and loads a file into it with primitive-

Re: custom module loading and compilation

2024-05-23 Thread Paul Jarc
I wrote: > This works when I run Guile with --no-auto-compile, but with > compilation enabled, I get: > ;;; Unbound variable: my-load > How can I make the binding visible to the compiler? In case anyone else runs into this: I solved it by wrapping the definition of my-load in (eval-when (expand ev

Re: Guile-Emacs update

2013-07-31 Thread Paul Smith
On Wed, 2013-07-31 at 20:54 +0200, joa...@verona.se wrote: > #make takes a loong time, much more than a normal emacs > ./autogen.sh && ./configure && make I'm not familiar with building Emacs, but doesn't its build system support parallel compilation (couldn't you run "make -j4" or whatever's appr

Re: simple example to evaluate strings

2013-12-21 Thread Paul Emsley
On 21/12/13 03:57, Josh Stratton wrote: I'm completely new to guile and am trying to find a simple example of evaluating a string inside C with some kind of context. I want to execute small self-contained strings provided by a user. I've looked at various examples, but everything I've seen se

Re: How to get the preferred environment variable path separator?

2016-03-28 Thread Paul Smith
On Mon, 2016-03-28 at 10:24 -0400, Thompson, David wrote: > The environment variable path separator is *not* defined depending on > the OS. It is up to the programs that interpret these search paths > to specify what the separator should be. ":" is the most common > separator, but that is just c

Modifying nested dictionary/alist type data

2016-04-15 Thread Paul Morris
(aaa . ((bbb . ((ccc . 10))) and you want to change ccc, then the “set!” trick doesn’t help. (...what would you “set!”?) So what’s the best approach here for such nested data structures? Maybe I should just use nested hash maps instead? Sorry if I’m missing something obvious. Thanks, -Paul

Re: Modifying nested dictionary/alist type data

2016-04-16 Thread Paul Morris
#x27;s any general guidance on how big a given hash table should be for it to make sense to use a hash table, in terms of performance/space tradeoffs? Also good to know about the boxes from SRFI-111. They might come in handy, especially when rewriting C++ code in Scheme. -Paul

Re: getting started writing desktop applications

2016-07-17 Thread Paul Emsley
On 17/07/2016 17:38, Christopher M. Hobbs wrote: Is there a recommended library for building desktop applications? Maybe some GTK (or maybe Tk, as old as it is) tie-ins or something to that effect? There's guile-gnome: https://www.gnu.org/software/guile-gnome/ P.

Compiling guile-2.0.12

2016-08-11 Thread Paul Emsley
u agree? Paul.

Re: [PATCH] Improved string writing

2005-04-21 Thread Paul Jarc
(display "foo") can result in write(1, "foo", 3), and as long as that write is done before (display) returns, it's still just as immediate. paul ___ Guile-user mailing list Guile-user@gnu.org http://lists.gnu.org/mailman/listinfo/guile-user

Re: Guile 1.8.0 has been released.

2006-02-24 Thread Paul Emsley
[syntmp-syntax-object?-101 #(syntax-object dummy (# # # shift ...))] ?: 141 (and (vector? syntmp-x-1008) (= (vector-length syntmp-x-1008) 3) ...) ?: 142* (vector? syntmp-x-1008) : In expression (vector? syntmp-x-1008): : Stack overflow What did I do wrong? Your advice would be appreciated. Pa

Re: potential memory leak in do loop

2006-05-03 Thread Paul Emsley
I suspect you need valgrind. valgrind rocks. You will need the standard guile suppressions. Paul. On Wed, May 03, 2006 at 09:32:54AM -0400, stephane chatigny wrote: > Thanks Kevin, > > Does a Unix command like "pmap PID" could help me to determine if there > is a memo

compiling 1.8.0

2006-08-04 Thread Paul Emsley
hift .. .))] ?: 141 (and (vector? syntmp-x-1008) (= (vector-length syntmp-x-1008) 3) ...) ?: 142* (vector? syntmp-x-1008) : In expression (vector? syntmp-x-1008): : Stack overflow This happens on all the computers I've tried to compile

Re: compiling 1.8.0

2006-08-07 Thread Paul Emsley
On Sat, 2006-08-05 at 11:08 +0200, Claes Wallin wrote: > Paul Emsley wrote: > > Dear Guile users, > > > > I have a problem compiling/running 1.8.0: > > > > $ ./configure --prefix=$pfx > > $ make > > $ make install > > $ cd $pfx/bi

Re: [ANN] New greg versions

2006-11-09 Thread Paul Emsley
ction with the standard Guile `expect' > module, this lets you test external programs. OK, so how do we get GNU greg? What is the new version number? (I want just greg, not anything to do with gnustep, ATM) Cheers, Paul. ___ Guile-user ma

guile and XML (mixp)

2006-11-22 Thread Paul Emsley
syntax () $ guile --version Guile 1.6.7 using mixp-0.4 Cheers, Paul. ___ Guile-user mailing list Guile-user@gnu.org http://lists.gnu.org/mailman/listinfo/guile-user

scheme -> (X)HTML

2008-03-25 Thread Paul Emsley
Dear Guilers, I have in mind to write a little script that makes a web page about the state of various files. I'd like to use some schemey way of doing this. s-expression -> HTML perhaps. What is the thinking guile-user's way of approaching this? Cheers, Paul.

Re: scheme -> (X)HTML

2008-03-31 Thread Paul Emsley
Julian Graham wrote: On Tue, Mar 25, 2008 at 3:37 PM, Paul Emsley <[EMAIL PROTECTED]> wrote: Dear Guilers, I have in mind to write a little script that makes a web page about the state of various files. I'd like to use some schemey way of doing this. s-expression ->

Re: X11 bindings and shell bindings

2008-09-18 Thread Paul Emsley
-pipe cmd))) (let loop ((line (read-line in-port 'concat))) (or (eof-object? line) (begin (display line) (loop (read-line in-port 'concat))))) Paul.

more debugging info needed.

2009-02-01 Thread Paul Emsley
Hi Guilers, I'd like more more debugging info, I currently get something like: Exception: (wrong-type-arg #f Wrong type (expecting ~A): ~S (pair D) (D)) I have (turn-on-debugging) in my begin.grg file. I'd like to see the line number too. Is that possible? Thanks, Paul.

Re: more debugging info needed.

2009-02-01 Thread Paul Emsley
Neil Jerram wrote: Paul Emsley writes: Hi Guilers, I'd like more more debugging info, I currently get something like: Exception: (wrong-type-arg #f Wrong type (expecting ~A): ~S (pair D) (D)) I have (turn-on-debugging) in my begin.grg file. I'd like to see the line number too

Re: more debugging info needed.

2009-02-02 Thread Paul Emsley
Neil Jerram wrote: Paul Emsley writes: I did read the manual. Still I have the same problem, but now it seems clearer to me that I can't catch anything because Greg eats it first. Greg has the unfortunate characteristic of being ungooglable... so I can't immediately tell if it&#

Re: Greg testing framework

2009-02-03 Thread Paul Emsley
Ludovic Courtès wrote: Hi, Paul Emsley writes: However, Greg is great. This is Greg's Home: http://home.gna.org/greg/ I made some fixes that didn't make it into stable release, I get the fixed up Greg from here: http://www.ysbl.york.ac.uk/~emsley/software/extras/greg-2.0.0

guile-dbi for Oracle?

2009-02-03 Thread Paul Emsley
Hi (Linas), A user of my (guile-embedding) program has an Oracle database and asked me if it was possible to interact with it (the database) in interesting ways from my program (i.e. guile really). Is that possible or hopeless? Thanks, Paul.

Re: Valgrind warnings with -1.8.6

2009-04-08 Thread Paul Emsley
http://www.mail-archive.com/guile-de...@gnu.org/msg00743.html If it happens to work well, maybe we could ship it with the next 1.8 release. More suppressions: http://coot.googlecode.com/svn/trunk/guile.supp (I don't know if they are useful - and may be specific cases of above). Paul.

mod_lisp for apache?

2009-04-13 Thread Paul Emsley
to involved with apache if I could avoid it). Cheers, Paul. -

Re: mod_lisp for apache?

2009-04-13 Thread Paul Emsley
Paul Emsley wrote: Knowing next to nothing about it, I thought I'd try out using guile with apache/mod_lisp for educational purposes. I can't find documentation/tutorials for this - even the fractal concept page is broken/out of date - however I did find that you can get mod

Re: GNU Guile 1.9.0 released (alpha)

2009-06-22 Thread Paul Emsley
e new release. Regards, Paul.

guile and libtool

2009-08-01 Thread Paul Emsley
Would you accept a patch? Paul.

Re: calling scheme procedures by name from C

2009-08-02 Thread Paul Emsley
, arg3, arg4); The three definitions of proc lead to the following three error messages: ERROR: In procedure apply: ERROR: Wrong type argument in position 1: "d-UploadRoutine" It is indeed the wrong type of argument. Look at scm_c_define_gsubr() http://www.gnu.org/software/guile/manual/html_node/Primitive-Procedures.html Paul. and p.s. use the new style interface not the gh_* one. e.g. SCM arg1 = scm_makfrom0str("hello");

Re: strange behaviour of (floor .)

2009-12-28 Thread Paul Emsley
wing: (floor (* (- 12.340001 (floor 12.34)) 100)) (floor (* (- 12.33 (floor 12.34)) 100)) Given that floating point number storage is not precise, different values is entirely reasonable. You have to be a bit more sophisticated in your floor usage. Paul.

get procedure?

2010-02-17 Thread Paul Emsley
(func, arg_list, rest); // Now v should be a scheme int 3 Thanks, Paul.

Re: get procedure?

2010-02-17 Thread Paul Emsley
Paul Emsley wrote: I don't understand what xxx is. Can you help? (Bit of a noob question, I feel). SCM rest = SCM_EOL; SCM arg_list = SCM_EOL; arg_list = scm_cons(SCM_MAKINUM(4), arg_list); arg_list = scm_cons(SCM_MAKINUM(1), arg_list); SCM func = xxx("-&qu

Re: map, for-each

2010-08-26 Thread Paul Emsley
ch display 1 3) (for-each display '(1 3) '(1 3)) The function, in this case `display', needs to be able to take 2 args, for display it's the variable and the port: (for-each display '(1 3) (list (current-output-port) (current-output-port))) also consider (map + '(1 3) '(1 3)) Paul.

--with-libgmp-prefix

2011-06-28 Thread Paul Emsley
1 OpenSuse 11.3 64-bit Thoughts? Cheers, Paul.

Re: --with-libgmp-prefix

2011-06-28 Thread Paul Emsley
On 28/06/11 13:45, Paul Emsley wrote: Hi, I don't understand how the --with-libgmp-prefix is supposed to work. In fact, I'd go as far as saying that it's broken. ./configure --with-libgmp-prefix=/opt in configure additional_includedir and additional_libdir get set co

Adding guile as an optional package with autoconf

2011-09-16 Thread Paul Smith
grab ideas from. Thanks! -- --- Paul D. Smith Find some GNU make tips at: http://www.gnu.org http://make.mad-scientist.net "Please remain calm...I may be mad, but I am a profe

Using guile as an extension language for GNU make

2011-09-17 Thread Paul Smith
void set_up_guile () { /* Register a subr for GNU make's eval capability. */ scm_c_define_gsubr ("make-eval", 1, 0, 0, guile_eval_wrapper); scm_c_define_gsubr ("make-expan

Embedding vs. Extending (was: Re: Using guile as an extension language for GNU make)

2011-09-18 Thread Paul Smith
allow GNU make makefiles to take advantage of it. Guile seems like a natural choice for many reasons. -- --- Paul D. Smith Find some GNU make tips at: http://www.gnu.org http://make.mad-scientist.net "Please remain calm...I may be mad, but I am a professional." --Mad Scientist

Re: Using guile as an extension language for GNU make

2011-09-18 Thread Paul Smith
d be ... one, I guess :-). It's true that one of them (make-expand) is a superset of the other; with that single function you could do pretty much anything I can think of; I'm not sure there's any more powerful capability I can export. I'm not sure that's best though.

Re: Using guile as an extension language for GNU make

2011-09-18 Thread Paul Smith
ntire thing out, I suppose. Or I could ignore them as above and require the Guile scripting to convert the list into a string before returning it. -- --- Paul D. Smith Find some GNU make tips at: http://www.gnu

Re: Using guile as an extension language for GNU make

2011-09-19 Thread Paul Smith
rk as-is on systems where Guile is not available, I won't be rewriting core features in Guile. Yet?!?! :-). -- --- Paul D. Smith Find some GNU make tips at: http://www.gnu.org http://make.mad-scientist.net "Please remain calm...I may be mad, but I am a professional." --Mad Scientist

Re: Using guile as an extension language for GNU make

2011-09-19 Thread Paul Smith
On Mon, 2011-09-19 at 21:41 +0200, Hans Aberg wrote: > On 19 Sep 2011, at 17:14, Paul Smith wrote: > > > In make, everything is just words: broken up on whitespace. So for > > example, maybe someone writes a Guile function that computes a complex > > set of pr

Re: Using guile as an extension language for GNU make

2011-09-20 Thread Paul Smith
On Tue, 2011-09-20 at 18:17 +0200, Thien-Thi Nguyen wrote: > () Paul Smith > () Mon, 19 Sep 2011 11:14:34 -0400 > >In make, everything is just words: broken up on whitespace. So for >example, maybe someone writes a Guile function that computes a complex >set of p

Re: Using guile as an extension language for GNU make

2011-09-20 Thread Paul Smith
On Tue, 2011-09-20 at 13:31 -0400, Paul Smith wrote: > > In Scheme, w/ SRFI 13, you could express this as: > > > > This is not so tricky, i think. > > Heh, cute! Thinking about this more it occurs to me that I will likely need a module defined for any GNU make specif

Guile portability?

2011-09-22 Thread Paul Smith
I can't find any statements on the Guile pages about portability: what operating systems does it support, how well are they supported, etc.? Before I started using Guile I naively assumed it was basically just a parser and so it was almost trivially very portable. Now that I see all the advanced

Re: Problem to compile g-wrap

2011-10-12 Thread Paul Emsley
nd/or -Werror-implicit-function-declaration i.e. in g-wrap/Makefile CFLAGS = -g -O2 -Wall -Wmissing-prototypes -Werror -std=gnu99 -> CFLAGS = -g -O2 Paul.

execlp

2011-11-22 Thread Paul Emsley
s path ? I'm guessing that that should be "filename". While playing around, I notice that (execlp "ls") produces a core dump. My question is then, *is* there a way to determine if a string is executable? (And if so, how? :-) Thanks, Paul.

Re: execlp

2011-11-23 Thread Paul Emsley
-> "/bin/ls" (I'd settle for #t") (some-function "asdfasdf") -> #f I thought that execl or its friends would be the way to answer that question... Thanks, Paul. On 23/11/11 05:47, Nala Ginrut wrote: I think there's a bug. (execlp "ls" &q

Re: propagating a coding setting across source files

2011-12-02 Thread Paul Smith
n't think you want to do that. -- --- Paul D. Smith Find some GNU make tips at: http://www.gnu.org http://make.mad-scientist.net "Please remain calm...I may be mad, but I am a professional." --Mad Scientist

Guile support in GNU make

2012-01-14 Thread Paul Smith
Scheme-fu is fairly weak and my Guile-fu is even weaker. Any suggestions about improvements to any of the above items from more advanced users will be welcome--keeping in mind my comments of paragraph #2 above, please, thanks! -- --

Re: Guile support in GNU make

2012-01-15 Thread Paul Smith
more be convenient to store variable names in strings in Guile (it seems to me) so they can be more easily manipulated. Of course you can always use symbol->string etc. But is this worth it, to require the Guile user to always perform this operation when we could do it automatically? -- ---

Re: Guile support in GNU make

2012-01-15 Thread Paul Smith
always perform >this operation when we could do it automatically? > > ...support either string or symbol argument. The current implementation, > i.e., ‘(format #f "$(~A)" X)’ will DTRT. All it needs is documentation. Yes that's true. OK I'll update the documentat

Re: Guile support in GNU make

2012-01-16 Thread Paul Smith
On Sun, 2012-01-15 at 23:02 +0100, Ludovic Courts wrote: > And thanks for the great news! :-) I promoted the feature to GNU make CVS (I know, still CVS!!) on Savannah. I hope to generate a test dist file sometime this week. I'll email when it's available if people want to take a

Re: Guile support in GNU make

2012-01-17 Thread Paul Smith
On Tue, 2012-01-17 at 23:42 +0100, Ludovic Courts wrote: > It works as intended ;-) but hits a segfault fixed with this patch: Doh! I added a feature to make that allows you to define functions separately (previously all functions had to be predefined in the static table in functions.c) and moved

Re: Guile support in GNU make

2012-01-22 Thread Paul Smith
r Guile 2.0? Or, should I just forget about trying to work with Guile <2.0? Most systems I have access to still have Guile 1.8 though. -- --- Paul D. Smith Find some GNU make tips at: http://www.gnu.org http://make.mad-scientist.net "Please remain calm...I may be mad, but I am a professional." --Mad Scientist

Errors using Guile 2.0 vs. Guile 1.8

2012-01-29 Thread Paul Smith
t this means, or how to proceed with debugging. The same code works fine with Guile 1.8. Did I make a mistake with my build or install of Guile 2.0.3? Thoughts? -- --- Paul D. Smith Find some GNU make tips

Re: Guile support in GNU make

2012-01-29 Thread Paul Smith
vided with my GNU/Linux distribution). -- --- Paul D. Smith Find some GNU make tips at: http://www.gnu.org http://make.mad-scientist.net "Please remain calm...I may be mad, but I am a pr

Re: Errors using Guile 2.0 vs. Guile 1.8

2012-01-29 Thread Paul Smith
On Sun, 2012-01-29 at 22:18 +0100, Thien-Thi Nguyen wrote: > () Paul Smith > () Sun, 29 Jan 2012 10:54:18 -0500 > >$ cat g1.mk >define show >(define (show s) > (display s) > (newline)) >endef

Re: Errors using Guile 2.0 vs. Guile 1.8

2012-01-29 Thread Paul Smith
#x27;t understand the error resulting from this behavior there's obviously a problem... Is there any documentation for Guile embedders dealing with how to gracefully manage errors in Guile code? -- --- Paul D. Smith

Re: Errors using Guile 2.0 vs. Guile 1.8

2012-01-29 Thread Paul Smith
. OK, I made this change. Thanks! -- --- Paul D. Smith Find some GNU make tips at: http://www.gnu.org http://make.mad-scientist.net "Please remain calm...I may be mad, but I am a professional." --Mad Scientist

Re: Guile support in GNU make

2012-01-31 Thread Paul Smith
On Tue, 2012-01-31 at 23:17 +0400, Kirill Smelkov wrote: > from Debian testing, and I don't see the problem for test from the > make.info example - it works ok: > > define GUILEIO > (define (mkclose) > (close-port MKPORT) > #f) > > #f > endef > > Is

Re: Extending a GTK+ Application with Guile

2012-05-25 Thread Paul Emsley
hread - many using timeout functions. 2) Thinking of portability, is guile running on Windows (without cygwin), to justify the claim of 'ubiquitous'? My understanding is that it is possible, but non-trivial. We have not made a guile-enabled Coot on Windows (yet). HTH, Paul.

Writing a generic function for records?

2020-05-08 Thread Stephen Paul Weber
Is it possible (Guile 3.0) to write a generic function / method for record values? I see that a record has a GOOPS class <>, and that a record-type has the GOOPS class , but it seems that <> is not a subclass of ? I am playing with the ECMAscript implementation and would like to: (d

Re: Volunteers for video recording at FOSDEM

2016-01-18 Thread Paul van der Walt
Hey Ludo, I'll be there, so why not. I'm not a Super Pro™ but if there are instructions it cannot be that hard, right? ..right?? Ciao and see you people there, p. On 2016-01-18 at 10:15, quoth Ludovic Courtès: > Hello! > > FOSDEM provides equipment and instructions for video recording, but it’

Re: Volunteers for video recording at FOSDEM

2016-01-18 Thread Paul van der Walt
On 2016-01-18 at 14:49, quoth Ludovic Courtès: > It would be ideal if you could be there slightly before 10:30 so we can > see what it’s like. Of course. > Thank you! No problem! See yous soon in real life, p.