Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正如它在锡上所说.,elisp 中的(句点)符号引用了什么?我在 Emacs 文档中找不到变量引用,而且谷歌(不出所料)没有帮助。
.
句点是cons运算符,而不是 lisp 意义上的符号。例如:
cons
(setq nums '(1 . 2))
这相当于:
(setq nums (cons 1 2))