aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorPaul Eggert2015-09-21 07:58:41 -0700
committerPaul Eggert2015-09-21 07:59:16 -0700
commit818fc6e128491de6bc5d630f6c9c8adf969e3ea8 (patch)
tree3c8b6bb8d47b1c5d0ea3307d3e460d0f0cf52597 /doc
parentcf91ea794be50c2d3c572726b1d4e53ab92da506 (diff)
downloademacs-818fc6e128491de6bc5d630f6c9c8adf969e3ea8.tar.gz
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 'doc')
-rw-r--r--doc/lispref/nonascii.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi
index fb76de1ca09..3351b841f45 100644
--- a/doc/lispref/nonascii.texi
+++ b/doc/lispref/nonascii.texi
@@ -583,17 +583,17 @@ This function returns the value of @var{char}'s @var{propname} property.
583 @result{} Nd 583 @result{} Nd
584@end group 584@end group
585@group 585@group
586;; subscript 4 586;; U+2084 SUBSCRIPT FOUR
587(get-char-code-property ?\u2084 'digit-value) 587(get-char-code-property ?\u2084 'digit-value)
588 @result{} 4 588 @result{} 4
589@end group 589@end group
590@group 590@group
591;; one fifth 591;; U+2155 VULGAR FRACTION ONE FIFTH
592(get-char-code-property ?\u2155 'numeric-value) 592(get-char-code-property ?\u2155 'numeric-value)
593 @result{} 0.2 593 @result{} 0.2
594@end group 594@end group
595@group 595@group
596;; Roman IV 596;; U+2163 ROMAN NUMERAL FOUR
597(get-char-code-property ?\u2163 'numeric-value) 597(get-char-code-property ?\u2163 'numeric-value)
598 @result{} 4 598 @result{} 4
599@end group 599@end group