aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/backquote.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el
index f175eb8ccbf..f4db8bf1350 100644
--- a/lisp/emacs-lisp/backquote.el
+++ b/lisp/emacs-lisp/backquote.el
@@ -25,6 +25,10 @@
25 25
26;;; Commentary: 26;;; Commentary:
27 27
28;; When the Lisp reader sees `(...), it generates (\` (...)).
29;; When it sees ,... inside such a backquote form, it generates (\, ...).
30;; For ,@... it generates (\,@ ...).
31
28;; This backquote will generate calls to the backquote-list* form. 32;; This backquote will generate calls to the backquote-list* form.
29;; Both a function version and a macro version are included. 33;; Both a function version and a macro version are included.
30;; The macro version is used by default because it is faster 34;; The macro version is used by default because it is faster