Fix non-ASCII characters in User and ELisp manuals.
doc/lispref/modes.texi (Operator Precedence Grammars): Don't use characters outside ISO-8859-1. doc/emacs/search.texi (Regexp Example): doc/emacs/mule.texi (International Chars): doc/emacs/building.texi (External Lisp): Don't use characters outside ISO-8859-1.
This commit is contained in:
parent
5772caab78
commit
62d94509e2
6 changed files with 19 additions and 7 deletions
|
@ -1,3 +1,10 @@
|
|||
2011-03-10 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* search.texi (Regexp Example):
|
||||
* mule.texi (International Chars):
|
||||
* building.texi (External Lisp): Don't use characters outside
|
||||
ISO-8859-1.
|
||||
|
||||
2011-03-09 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* ack.texi (Acknowledgments): Convert to ISO-8859-1 encoding. Use
|
||||
|
|
|
@ -1056,7 +1056,7 @@ Show file information or library names in threads buffer.
|
|||
Show addresses for thread frames in threads buffer.
|
||||
@end table
|
||||
|
||||
It’s possible to observe information for several threads
|
||||
It's possible to observe information for several threads
|
||||
simultaneously (in addition to buffers which show information for
|
||||
currently selected thread) using the following keys from the threads
|
||||
buffer.
|
||||
|
|
|
@ -237,7 +237,7 @@ preferred charset: unicode (Unicode (ISO10646))
|
|||
Character code properties: customize what to show
|
||||
name: LATIN CAPITAL LETTER A WITH GRAVE
|
||||
general-category: Lu (Letter, Uppercase)
|
||||
decomposition: (65 768) ('A' '̀')
|
||||
decomposition: (65 768) ('A' '`')
|
||||
old-name: LATIN CAPITAL LETTER A GRAVE
|
||||
|
||||
There are text properties here:
|
||||
|
|
|
@ -917,13 +917,13 @@ setting of the syntax table (@pxref{Syntax}).
|
|||
@node Regexp Example
|
||||
@section Regular Expression Example
|
||||
|
||||
Here is an example of a regexp---the regexp that Emacs uses, by
|
||||
default, to recognize the end of a sentence, not including the
|
||||
following space (i.e., the variable @code{sentence-end-base}):
|
||||
Here is an example of a regexp---similar to the regexp that Emacs
|
||||
uses, by default, to recognize the end of a sentence, not including
|
||||
the following space (i.e., the variable @code{sentence-end-base}):
|
||||
|
||||
@example
|
||||
@verbatim
|
||||
[.?!][]\"'””)}]*
|
||||
[.?!][]\"')}]*
|
||||
@end verbatim
|
||||
@end example
|
||||
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2011-03-10 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* modes.texi (Operator Precedence Grammars): Don't use characters
|
||||
outside ISO-8859-1.
|
||||
|
||||
2011-03-09 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* intro.texi (Acknowledgements): Convert to ISO-8859-1 encoding.
|
||||
|
|
|
@ -3403,7 +3403,7 @@ Such pairs of precedences are sufficient to express left-associativity
|
|||
or right-associativity of infix operators, nesting of tokens like
|
||||
parentheses and many other cases.
|
||||
|
||||
@c ¡Let's leave this undocumented to leave it more open for change!
|
||||
@c Let's leave this undocumented to leave it more open for change!
|
||||
@c @defvar smie-grammar
|
||||
@c The value of this variable is an alist specifying the left and right
|
||||
@c precedence of each token. It is meant to be initialized by using one of
|
||||
|
|
Loading…
Add table
Reference in a new issue