Commit a5f277ab a5f277abcb2ec99f439961152d26133a58650547 by Sergey Poznyakoff

Updated

1 parent 396fcb00
1 2005-02-27 Sergey Poznyakoff
2
3 * gnulib.modules: Add mbswidth
4 * frm/frm.c: Implemented -t. Changed implementation of -Q.
5 Rewritten action() to correctly handle multibyte characters
6 and to provide for eventual using the BIDI algorithm.
7 (print_line,format_field,format_field_simple)
8 (format_field_align): New functions
9 (util_getcols): Measure /dev/tty if unable to open stdout.
10 (to work correctly with piped output).
11 (rfc2047_decode_wrapper): Cache the determined locale.
12 (get_personal): Do not limit the returned string length.
13 Do not attempt to decode the raw header text, since
14 parse822 will skip non-ascii characters, decode the already
15 obtained personal part instead.
16
17 * mailbox/address.c (address_aget_personal)
18 (address_aget_comments): Bugfix
19 * sql/mysql.c: Provide place handlers for handling MySQL 4.1.x
20 scrambled passwords.
21
22 Update by gnulib-sync:
23
24 * m4/mbrtowc.m4: New file
25 * m4/mbswidth.m4: New file
26 * lib/mbswidth.c: New file
27 * lib/mbswidth.h: New file
28 * lib/Makefile.am: Updated
29 * m4/gnulib.m4: Updated
30
1 2005-02-26 Wojciech Polak 31 2005-02-26 Wojciech Polak
2 32
3 * mh/send.c (expand_aliases): Bugfix. Do not use statically 33 * mh/send.c (expand_aliases): Bugfix. Do not use statically
......
...@@ -73,6 +73,8 @@ MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t ...@@ -73,6 +73,8 @@ MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t
73 libmailutils_la_SOURCES += getpass.h 73 libmailutils_la_SOURCES += getpass.h
74 74
75 75
76 libmailutils_la_SOURCES += mbswidth.h mbswidth.c
77
76 78
77 79
78 libmailutils_la_SOURCES += setenv.h 80 libmailutils_la_SOURCES += setenv.h
......
...@@ -27,6 +27,9 @@ gl_FUNC_GETPASS_GNU ...@@ -27,6 +27,9 @@ gl_FUNC_GETPASS_GNU
27 # malloc 27 # malloc
28 AC_FUNC_MALLOC 28 AC_FUNC_MALLOC
29 29
30 # mbswidth
31 gl_MBSWIDTH
32
30 # obstack 33 # obstack
31 gl_OBSTACK 34 gl_OBSTACK
32 35
...@@ -101,9 +104,6 @@ gl_FUNC_STRNLEN ...@@ -101,9 +104,6 @@ gl_FUNC_STRNLEN
101 # sysexits 104 # sysexits
102 gl_SYSEXITS 105 gl_SYSEXITS
103 106
104 # unlocked-io
105 gl_FUNC_GLIBC_UNLOCKED_IO
106
107 # vasnprintf 107 # vasnprintf
108 gl_FUNC_VASNPRINTF 108 gl_FUNC_VASNPRINTF
109 109
......