注释是被 emacs lisp 忽略的文本。

通常用于注释代码、文档或版权信息。

注释语法从一个分号开始到行尾。

没有其他语法。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
;; this is a comment

(+ 1 2) ; result is 3

;; by emacs convention,
;; comment on a line by itself
;; starts with 2 semicolons

;;; HEADER COMMENT
;; by emacs convention,
;; comment starting with 3
;; semicolons is a header, e.g. section title