Fix misspelling of 'chinese' in rx.
* lisp/emacs-lisp/rx.el (rx-categories): Correct spelling of chinese-two-byte. Fixes: debbugs:16237
This commit is contained in:
parent
4e619754b1
commit
73dbf960bf
3 changed files with 10 additions and 2 deletions
|
@ -258,7 +258,8 @@ regular expressions.")
|
|||
(not-at-end-of-line . ?<)
|
||||
(not-at-beginning-of-line . ?>)
|
||||
(alpha-numeric-two-byte . ?A)
|
||||
(chinse-two-byte . ?C)
|
||||
(chinese-two-byte . ?C)
|
||||
(chinse-two-byte . ?C) ;; A typo in Emacs 21.1-24.3.
|
||||
(greek-two-byte . ?G)
|
||||
(japanese-hiragana-two-byte . ?H)
|
||||
(indian-two-byte . ?I)
|
||||
|
@ -1045,7 +1046,7 @@ CHAR
|
|||
`not-at-end-of-line' (\\c<)
|
||||
`not-at-beginning-of-line' (\\c>)
|
||||
`alpha-numeric-two-byte' (\\cA)
|
||||
`chinse-two-byte' (\\cC)
|
||||
`chinese-two-byte' (\\cC)
|
||||
`greek-two-byte' (\\cG)
|
||||
`japanese-hiragana-two-byte' (\\cH)
|
||||
`indian-tow-byte' (\\cI)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue