mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Merge from origin/emacs-26
03697e6Fix remote-host directory tracking for shells in `term' buffers16e8541Update doc string of 'rx'
This commit is contained in:
commit
4ee82a4ea9
2 changed files with 28 additions and 21 deletions
|
|
@ -978,12 +978,14 @@ CHAR
|
|||
matches whitespace and graphic characters.
|
||||
|
||||
`alphanumeric', `alnum'
|
||||
matches alphabetic characters and digits. (For multibyte characters,
|
||||
it matches according to Unicode character properties.)
|
||||
matches alphabetic characters and digits. For multibyte characters,
|
||||
it matches characters whose Unicode `general-category' property
|
||||
indicates they are alphabetic or decimal number characters.
|
||||
|
||||
`letter', `alphabetic', `alpha'
|
||||
matches alphabetic characters. (For multibyte characters,
|
||||
it matches according to Unicode character properties.)
|
||||
matches alphabetic characters. For multibyte characters,
|
||||
it matches characters whose Unicode `general-category' property
|
||||
indicates they are alphabetic characters.
|
||||
|
||||
`ascii'
|
||||
matches ASCII (unibyte) characters.
|
||||
|
|
@ -992,10 +994,14 @@ CHAR
|
|||
matches non-ASCII (multibyte) characters.
|
||||
|
||||
`lower', `lower-case'
|
||||
matches anything lower-case.
|
||||
matches anything lower-case, as determined by the current case
|
||||
table. If `case-fold-search' is non-nil, this also matches any
|
||||
upper-case letter.
|
||||
|
||||
`upper', `upper-case'
|
||||
matches anything upper-case.
|
||||
matches anything upper-case, as determined by the current case
|
||||
table. If `case-fold-search' is non-nil, this also matches any
|
||||
lower-case letter.
|
||||
|
||||
`punctuation', `punct'
|
||||
matches punctuation. (But at present, for multibyte characters,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue