]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment change.
authorRichard M. Stallman <rms@gnu.org>
Wed, 6 Nov 2002 05:07:33 +0000 (05:07 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 6 Nov 2002 05:07:33 +0000 (05:07 +0000)
lisp/emacs-lisp/backquote.el

index f175eb8ccbf14beac89c034f106f04c5cd59e395..f4db8bf1350a76585b3209b72cb53bef7446e0c1 100644 (file)
 
 ;;; Commentary:
 
+;; When the Lisp reader sees `(...), it generates (\` (...)).
+;; When it sees ,... inside such a backquote form, it generates (\, ...).
+;; For ,@... it generates (\,@ ...).
+
 ;; This backquote will generate calls to the backquote-list* form.
 ;; Both a function version and a macro version are included.
 ;; The macro version is used by default because it is faster