What is the role of the @ character in Emacs Lisp?

前端 未结 2 1446
梦谈多话
梦谈多话 2021-01-19 03:51

As used for instance in this macro definition:

(defmacro with-eval-after-load-feature (feature &rest body)
  (declare (indent 1) (debug t))
  (let* ((fea         


        
2条回答
  •  轮回少年
    2021-01-19 04:22

    Asking Emacs is always a sensible approach:

    • C-hig (elisp) RET
    • I @ RET

    This shows you all the elisp manual's index entries for @ (one of which is the ,@ you were actually looking for).

提交回复
热议问题