diff options
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/compile.el | 2 | ||||
-rw-r--r-- | lisp/progmodes/idlwave.el | 2 | ||||
-rw-r--r-- | lisp/progmodes/verilog-mode.el | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 431b01b8ba9..6b521e8d90b 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -2260,7 +2260,7 @@ by replacing the first word, e.g., `compilation-scroll-output' from (if buffer-file-name (let (revert-buffer-function) (revert-buffer ignore-auto noconfirm)) - (if (or noconfirm (yes-or-no-p (format "Restart compilation? "))) + (if (or noconfirm (yes-or-no-p "Restart compilation? ")) (apply #'compilation-start compilation-arguments)))) (defvar compilation-current-error nil diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el index e95abd863e9..36f8a6d6b6e 100644 --- a/lisp/progmodes/idlwave.el +++ b/lisp/progmodes/idlwave.el @@ -7786,7 +7786,7 @@ force class query for object methods." (if (or (not this-buffer) (assoc default list)) (format-prompt "Module" default) - (format "Module in this file: ")) + "Module in this file: ") list)) type class) (if (string-match "\\`\\s-*\\'" name) diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el index ef2c21da456..75d2ea649d1 100644 --- a/lisp/progmodes/verilog-mode.el +++ b/lisp/progmodes/verilog-mode.el @@ -3563,7 +3563,7 @@ either is ok to parse as a non-comment, or `verilog-insert' was used." (defun verilog-scan-debug () "For debugging, show with display face results of `verilog-scan'." (font-lock-mode 0) - ;;(if dbg (setq dbg (concat dbg (format "verilog-scan-debug\n")))) + ;;(if dbg (setq dbg (concat dbg "verilog-scan-debug\n"))) (save-excursion (goto-char (point-min)) (remove-text-properties (point-min) (point-max) '(face nil)) |