aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/executable.el
diff options
context:
space:
mode:
authorPaul Eggert2015-08-30 22:05:43 -0700
committerPaul Eggert2015-08-30 23:12:29 -0700
commit4c24b9e30fd47b537ad08dcf298b5b1a39f20e50 (patch)
treea6827c782793fcf7067fdd91ca5b7039af3a8a1a /lisp/progmodes/executable.el
parentf665b49fa3efa08a3a2d249b6a227bcb5d0d5e82 (diff)
downloademacs-4c24b9e30fd47b537ad08dcf298b5b1a39f20e50.tar.gz
emacs-4c24b9e30fd47b537ad08dcf298b5b1a39f20e50.zip
Quoting fixes in lisp/progmodes
* lisp/progmodes/cc-engine.el (c-bos-report-error): * lisp/progmodes/cpp.el (cpp-edit-reset): * lisp/progmodes/ebrowse.el (ebrowse-tags-apropos): * lisp/progmodes/etags.el (etags-tags-apropos-additional) (etags-tags-apropos, list-tags, tags-apropos): * lisp/progmodes/executable.el (executable-set-magic): * lisp/progmodes/octave.el (octave-sync-function-file-names) (octave-help, octave-find-definition-default-filename) (octave-find-definition): Respect text quoting style in doc strings and diagnostics. * lisp/progmodes/cc-langs.el (c-populate-syntax-table): * lisp/progmodes/verilog-mode.el (verilog-auto-reset-widths): * lisp/progmodes/vhdl-mode.el (vhdl-electric-quote): Escape apostrophes in doc strings. * lisp/progmodes/cmacexp.el (c-macro-expansion): Use straight quoting in ASCII comment. * lisp/progmodes/idlwave.el (idlwave-auto-fill-split-string) (idlwave-pad-keyword): * lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate) (vhdl-electric-open-bracket, vhdl-electric-close-bracket): (vhdl-electric-semicolon, vhdl-electric-comma) (vhdl-electric-period, vhdl-electric-equal): Use directed quotes in diagnostics and doc strings.
Diffstat (limited to 'lisp/progmodes/executable.el')
-rw-r--r--lisp/progmodes/executable.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/progmodes/executable.el b/lisp/progmodes/executable.el
index 50e4da93c73..b057fa68471 100644
--- a/lisp/progmodes/executable.el
+++ b/lisp/progmodes/executable.el
@@ -240,8 +240,9 @@ executable."
240 (save-window-excursion 240 (save-window-excursion
241 ;; Make buffer visible before question. 241 ;; Make buffer visible before question.
242 (switch-to-buffer (current-buffer)) 242 (switch-to-buffer (current-buffer))
243 (y-or-n-p (concat "Replace magic number by `" 243 (y-or-n-p (format-message
244 executable-prefix argument "'? ")))) 244 "Replace magic number by `%s%s'? "
245 executable-prefix argument))))
245 (progn 246 (progn
246 (replace-match argument t t nil 1) 247 (replace-match argument t t nil 1)
247 (message "Magic number changed to `%s'" 248 (message "Magic number changed to `%s'"