From 7c8bc97263a1b6d009a11b32d6e62e82fe14e997 Mon Sep 17 00:00:00 2001 From: Michael Heerdegen Date: Mon, 6 Feb 2023 04:47:12 +0100 Subject: [PATCH] ; * lisp/emacs-lisp/backquote.el: Small fix in commentary --- lisp/emacs-lisp/backquote.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el index 84527234207..de14b5cd42f 100644 --- a/lisp/emacs-lisp/backquote.el +++ b/lisp/emacs-lisp/backquote.el @@ -25,9 +25,9 @@ ;;; Commentary: -;; When the Lisp reader sees `(...), it generates (\` (...)). -;; When it sees ,... inside such a backquote form, it generates (\, ...). -;; For ,@... it generates (\,@ ...). +;; When the Lisp reader sees `X it generates (\` X). +;; When it sees ,X it generates (\, X). For ,@X it generates +;; (\,@ X). ;; This backquote will generate calls to the backquote-list* form. ;; Both a function version and a macro version are included. -- 2.30.2