diff options
| author | Kenichi Handa | 2007-01-29 11:08:19 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2007-01-29 11:08:19 +0000 |
| commit | 8c8d1081b67f9f9c90c0b64832ac0f5bcce26530 (patch) | |
| tree | fdda2b39e1e425170af29bcfdc98d6c8dcc50e72 | |
| parent | 19e32937ec28d1c7ab5cc543e16a74ceb4cbcb90 (diff) | |
| download | emacs-8c8d1081b67f9f9c90c0b64832ac0f5bcce26530.tar.gz emacs-8c8d1081b67f9f9c90c0b64832ac0f5bcce26530.zip | |
(py-converter): Fix previous change.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/international/titdic-cnv.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d1831cece40..8960b0422be 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-01-29 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * international/titdic-cnv.el (py-converter): Fix previous change. | ||
| 4 | |||
| 1 | 2007-01-29 Chong Yidong <cyd@stupidchicken.com> | 5 | 2007-01-29 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * jka-compr.el (jka-compr-partial-uncompress) | 7 | * jka-compr.el (jka-compr-partial-uncompress) |
diff --git a/lisp/international/titdic-cnv.el b/lisp/international/titdic-cnv.el index adf5e080b04..c8a1155b0f3 100644 --- a/lisp/international/titdic-cnv.el +++ b/lisp/international/titdic-cnv.el | |||
| @@ -910,7 +910,7 @@ method `chinese-tonepy' with which you must specify tones by digits | |||
| 910 | (let ((pos (point))) | 910 | (let ((pos (point))) |
| 911 | (insert-buffer-substring dicbuf) | 911 | (insert-buffer-substring dicbuf) |
| 912 | (goto-char pos) | 912 | (goto-char pos) |
| 913 | (search-forward "^[a-z]") | 913 | (re-search-forward "^[a-z]") |
| 914 | (beginning-of-line) | 914 | (beginning-of-line) |
| 915 | (delete-region pos (point)) | 915 | (delete-region pos (point)) |
| 916 | (while (not (eobp)) | 916 | (while (not (eobp)) |