随笔分类 - lisp
摘要:dyld: Library not loaded: /usr/local/opt/readline/lib/libreadline.7.dylib Table of Contents 1. 启动时报错 1.1. Clisp 1.1.1. dyld: Library not loaded: /usr/
阅读全文
摘要:(setq max-specpdl-size 5) ; default is 1000, reduce the backtrace level (setq debug-on-error t) ; now you should get a backtrace 除添加以上设置外,如果是在调整el 文件时
阅读全文
摘要:(setq max-lisp-eval-depth 10000)
阅读全文
摘要:在Lisp中,如果我们希望对一个变量赋值,可以使用set函数,用法如下: (set ‘my-value "my string") 上面的代码是对变量my-value进行赋值,值是"my String"。注意其中的'my-value前面是有一个单引号的。 我们知道,在Lisp中,'my-value其实
阅读全文