+2008-05-30 16:14 +0200 Rocco Rutte <pdmef@gmx.net> (2f59be26ad22)
+
+ * protos.h: Define prototypes for compatibility functions in protos.h
+ to silence compiler warnings
+
+2008-05-29 14:18 +0200 Rocco Rutte <pdmef@gmx.net> (bf74c85070c4)
+
+ * ChangeLog, menu.c: Respect $wrap_search in generic menu search (e.g.
+ for browser)
+
2008-05-29 11:20 +0200 Rocco Rutte <pdmef@gmx.net> (18e7849e4c7c)
* doc/Makefile.am: Only install mutt_dotlock(1) if binary is
#define FREE(x) safe_free(x)
#define ISSPACE isspace
#define strfcpy(a,b,c) {if (c) {strncpy(a,b,c);a[c-1]=0;}}
-#define STRING 128
+#define LONG_STRING 1024
#include "rfc822.h"
#endif
char *comment, size_t *commentlen, size_t commentmax,
ADDRESS *addr)
{
- char token[STRING];
+ char token[LONG_STRING];
size_t tokenlen = 0;
SKIPWS (s);
char *comment, size_t *commentlen, size_t commentmax,
ADDRESS *addr)
{
- char token[STRING];
+ char token[LONG_STRING];
size_t tokenlen = 0;
s = parse_address (s, token, &tokenlen, sizeof (token) - 1, comment, commentlen, commentmax, addr);
{
int ws_pending, nl;
const char *begin, *ps;
- char comment[STRING], phrase[STRING];
+ char comment[LONG_STRING], phrase[LONG_STRING];
size_t phraselen = 0, commentlen = 0;
ADDRESS *cur, *last = NULL;