Codebase list mozc / f471c03
Update patches/mozc-el-issue76.patch Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@debian.org> Nobuhiro Iwamatsu 12 years ago
1 changed file(s) with 9 addition(s) and 11 deletion(s). Raw diff Collapse all Expand all
0 # http://code.google.com/p/mozc/issues/detail?id=76
1
2 Index: unix/emacs/mozc.el
3 ===================================================================
4 --- a/unix/emacs/mozc.el (revision 52)
5 +++ b/unix/emacs/mozc.el (working copy)
6 @@ -940,14 +940,15 @@
7 (setcdr pre-boundary nil) ; Drop the rest of list.
8 (cons list post-boundary))))
0 diff --git a/unix/emacs/mozc.el b/unix/emacs/mozc.el
1 index 8ada283..44c9f81 100755
2 --- a/unix/emacs/mozc.el
3 +++ b/unix/emacs/mozc.el
4 @@ -82,14 +82,15 @@
5
6 ;;;; Macros
97
108 -(defmacro mozc-characterp (object)
119 - "Return non-nil if OBJECT is a character.
2220 + `(characterp ,object)
2321 + `(char-valid-p ,object))))
2422
25 (defsubst mozc-string-match-p (regexp string &optional start)
26 "Same as `string-match' except this function never change the match data.
23
24