emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r115873: Fix misspelling of 'chinese' in rx.


From: Paul Eggert
Subject: [Emacs-diffs] trunk r115873: Fix misspelling of 'chinese' in rx.
Date: Sun, 05 Jan 2014 06:10:56 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115873
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/16237
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Sat 2014-01-04 22:10:52 -0800
message:
  Fix misspelling of 'chinese' in rx.
  
  * lisp/emacs-lisp/rx.el (rx-categories): Correct spelling of
  chinese-two-byte.
modified:
  etc/NEWS                       news-20100311060928-aoit31wvzf25yr1z-1
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/emacs-lisp/rx.el          rx.el-20091113204419-o5vbwnq5f7feedwu-2227
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2014-01-05 02:56:08 +0000
+++ b/etc/NEWS  2014-01-05 06:10:52 +0000
@@ -1257,6 +1257,9 @@
 +++
 ** 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
 
 +++

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-01-05 05:49:44 +0000
+++ b/lisp/ChangeLog    2014-01-05 06:10:52 +0000
@@ -1,5 +1,9 @@
 2014-01-05  Paul Eggert  <address@hidden>
 
+       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.

=== modified file 'lisp/emacs-lisp/rx.el'
--- a/lisp/emacs-lisp/rx.el     2014-01-01 07:43:34 +0000
+++ b/lisp/emacs-lisp/rx.el     2014-01-05 06:10:52 +0000
@@ -258,7 +258,8 @@
     (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 @@
      `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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]