* lisp/emacs-lisp/advice.el: Stop using old-style backquotes
This commit is contained in:
parent
8b8197235f
commit
ac6ea59830
1 changed files with 3 additions and 3 deletions
|
@ -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)))
|
||||
|
|
Loading…
Add table
Reference in a new issue