aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/providers/imap/camel-imap-utils.c45
2 files changed, 5 insertions, 45 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 9f7557a028..a02d92990a 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2000-09-01 Christopher James Lahey <clahey@helixcode.com>
+
+ * providers/imap/camel-imap-utils.c: Removed some unused
+ functions.
+
2000-08-31 Chris Toshok <toshok@helixcode.com>
* providers/nntp/camel-nntp-store.c (camel_nntp_store_class_init):
diff --git a/camel/providers/imap/camel-imap-utils.c b/camel/providers/imap/camel-imap-utils.c
index d25a2f5159..c32975188e 100644
--- a/camel/providers/imap/camel-imap-utils.c
+++ b/camel/providers/imap/camel-imap-utils.c
@@ -31,10 +31,6 @@
#define d(x) x
-static char *get_quoted_token (char *string, int *len);
-static char *get_token (char *string, int *len);
-
-
char *
imap_next_word (char *buf)
{
@@ -107,47 +103,6 @@ imap_parse_list_response (char *buf, char *namespace, char **flags, char **sep,
return TRUE;
}
-static char *
-get_quoted_token (char *string, int *len)
-{
- char *ep;
-
- for (ep = string + 1; *ep; ep++)
- if (*ep == '"' && *(ep - 1) != '\\')
- break;
- if (*ep)
- ep++;
-
- *len = ep - string;
-
- return g_strndup (string, *len);
-}
-
-static char *
-get_token (char *string, int *len)
-{
- char *p, *ep;
-
- for (p = string; *p && *p == ' '; p++);
-
- if (*p == '"') {
- char *token;
- int i;
-
- token = get_quoted_token (p, &i);
-
- *len = i + (p - string);
-
- return token;
- }
-
- for (ep = p; *ep && *ep != ' ' && *ep != ')'; ep++);
-
- *len = ep - string;
-
- return g_strndup (p, *len);
-}
-
static ESExpResult *
func_and (struct _ESExp *f, int argc, struct _ESExpResult **argv, void *data)
{
f050ba2e81f5aa1ec9456ff2'>change query_changed to search_activated.Chris Toshok2002-02-252-4/+11 * New helper function. (create_object): Add icons for the various userEttore Perazzoli2002-02-223-32/+88 * pass extra itip_send_comp params (send_freebusy): ditto (ok_clicked_cb):JP Rosevear2002-02-2010-63/+177 * use new column enums (set_value_at): emit pre-change/cell change signalsJP Rosevear2002-02-167-318/+570 * don't append 'calendar.ics' to the URI. (get_prop): finished.Rodrigo Moya2002-02-145-32/+57 * check if the CalComponentDateTime values are set before trying to useDamon Chaplin2002-02-092-15/+28 * added vCalendar importer and intelligent GnomeCalendar importer code here,Damon Chaplin2002-02-097-102/+627 * change custom widget creator to e_url_entry_newJP Rosevear2002-02-093-41/+20 * add a custom widget created with e_url_button_newJP Rosevear2002-02-094-10/+56 * pass meeting boolean for gnome_calendar_edit_object andJP Rosevear2002-02-0815-100/+212 * Bumped the required version of gal.Christopher James Lahey2002-02-073-67/+85 * convert months from 1-12 to 0-11. Fixes bug #19235.Damon Chaplin2002-02-072-0/+11 * new gui routines for conduit settings (e_todo_gui_fill_config): dittoJP Rosevear2002-02-052-6/+88 * if this is a reply, print the attendee statusJP Rosevear2002-01-312-0/+39 * Use 1 instead of zero as the minimum value for the repetitions spin buttonFederico Mena Quintero2002-01-262-1/+8 * Ooops. Forgot to use EVOLUTION_CALENDAR_LIBS here.Ettore Perazzoli2002-01-252-1/+6 * Clean up some of the Makefiles so we dont' link every library multipleEttore Perazzoli2002-01-2510-68/+45 * Pass a NULL @icon toEttore Perazzoli2002-01-243-8/+13 * Buffers Files Tools Edit Search Mule HelpJP Rosevear2002-01-223-11/+31 * save the alarm string in the correct variable (str), so it actually getsDamon Chaplin2002-01-182-2/+7 * default component classification to PUBLIC. Fixes internal bug #1066Rodrigo Moya2002-01-172-3/+10 * move all functions here, get rid of header files, use e-pilot-settings toJP Rosevear2002-01-1511-568/+509 * use icaltimetype_to_tmJP Rosevear2002-01-152-7/+5 * figure out when today is and highlight if it is not selectedJP Rosevear2002-01-154-3/+30 * add protosJP Rosevear2002-01-144-21/+164 * translate timezone names when displayed. Fixes bug #6544.Damon Chaplin2002-01-124-15/+59 * new verb callback (sensitize_commands): set sensitivity of mark completeJP Rosevear2002-01-046-3/+79 * only need one warning message nowJP Rosevear2002-01-043-46/+14 * confirm expunging of the tasks (tasks_control_expunge_cmd): verb callbackJP Rosevear2002-01-0311-822/+302 * remove needs send signal related cruft (save_comp_with_send): withJP Rosevear2001-12-228-59/+58 * inherit from bonobo window12001-12-213-34/+58 * -- Merge fix for #17377 from the evolution-1-0-branch.Ettore Perazzoli2001-12-202-0/+9 * go slow and clear the map if the last uri and the current uri do not matchJP Rosevear2001-12-1910-77/+243 * use get_real_item (get_refresh_options): uncomment out (get_real_item):JP Rosevear2001-12-184-41/+151 * new file to contain all timezone names for translation. We won't be usingDamon Chaplin2001-12-143-0/+393 * ungrab the pointer before calling e_day_view_finish_long_event_resizeJP Rosevear2001-12-13