From ac6ea598302cd33014880a7a5f43d42a7e5d1f01 Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sat, 9 Dec 2017 22:03:31 +0100 Subject: [PATCH] * lisp/emacs-lisp/advice.el: Stop using old-style backquotes --- lisp/emacs-lisp/advice.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/emacs-lisp/advice.el b/lisp/emacs-lisp/advice.el index 82867667756..d5da30fb18c 100644 --- a/lisp/emacs-lisp/advice.el +++ b/lisp/emacs-lisp/advice.el @@ -1514,7 +1514,7 @@ ;; `ad-return-value' in a piece of after advice. For example: ;; ;; (defmacro foom (x) -;; (` (list (, x)))) +;; `(list ,x)) ;; foom ;; ;; (foom '(a)) @@ -1547,8 +1547,8 @@ ;; (defadvice foom (after fg-print-x act) ;; "Print the value of X." ;; (setq ad-return-value -;; (` (progn (print (, x)) -;; (, ad-return-value))))) +;; `(progn (print ,x) +;; ,ad-return-value))) ;; foom ;; ;; (macroexpand '(foom '(a))) -- 2.11.4.GIT