]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix misspelling of 'chinese' in rx.
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 5 Jan 2014 06:10:52 +0000 (22:10 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 5 Jan 2014 06:10:52 +0000 (22:10 -0800)
* lisp/emacs-lisp/rx.el (rx-categories): Correct spelling of
chinese-two-byte.

Fixes: debbugs:16237
etc/NEWS
lisp/ChangeLog
lisp/emacs-lisp/rx.el

index 8a3794956706896d0f15c21f2375afe31ec8480a..801f5b8ed208d5602624af3dcbb4f3988c6ef6ff 100644 (file)
--- 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
 
 +++
index ad4c26c501f84cec33d0735deaf1e6add8110cea..d68d7ea88c27c4adda71d927347f62aedb6cf71e 100644 (file)
@@ -1,5 +1,9 @@
 2014-01-05  Paul Eggert  <eggert@cs.ucla.edu>
 
+       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.
index 7adf46ebffdd1135a7c4835d55485f520af27266..f6934c38d294f8e731218ccd2a56f07d2ba8a6ee 100644 (file)
@@ -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)