mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-10 15:19:09 +02:00
Closes: https://bugs.gentoo.org/814455 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Akinori Hattori <hattya@gentoo.org>
14 lines
422 B
Diff
14 lines
422 B
Diff
--- a/lisp/namazu.el
|
|
+++ b/lisp/namazu.el
|
|
@@ -99,9 +99,9 @@
|
|
(defmacro defgroup (&rest args)
|
|
nil)
|
|
(defmacro defcustom (var value doc &rest args)
|
|
- (` (defvar (, var) (, value) (, doc))))
|
|
+ `(defvar (, var) (, value) (, doc)))
|
|
(defmacro defface (var value doc &rest args)
|
|
- (` (make-face (, var))))
|
|
+ `(make-face (, var)))
|
|
(defmacro define-widget (&rest args)
|
|
nil)))
|
|
|