[2018-01-28 21:29:50:025] [DEBUG] Backtrace:
9 (apply-smob/1 #<catch-closure 1edd500>)
8 (apply-smob/1 #<catch-closure 1ee5ec0>)
In ice-9/boot-9.scm:
2316:4 7 (save-module-excursion #<procedure 1ee4c80 at ice-9/eva…>)
In ice-9/eval-string.scm:
38:6 6 (read-and-eval #<input: string 2182690> #:lang _)
In ice-9/eval.scm:
196:43 5 (_ #f)
196:35 4 (_ #f)
223:20 3 (proc #<directory (guile-user) 1e040a0>)
In unknown file:
2 (%resolve-variable (7 . #{0,200000}#) #<directory (guil…>)
In ice-9/boot-9.scm:
759:25 1 (dispatch-exception 0 unbound-variable (#f "Unbound …" …))
In unknown file:
0 (apply-smob/1 #<catch-closure 1ee5e80> unbound-variable …)
ERROR: In procedure apply-smob/1:
ERROR: Unbound variable: #{0,200000}#
ABORT: unbound-variable
--
You received this message because you are subscribed to the Google Groups "opencog" group.
To unsubscribe from this group and stop receiving emails from it, send an email to opencog+unsubscribe@googlegroups.com.
To post to this group, send email to ope...@googlegroups.com.
Visit this group at https://groups.google.com/group/opencog.
To view this discussion on the web visit https://groups.google.com/d/msgid/opencog/eed44fab-2935-41f6-9c4b-1196735274ba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/opencog/CAHrUA34czy40A2%3D9KQ5OJN%2Bsq9chmi2VV2f6SfFhORg9_u2%3DBw%40mail.gmail.com.
#include <stdio.h>
#include <iostream>
int main()
{
float x = 0.2f;
float y = 0.3f;
char buff[500];
snprintf(buff, 500, ("%f, %f"), x, y);
std::cout << buff << std::endl;
return 0;
}But for example, the following will succeed if called from c++ of directly in guile:(nlp-parse "test")while this fails(nlp-parse "Test")
To view this discussion on the web visit https://groups.google.com/d/msgid/opencog/CADMmUX9ki3M_ckjoHTgFcSuK2TQ-e0utzeefgRmOWUQ0BKs5bg%40mail.gmail.com.
when i add setlocale(LC_ALL, ""); to my little test, i also get comma formatting