[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: master 353f5e7: * lisp/progmodes/verilog-mode.el: Use with-silent-mo
From: |
Katsumi Yamaoka |
Subject: |
Re: master 353f5e7: * lisp/progmodes/verilog-mode.el: Use with-silent-modifications |
Date: |
Mon, 16 Nov 2015 10:26:03 +0900 |
User-agent: |
Gnus/5.130012 (真 Gnus v0.12) Emacs/25.1.50 (i686-pc-cygwin) |
On Sun Nov 15 14:04:30 2015 -0500, Stefan Monnier wrote:
> * lisp/progmodes/verilog-mode.el: Use with-silent-modifications
> (verilog-save-buffer-state): Use with-silent-modifications when available.
When bootstrapping Emacs 25.1.50 I got:
In toplevel form:
progmodes/verilog-mode.el:3335:1:Error: Symbol's function definition is void:
\,@
Makefile:268: recipe for target 'progmodes/verilog-mode.elc' failed
Maybe the backquotes nesting in verilog-save-buffer-state is
unreasonable. I used the following makeshift to pass the build:
--- verilog-mode.el~ 2015-11-15 21:55:40.234433900 +0000
+++ verilog-mode.el 2015-11-16 00:55:57.518294500 +0000
@@ -3239,3 +3239,4 @@
,(if (fboundp 'with-silent-modifications)
- (with-silent-modifications ,@body)
+ (eval (cons 'with-silent-modifications
+ (mapcar (lambda (x) (list 'quote x)) body)))
;; From c-save-buffer-state
Regards,
- Re: master 353f5e7: * lisp/progmodes/verilog-mode.el: Use with-silent-modifications,
Katsumi Yamaoka <=