Karl Lehenbauer

Results 17 issues of Karl Lehenbauer

Hi Martin, If one of the optional packages put in the packages directory installs a startup script into /usr/local/etc/rc.d then it doesn't get run at mfsbsd boot time because rcorder...

If I run, like, "tclsh latlons.tcl", it works, but if I start Tcl interactively and do a "source latlons.tcl", I get some MD5 signatures output to the terminal and a...

An idea for your consideration... Instead of hinting the compiler with comments how about if the same hinting is formally available through tsp::proc itself? If compilation fails tsp::proc can still...

TSP_Util_string_compare_const was forward-declared in TSP_util.c. A trivial reordering declares the function before its first call. clang on FreeBSD was warning about forward definitions for srand48 and drand48 and this fixes...

- Update tclparser TEA tclconfig/\* files from 3.2 to 3.9. - make tclparser "make distclean" also delete the autom4te.cache directory. - regenerate configure script - create a .gitignore to tell...

I presume the code below coredumps because tsp upvar accepts but doesn't support #0. Would this be hard to add? We call the routine below a lot and avoid running...

Currently tsp cannot compile something like ``` tcl set bool [info exists flightplan(orig)] ``` It apparently does support ``` tcl set want "orig" set bool [info exists "flightplan($want)"] ``` ...but...

At the bottom of https://github.com/tpoindex/tsp/blob/master/docs/runtime.md, this section reads "TSP compiled procs are not thread safe, so use of Tcl thread package must be avoided when invoking TSP compiled procs." Since...

Emit the calibration as a series of commands like "cal lms" and "cal dc rx" and whatnot.

Issue: Enhancement
Component: Host

All the field names get created as static Tcl_Objs, plus an array of pointers to all the field names plus a default empty string object and a null value object....