aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/net/zone-mode.el2
-rw-r--r--lisp/progmodes/vhdl-mode.el6
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/net/zone-mode.el b/lisp/net/zone-mode.el
index c7999616375..0189b2d1eca 100644
--- a/lisp/net/zone-mode.el
+++ b/lisp/net/zone-mode.el
@@ -60,7 +60,7 @@
60 (old-serial (concat old-date old-seq)) 60 (old-serial (concat old-date old-seq))
61 (new-serial (concat cur-date new-seq))) 61 (new-serial (concat cur-date new-seq)))
62 (if (string-lessp new-serial old-serial) 62 (if (string-lessp new-serial old-serial)
63 (error (format "Serial numbers want to move backwards from %s to %s" old-serial new-serial)) 63 (error "Serial numbers want to move backwards from %s to %s" old-serial new-serial)
64 (replace-match (concat cur-date new-seq old-flag) t t)))))) 64 (replace-match (concat cur-date new-seq old-flag) t t))))))
65 65
66;;;###autoload 66;;;###autoload
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el
index 9885e9ae039..736400bcde2 100644
--- a/lisp/progmodes/vhdl-mode.el
+++ b/lisp/progmodes/vhdl-mode.el
@@ -2305,7 +2305,7 @@ old environment. Used for consistent searching."
2305 (progn 2305 (progn
2306 (when file-opened (kill-buffer (current-buffer))) 2306 (when file-opened (kill-buffer (current-buffer)))
2307 (set-buffer source-buffer) 2307 (set-buffer source-buffer)
2308 (error (format "ERROR: File cannot be opened: \"%s\"" ,file-name))) 2308 (error "ERROR: File cannot be opened: \"%s\"" ,file-name))
2309 (vhdl-warning (format "File cannot be opened: \"%s\"" ,file-name) t) 2309 (vhdl-warning (format "File cannot be opened: \"%s\"" ,file-name) t)
2310 nil)))) 2310 nil))))
2311 (condition-case info 2311 (condition-case info
@@ -15358,7 +15358,7 @@ component instantiation."
15358 (cons constant-name 15358 (cons constant-name
15359 (if (match-string 1) 15359 (if (match-string 1)
15360 (or (aget generic-alist (match-string 2) t) 15360 (or (aget generic-alist (match-string 2) t)
15361 (error (format "ERROR: Formal generic \"%s\" mismatch for instance \"%s\"" (match-string 2) inst-name))) 15361 (error "ERROR: Formal generic \"%s\" mismatch for instance \"%s\"" (match-string 2) inst-name))
15362 (cdar generic-alist)))) 15362 (cdar generic-alist))))
15363 (setq constant-alist (cons constant-entry constant-alist)) 15363 (setq constant-alist (cons constant-entry constant-alist))
15364 (setq constant-name (downcase constant-name)) 15364 (setq constant-name (downcase constant-name))
@@ -15378,7 +15378,7 @@ component instantiation."
15378 (setq signal-entry (cons signal-name 15378 (setq signal-entry (cons signal-name
15379 (if (match-string 1) 15379 (if (match-string 1)
15380 (or (aget port-alist (match-string 2) t) 15380 (or (aget port-alist (match-string 2) t)
15381 (error (format "ERROR: Formal port \"%s\" mismatch for instance \"%s\"" (match-string 2) inst-name))) 15381 (error "ERROR: Formal port \"%s\" mismatch for instance \"%s\"" (match-string 2) inst-name))
15382 (cdar port-alist)))) 15382 (cdar port-alist))))
15383 (setq signal-alist (cons signal-entry signal-alist)) 15383 (setq signal-alist (cons signal-entry signal-alist))
15384 (setq signal-name (downcase signal-name)) 15384 (setq signal-name (downcase signal-name))