bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#21928: 25.0.50; verilog-mode.el fails to compile, Symbol’s function


From: Samer Masterson
Subject: bug#21928: 25.0.50; verilog-mode.el fails to compile, Symbol’s function definition is void: \,@
Date: Sun, 15 Nov 2015 19:32:11 -0800

Hi,

There's a compile error in verilog-mode.el. I believe it was introduced
by commit 353f5e76641c338dc4bfe0ac8e9aa84d23bac1fe.

Fixed with the following path. Not sure if it's correct, stefan can
probably tell tho.

----------------------------patch start
diff --git a/lisp/progmodes/verilog-mode.el
b/lisp/progmodes/verilog-mode.el
index fa93633..3081060 100644
--- a/lisp/progmodes/verilog-mode.el
+++ b/lisp/progmodes/verilog-mode.el
@@ -3237,7 +3237,7 @@ verilog-save-buffer-state
   `(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)
----------------------------patch end

Best,
Samer





reply via email to

[Prev in Thread] Current Thread [Next in Thread]