lambdamoo
lambdamoo copied to clipboard
The LambdaMOO server (with Unicode support)
One of the possible verb preposition specifiers is “off/off of”. However, due to the way prepositional phrase parsing happens, it seems impossible that the phrase “off of” can ever match...
The following change to the `numbers.c` function `do_power()` is erroneous: ``` diff - ans.v.num = (b % 2 == 0 ? 1 : -1); + ans.v.num = (b & 1)...
The LambdaMOO Programmer’s Manual fails to document the ability to enumerate verb prepositional phrase arguments by passing a decimal string to `set_verb_args()` or `add_verb()`.
The `ctime()` built-in function allows a timezone to be passed as a second argument. Surprisingly, an argument of the form “:_path_” will read the file described by the given path...
The implementation of j(n, x) for n ≠ 0 and n ≠ 1 passes the arguments to jn() in the wrong order. The implementation of y(n, x) for n ≠...
The LambdaMOO Programmer’s Manual documents the fourth argument to `verb_code(object, verb-desc, fully-paren, indent)` as defaulting to false. However, this is incorrect; unless specified otherwise, verb code will be indented by...
I'm on Mac (Lion) and I get the following... http://www.flameeyes.eu/autotools-mythbuster/forwardporting/autoconf.html See 1.2. autoconf 2.68 ``` recursive-loop:codepoint.the-b.org 01oC$ aclocal configure.in:538: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body ../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is...
building on Ubuntu ``` make[2]: Entering directory `/home/.../codepoint.the-b.org/pcre' /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -O2 -g -MT pcre_compile.lo -MD -MP -MF .deps/pcre_compile.Tpo -c -o pcre_compile.lo pcre_compile.c ./libtool: line 861:...
Solution: I had a similar issue on OS X which I resolved using the the install_name switch instead of soname. http://stackoverflow.com/questions/4580789/cmake-mac-os-x-ld-unknown-option-soname
``` === configuring in pcre (/.../codepoint.the-b.org/pcre) configure: running /bin/sh ./configure.gnu --disable-option-checking '--prefix=/usr/local' --cache-file=/dev/null --srcdir=. ./configure.gnu: line 3: /.../codepoint.the-b.org/pcre/configure: No such file or directory ./configure.gnu: line 3: exec: /.../codepoint.the-b.org/pcre/configure: cannot execute:...