From 73dbf960bfdb3a4e9a34804eefecdd76fd769f0c Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 4 Jan 2014 22:10:52 -0800 Subject: [PATCH] Fix misspelling of 'chinese' in rx. * lisp/emacs-lisp/rx.el (rx-categories): Correct spelling of chinese-two-byte. Fixes: debbugs:16237 --- etc/NEWS | 3 +++ lisp/ChangeLog | 4 ++++ lisp/emacs-lisp/rx.el | 5 +++-- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/etc/NEWS b/etc/NEWS index 8a379495670..801f5b8ed20 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -1257,6 +1257,9 @@ regular file with contents being what would have been in the symlink. +++ ** New functions `group-gid' and `group-real-gid'. +** The spelling of the rx.el category `chinese-two-byte' has been +corrected (the first 'e' was missing). + ** Changes to the Emacs Lisp Coding Conventions in Emacs 24.4 +++ diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ad4c26c501f..d68d7ea88c2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,9 @@ 2014-01-05 Paul Eggert + Fix misspelling of 'chinese' in rx (Bug#16237). + * emacs-lisp/rx.el (rx-categories): Correct spelling of + chinese-two-byte. + Change subword regexps back to vars (Bug#16296). * progmodes/subword.el (subword-forward-regexp) (subword-backward-regexp): Change these back to variables. diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el index 7adf46ebffd..f6934c38d29 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el @@ -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) -- 2.39.2