diff options
| author | Paul Eggert | 2015-09-10 10:10:54 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-10 10:12:37 -0700 |
| commit | cdb0ae37ab925b79b379fdfa780f57dad8607a3c (patch) | |
| tree | 421038c6f8882548ba26074de94b425d9cd95ee5 | |
| parent | a1cd8c96cad685912749efb395593524b199c536 (diff) | |
| download | emacs-cdb0ae37ab925b79b379fdfa780f57dad8607a3c.tar.gz emacs-cdb0ae37ab925b79b379fdfa780f57dad8607a3c.zip | |
Revert some stray curved quotes I missed earlier
Problem reported by David Kastrup in:
http://lists.gnu.org/archive/html/emacs-devel/2015-09/msg00440.html
* lisp/international/mule-cmds.el (leim-list-header):
Use format-message with an ASCII-only format.
| -rw-r--r-- | lisp/cedet/mode-local.el | 6 | ||||
| -rw-r--r-- | lisp/emacs-lisp/advice.el | 3 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 6 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cconv.el | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/eieio-core.el | 2 | ||||
| -rw-r--r-- | lisp/international/mule-cmds.el | 6 | ||||
| -rw-r--r-- | lisp/progmodes/elisp-mode.el | 4 | ||||
| -rw-r--r-- | lisp/progmodes/verilog-mode.el | 12 |
9 files changed, 22 insertions, 21 deletions
diff --git a/lisp/cedet/mode-local.el b/lisp/cedet/mode-local.el index 64c1f08af22..edf7647712f 100644 --- a/lisp/cedet/mode-local.el +++ b/lisp/cedet/mode-local.el | |||
| @@ -677,7 +677,7 @@ SYMBOL is a function that can be overridden." | |||
| 677 | result)) | 677 | result)) |
| 678 | 678 | ||
| 679 | (defun xref-mode-local-overload (symbol) | 679 | (defun xref-mode-local-overload (symbol) |
| 680 | "For ‘elisp-xref-find-def-functions’; add overloads for SYMBOL." | 680 | "For `elisp-xref-find-def-functions'; add overloads for SYMBOL." |
| 681 | ;; Current buffer is the buffer where xref-find-definitions was invoked. | 681 | ;; Current buffer is the buffer where xref-find-definitions was invoked. |
| 682 | (when (get symbol 'mode-local-overload) | 682 | (when (get symbol 'mode-local-overload) |
| 683 | (let* ((symbol-file (find-lisp-object-file-name symbol (symbol-function symbol))) | 683 | (let* ((symbol-file (find-lisp-object-file-name symbol (symbol-function symbol))) |
| @@ -738,11 +738,11 @@ SYMBOL is a function that can be overridden." | |||
| 738 | 738 | ||
| 739 | (defconst xref-mode-local-find-overloadable-regexp | 739 | (defconst xref-mode-local-find-overloadable-regexp |
| 740 | "(\\(\\(define-overloadable-function\\)\\|\\(define-overload\\)\\) +%s" | 740 | "(\\(\\(define-overloadable-function\\)\\|\\(define-overload\\)\\) +%s" |
| 741 | "Regexp used by ‘xref-find-definitions’ when searching for a | 741 | "Regexp used by `xref-find-definitions' when searching for a |
| 742 | mode-local overloadable function definition.") | 742 | mode-local overloadable function definition.") |
| 743 | 743 | ||
| 744 | (defun xref-mode-local-find-override (meta-name) | 744 | (defun xref-mode-local-find-override (meta-name) |
| 745 | "Function used by ‘xref-find-definitions’ when searching for an | 745 | "Function used by `xref-find-definitions' when searching for an |
| 746 | override of a mode-local overloadable function. | 746 | override of a mode-local overloadable function. |
| 747 | META-NAME is a cons (OVERLOADABLE-SYMBOL . MAJOR-MODE)." | 747 | META-NAME is a cons (OVERLOADABLE-SYMBOL . MAJOR-MODE)." |
| 748 | (let* ((override (car meta-name)) | 748 | (let* ((override (car meta-name)) |
diff --git a/lisp/emacs-lisp/advice.el b/lisp/emacs-lisp/advice.el index 62330fca71b..35cbcc27ba1 100644 --- a/lisp/emacs-lisp/advice.el +++ b/lisp/emacs-lisp/advice.el | |||
| @@ -168,7 +168,8 @@ | |||
| 168 | ;; "Switch to non-existing buffers only upon confirmation." | 168 | ;; "Switch to non-existing buffers only upon confirmation." |
| 169 | ;; (interactive "BSwitch to buffer: ") | 169 | ;; (interactive "BSwitch to buffer: ") |
| 170 | ;; (if (or (get-buffer (ad-get-arg 0)) | 170 | ;; (if (or (get-buffer (ad-get-arg 0)) |
| 171 | ;; (y-or-n-p (format "‘%s’ does not exist, create? " (ad-get-arg 0)))) | 171 | ;; (y-or-n-p (format-message "`%s' does not exist, create? " |
| 172 | ;; (ad-get-arg 0)))) | ||
| 172 | ;; ad-do-it)) | 173 | ;; ad-do-it)) |
| 173 | ;; | 174 | ;; |
| 174 | ;;(defadvice find-file (before existing-files-only activate) | 175 | ;;(defadvice find-file (before existing-files-only activate) |
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 279ffa37b7e..8b47bbfb03d 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -1814,7 +1814,7 @@ The value is non-nil if there were no errors, nil if errors." | |||
| 1814 | ;; compile this file. | 1814 | ;; compile this file. |
| 1815 | (if (with-current-buffer input-buffer no-byte-compile) | 1815 | (if (with-current-buffer input-buffer no-byte-compile) |
| 1816 | (progn | 1816 | (progn |
| 1817 | ;; (message "%s not compiled because of ‘no-byte-compile: %s’" | 1817 | ;; (message "%s not compiled because of `no-byte-compile: %s'" |
| 1818 | ;; (byte-compile-abbreviate-file filename) | 1818 | ;; (byte-compile-abbreviate-file filename) |
| 1819 | ;; (with-current-buffer input-buffer no-byte-compile)) | 1819 | ;; (with-current-buffer input-buffer no-byte-compile)) |
| 1820 | (when (file-exists-p target-file) | 1820 | (when (file-exists-p target-file) |
| @@ -4196,7 +4196,7 @@ binding slots have been popped." | |||
| 4196 | ;; (consp (get condition | 4196 | ;; (consp (get condition |
| 4197 | ;; 'error-conditions))))) | 4197 | ;; 'error-conditions))))) |
| 4198 | ;; (byte-compile-warn | 4198 | ;; (byte-compile-warn |
| 4199 | ;; "‘%s’ is not a known condition name | 4199 | ;; "`%s' is not a known condition name |
| 4200 | ;; (in condition-case)" | 4200 | ;; (in condition-case)" |
| 4201 | ;; condition)) | 4201 | ;; condition)) |
| 4202 | ) | 4202 | ) |
| @@ -4235,7 +4235,7 @@ binding slots have been popped." | |||
| 4235 | ;; for the argument to `signal', not to `condition-case'. | 4235 | ;; for the argument to `signal', not to `condition-case'. |
| 4236 | ;;(unless (consp (get c 'error-conditions)) | 4236 | ;;(unless (consp (get c 'error-conditions)) |
| 4237 | ;; (byte-compile-warn | 4237 | ;; (byte-compile-warn |
| 4238 | ;; "‘%s’ is not a known condition name (in condition-case)" | 4238 | ;; "`%s' is not a known condition name (in condition-case)" |
| 4239 | ;; c)) | 4239 | ;; c)) |
| 4240 | ) | 4240 | ) |
| 4241 | (byte-compile-push-constant condition)) | 4241 | (byte-compile-push-constant condition)) |
diff --git a/lisp/emacs-lisp/cconv.el b/lisp/emacs-lisp/cconv.el index 205ae6d711e..0f75f0a1664 100644 --- a/lisp/emacs-lisp/cconv.el +++ b/lisp/emacs-lisp/cconv.el | |||
| @@ -679,7 +679,7 @@ and updates the data stored in ENV." | |||
| 679 | 679 | ||
| 680 | ;; ((and `(quote ,v . ,_) (guard (assq v env))) | 680 | ;; ((and `(quote ,v . ,_) (guard (assq v env))) |
| 681 | ;; (byte-compile-log-warning | 681 | ;; (byte-compile-log-warning |
| 682 | ;; (format-message "Possible confusion variable/symbol for ‘%S’" v))) | 682 | ;; (format-message "Possible confusion variable/symbol for `%S'" v))) |
| 683 | 683 | ||
| 684 | (`(quote . ,_) nil) ; quote form | 684 | (`(quote . ,_) nil) ; quote form |
| 685 | (`(function . ,_) nil) ; same as quote | 685 | (`(function . ,_) nil) ; same as quote |
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el index 4a9e16ae88e..bf1a21acaf1 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el | |||
| @@ -1663,7 +1663,7 @@ function,command,variable,option or symbol." ms1)))))) | |||
| 1663 | ;; (concat "\\<" (regexp-quote (car fp)) "\\>") | 1663 | ;; (concat "\\<" (regexp-quote (car fp)) "\\>") |
| 1664 | ;; newname)) | 1664 | ;; newname)) |
| 1665 | ;; (checkdoc-create-error | 1665 | ;; (checkdoc-create-error |
| 1666 | ;; "Flag variable names should normally end in ‘-flag’" s | 1666 | ;; "Flag variable names should normally end in `-flag'" s |
| 1667 | ;; (marker-position e))))) | 1667 | ;; (marker-position e))))) |
| 1668 | ;; Done with variables | 1668 | ;; Done with variables |
| 1669 | )) | 1669 | )) |
diff --git a/lisp/emacs-lisp/eieio-core.el b/lisp/emacs-lisp/eieio-core.el index a2f5f8af8ea..29c4467b304 100644 --- a/lisp/emacs-lisp/eieio-core.el +++ b/lisp/emacs-lisp/eieio-core.el | |||
| @@ -850,7 +850,7 @@ Fills in the default value in CLASS' in SLOT with VALUE." | |||
| 850 | ;; gnus/registry.el, so it might be used elsewhere as well, so let's | 850 | ;; gnus/registry.el, so it might be used elsewhere as well, so let's |
| 851 | ;; keep it for now. | 851 | ;; keep it for now. |
| 852 | ;; FIXME: Generate a compile-time warning for it! | 852 | ;; FIXME: Generate a compile-time warning for it! |
| 853 | ;; (error "Can't ‘oset-default’ an instance-allocated slot: %S of %S" | 853 | ;; (error "Can't `oset-default' an instance-allocated slot: %S of %S" |
| 854 | ;; slot class) | 854 | ;; slot class) |
| 855 | (eieio--validate-slot-value class c value slot) | 855 | (eieio--validate-slot-value class c value slot) |
| 856 | ;; Set this into the storage for defaults. | 856 | ;; Set this into the storage for defaults. |
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index 4fd4b906b05..0c4c99c1d07 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el | |||
| @@ -1272,7 +1272,7 @@ This file contains a list of libraries of Emacs input methods (LEIM) | |||
| 1272 | in the format of Lisp expression for registering each input method. | 1272 | in the format of Lisp expression for registering each input method. |
| 1273 | Emacs loads this file at startup time.") | 1273 | Emacs loads this file at startup time.") |
| 1274 | 1274 | ||
| 1275 | (defconst leim-list-header (format | 1275 | (defconst leim-list-header (format-message |
| 1276 | ";;; %s -- list of LEIM (Library of Emacs Input Method) -*-coding: utf-8;-*- | 1276 | ";;; %s -- list of LEIM (Library of Emacs Input Method) -*-coding: utf-8;-*- |
| 1277 | ;; | 1277 | ;; |
| 1278 | ;; This file is automatically generated. | 1278 | ;; This file is automatically generated. |
| @@ -1286,9 +1286,9 @@ Emacs loads this file at startup time.") | |||
| 1286 | ;; INPUT-METHOD LANGUAGE-NAME ACTIVATE-FUNC | 1286 | ;; INPUT-METHOD LANGUAGE-NAME ACTIVATE-FUNC |
| 1287 | ;; TITLE DESCRIPTION | 1287 | ;; TITLE DESCRIPTION |
| 1288 | ;; ARG ...) | 1288 | ;; ARG ...) |
| 1289 | ;; See the function ‘register-input-method’ for the meanings of the arguments. | 1289 | ;; See the function `register-input-method' for the meanings of the arguments. |
| 1290 | ;; | 1290 | ;; |
| 1291 | ;; If this directory is included in ‘load-path’, Emacs automatically | 1291 | ;; If this directory is included in `load-path', Emacs automatically |
| 1292 | ;; loads this file at startup time. | 1292 | ;; loads this file at startup time. |
| 1293 | 1293 | ||
| 1294 | " | 1294 | " |
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index 1cf52c04341..8afae150a1d 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el | |||
| @@ -632,11 +632,11 @@ otherwise build the summary from TYPE and SYMBOL." | |||
| 632 | (xref-make-elisp-location symbol type file))) | 632 | (xref-make-elisp-location symbol type file))) |
| 633 | 633 | ||
| 634 | (defvar elisp-xref-find-def-functions nil | 634 | (defvar elisp-xref-find-def-functions nil |
| 635 | "List of functions to be run from ‘elisp--xref-find-definitions’ to add additional xrefs. | 635 | "List of functions to be run from `elisp--xref-find-definitions' to add additional xrefs. |
| 636 | Called with one arg; the symbol whose definition is desired. | 636 | Called with one arg; the symbol whose definition is desired. |
| 637 | Each function should return a list of xrefs, or nil; the first | 637 | Each function should return a list of xrefs, or nil; the first |
| 638 | non-nil result supercedes the xrefs produced by | 638 | non-nil result supercedes the xrefs produced by |
| 639 | ‘elisp--xref-find-definitions’.") | 639 | `elisp--xref-find-definitions'.") |
| 640 | 640 | ||
| 641 | ;; FIXME: name should be singular; match xref-find-definition | 641 | ;; FIXME: name should be singular; match xref-find-definition |
| 642 | (defun elisp--xref-find-definitions (symbol) | 642 | (defun elisp--xref-find-definitions (symbol) |
diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el index f83c676396d..5fcdba6fb27 100644 --- a/lisp/progmodes/verilog-mode.el +++ b/lisp/progmodes/verilog-mode.el | |||
| @@ -8666,7 +8666,7 @@ Return an array of [outputs inouts inputs wire reg assign const]." | |||
| 8666 | 8666 | ||
| 8667 | (defun verilog-read-sub-decls-expr (submoddecls comment port expr) | 8667 | (defun verilog-read-sub-decls-expr (submoddecls comment port expr) |
| 8668 | "For `verilog-read-sub-decls-line', parse a subexpression and add signals." | 8668 | "For `verilog-read-sub-decls-line', parse a subexpression and add signals." |
| 8669 | ;;(message "vrsde: ‘%s’" expr) | 8669 | ;;(message "vrsde: `%s'" expr) |
| 8670 | ;; Replace special /*[....]*/ comments inserted by verilog-auto-inst-port | 8670 | ;; Replace special /*[....]*/ comments inserted by verilog-auto-inst-port |
| 8671 | (setq expr (verilog-string-replace-matches "/\\*\\(\\[[^*]+\\]\\)\\*/" "\\1" nil nil expr)) | 8671 | (setq expr (verilog-string-replace-matches "/\\*\\(\\[[^*]+\\]\\)\\*/" "\\1" nil nil expr)) |
| 8672 | ;; Remove front operators | 8672 | ;; Remove front operators |
| @@ -8685,25 +8685,25 @@ Return an array of [outputs inouts inputs wire reg assign const]." | |||
| 8685 | (let (sig vec multidim) | 8685 | (let (sig vec multidim) |
| 8686 | ;; Remove leading reduction operators, etc | 8686 | ;; Remove leading reduction operators, etc |
| 8687 | (setq expr (verilog-string-replace-matches "^\\s-*[---+~!|&]+\\s-*" "" nil nil expr)) | 8687 | (setq expr (verilog-string-replace-matches "^\\s-*[---+~!|&]+\\s-*" "" nil nil expr)) |
| 8688 | ;;(message "vrsde-ptop: ‘%s’" expr) | 8688 | ;;(message "vrsde-ptop: `%s'" expr) |
| 8689 | (cond ; Find \signal. Final space is part of escaped signal name | 8689 | (cond ; Find \signal. Final space is part of escaped signal name |
| 8690 | ((string-match "^\\s-*\\(\\\\[^ \t\n\f]+\\s-\\)" expr) | 8690 | ((string-match "^\\s-*\\(\\\\[^ \t\n\f]+\\s-\\)" expr) |
| 8691 | ;;(message "vrsde-s: ‘%s’" (match-string 1 expr)) | 8691 | ;;(message "vrsde-s: `%s'" (match-string 1 expr)) |
| 8692 | (setq sig (match-string 1 expr) | 8692 | (setq sig (match-string 1 expr) |
| 8693 | expr (substring expr (match-end 0)))) | 8693 | expr (substring expr (match-end 0)))) |
| 8694 | ;; Find signal | 8694 | ;; Find signal |
| 8695 | ((string-match "^\\s-*\\([a-zA-Z_][a-zA-Z_0-9]*\\)" expr) | 8695 | ((string-match "^\\s-*\\([a-zA-Z_][a-zA-Z_0-9]*\\)" expr) |
| 8696 | ;;(message "vrsde-s: ‘%s’" (match-string 1 expr)) | 8696 | ;;(message "vrsde-s: `%s'" (match-string 1 expr)) |
| 8697 | (setq sig (verilog-string-remove-spaces (match-string 1 expr)) | 8697 | (setq sig (verilog-string-remove-spaces (match-string 1 expr)) |
| 8698 | expr (substring expr (match-end 0))))) | 8698 | expr (substring expr (match-end 0))))) |
| 8699 | ;; Find [vector] or [multi][multi][multi][vector] | 8699 | ;; Find [vector] or [multi][multi][multi][vector] |
| 8700 | (while (string-match "^\\s-*\\(\\[[^]]+\\]\\)" expr) | 8700 | (while (string-match "^\\s-*\\(\\[[^]]+\\]\\)" expr) |
| 8701 | ;;(message "vrsde-v: ‘%s’" (match-string 1 expr)) | 8701 | ;;(message "vrsde-v: `%s'" (match-string 1 expr)) |
| 8702 | (when vec (setq multidim (cons vec multidim))) | 8702 | (when vec (setq multidim (cons vec multidim))) |
| 8703 | (setq vec (match-string 1 expr) | 8703 | (setq vec (match-string 1 expr) |
| 8704 | expr (substring expr (match-end 0)))) | 8704 | expr (substring expr (match-end 0)))) |
| 8705 | ;; If found signal, and nothing unrecognized, add the signal | 8705 | ;; If found signal, and nothing unrecognized, add the signal |
| 8706 | ;;(message "vrsde-rem: ‘%s’" expr) | 8706 | ;;(message "vrsde-rem: `%s'" expr) |
| 8707 | (when (and sig (string-match "^\\s-*$" expr)) | 8707 | (when (and sig (string-match "^\\s-*$" expr)) |
| 8708 | (verilog-read-sub-decls-sig submoddecls comment port sig vec multidim)))))) | 8708 | (verilog-read-sub-decls-sig submoddecls comment port sig vec multidim)))))) |
| 8709 | 8709 | ||