From 937565268a5dc3377d4c9bff6d48eb3645a77160 Mon Sep 17 00:00:00 2001
From: Juanma Barranquero <lekktu@gmail.com>
Date: Mon, 16 Nov 2015 04:32:31 +0100
Subject: [PATCH] * lisp/progmodes/verilog-mode.el (verilog-save-buffer-state):
 Add backquote

---
 lisp/progmodes/verilog-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el
index fa93633db12..3081060f46a 100644
--- a/lisp/progmodes/verilog-mode.el
+++ b/lisp/progmodes/verilog-mode.el
@@ -3237,7 +3237,7 @@ user-visible changes to the buffer must not be within a
   `(let ((inhibit-point-motion-hooks t)
          (verilog-no-change-functions t))
      ,(if (fboundp 'with-silent-modifications)
-          (with-silent-modifications ,@body)
+          `(with-silent-modifications ,@body)
         ;; From c-save-buffer-state
         `(let* ((modified (buffer-modified-p))
                 (buffer-undo-list t)
-- 
2.39.5