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.
我在哪里可以找到 Emacs Lisp 语法的正式规范(在 EBNF 或其他一些标准符号中——“读取”函数的源代码不计算在内!)?
我什至会对 .y 文件感到满意;不幸的是,emacs 自己的解析器不使用 yacc。
我认为它与任何 lisp 语言相同,不是吗?这是 Wikipedia 中 Lisp 页面中描述 Lisp 的内容:
expression -> atom | list atom -> number | name | string | operator list -> '(' expression* ')'