diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-09-21 07:58:41 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-09-21 07:59:16 -0700 |
commit | 818fc6e128491de6bc5d630f6c9c8adf969e3ea8 (patch) | |
tree | 3c8b6bb8d47b1c5d0ea3307d3e460d0f0cf52597 /lisp/replace.el | |
parent | cf91ea794be50c2d3c572726b1d4e53ab92da506 (diff) | |
download | emacs-818fc6e128491de6bc5d630f6c9c8adf969e3ea8.tar.gz emacs-818fc6e128491de6bc5d630f6c9c8adf969e3ea8.tar.bz2 emacs-818fc6e128491de6bc5d630f6c9c8adf969e3ea8.zip |
Clarify or replace a few \u escapes.
* doc/lispref/nonascii.texi (Character Properties)
More-detailed commentary for \u escapes.
* lisp/progmodes/python.el (python--prettify-symbols-alist):
* lisp/replace.el (query-replace-from-to-separator):
* lisp/textmodes/rst.el (rst-bullets, rst-re-alist-def)
(rst-mode-syntax-table):
* lisp/whitespace.el (whitespace-display-mappings):
Prefer actual character to \u escape when this makes the code
easier to follow in the usual case where Unicode chars can be
displayed.
Diffstat (limited to 'lisp/replace.el')
-rw-r--r-- | lisp/replace.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/replace.el b/lisp/replace.el index 37e97e2c215..3a908ac4d8d 100644 --- a/lisp/replace.el +++ b/lisp/replace.el @@ -76,7 +76,7 @@ to the minibuffer that reads the string to replace, or invoke replacements from Isearch by using a key sequence like `C-s C-s M-%'." "24.3") (defcustom query-replace-from-to-separator - (propertize (if (char-displayable-p ?\u2192) " \u2192 " " -> ") + (propertize (if (char-displayable-p ?→) " → " " -> ") 'face 'minibuffer-prompt) "String that separates FROM and TO in the history of replacement pairs." ;; Avoids error when attempt to autoload char-displayable-p fails |