diff options
| author | Lars Magne Ingebrigtsen | 2010-09-05 23:49:02 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-09-05 23:49:02 +0000 |
| commit | 31b5f29230352c134e00f2c095a86f46520def0e (patch) | |
| tree | e73a9388f6d1a351781b531a985ce8abe10a360a /lisp | |
| parent | dfe1285d2ccff13c855e079c03768975715199f5 (diff) | |
| download | emacs-31b5f29230352c134e00f2c095a86f46520def0e.tar.gz emacs-31b5f29230352c134e00f2c095a86f46520def0e.zip | |
imap.el (imap-debug): Removed -- doesn't seem very useful.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/net/imap.el | 98 |
2 files changed, 4 insertions, 101 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5f28f61e4a7..add576c5c88 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,9 +1,10 @@ | |||
| 1 | 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org> | 1 | 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * imap.el (imap-fetch-safe): Removed function, and altered all callers | 3 | * net/imap.el (imap-fetch-safe): Removed function, and altered all |
| 4 | to use `imap-fetch' instead. According to the comments, this should be | 4 | callers to use `imap-fetch' instead. According to the comments, this |
| 5 | safe, since all other IMAP clients use the 1:* syntax. | 5 | should be safe, since all other IMAP clients use the 1:* syntax. |
| 6 | (imap-enable-exchange-bug-workaround): Removed. | 6 | (imap-enable-exchange-bug-workaround): Removed. |
| 7 | (imap-debug): Removed -- doesn't seem very useful. | ||
| 7 | 8 | ||
| 8 | 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org> | 9 | 2010-09-05 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 9 | 10 | ||
diff --git a/lisp/net/imap.el b/lisp/net/imap.el index 88e8ee0222a..2580635b03f 100644 --- a/lisp/net/imap.el +++ b/lisp/net/imap.el | |||
| @@ -2897,104 +2897,6 @@ Return nil if no complete line has arrived." | |||
| 2897 | (imap-forward) | 2897 | (imap-forward) |
| 2898 | (nreverse body))))) | 2898 | (nreverse body))))) |
| 2899 | 2899 | ||
| 2900 | (when imap-debug ; (untrace-all) | ||
| 2901 | (require 'trace) | ||
| 2902 | (buffer-disable-undo (get-buffer-create imap-debug-buffer)) | ||
| 2903 | (mapc (lambda (f) (trace-function-background f imap-debug-buffer)) | ||
| 2904 | '( | ||
| 2905 | imap-utf7-encode | ||
| 2906 | imap-utf7-decode | ||
| 2907 | imap-error-text | ||
| 2908 | imap-kerberos4s-p | ||
| 2909 | imap-kerberos4-open | ||
| 2910 | imap-ssl-p | ||
| 2911 | imap-ssl-open | ||
| 2912 | imap-network-p | ||
| 2913 | imap-network-open | ||
| 2914 | imap-interactive-login | ||
| 2915 | imap-kerberos4a-p | ||
| 2916 | imap-kerberos4-auth | ||
| 2917 | imap-cram-md5-p | ||
| 2918 | imap-cram-md5-auth | ||
| 2919 | imap-login-p | ||
| 2920 | imap-login-auth | ||
| 2921 | imap-anonymous-p | ||
| 2922 | imap-anonymous-auth | ||
| 2923 | imap-open-1 | ||
| 2924 | imap-open | ||
| 2925 | imap-opened | ||
| 2926 | imap-ping-server | ||
| 2927 | imap-authenticate | ||
| 2928 | imap-close | ||
| 2929 | imap-capability | ||
| 2930 | imap-namespace | ||
| 2931 | imap-send-command-wait | ||
| 2932 | imap-mailbox-put | ||
| 2933 | imap-mailbox-get | ||
| 2934 | imap-mailbox-map-1 | ||
| 2935 | imap-mailbox-map | ||
| 2936 | imap-current-mailbox | ||
| 2937 | imap-current-mailbox-p-1 | ||
| 2938 | imap-current-mailbox-p | ||
| 2939 | imap-mailbox-select-1 | ||
| 2940 | imap-mailbox-select | ||
| 2941 | imap-mailbox-examine-1 | ||
| 2942 | imap-mailbox-examine | ||
| 2943 | imap-mailbox-unselect | ||
| 2944 | imap-mailbox-expunge | ||
| 2945 | imap-mailbox-close | ||
| 2946 | imap-mailbox-create-1 | ||
| 2947 | imap-mailbox-create | ||
| 2948 | imap-mailbox-delete | ||
| 2949 | imap-mailbox-rename | ||
| 2950 | imap-mailbox-lsub | ||
| 2951 | imap-mailbox-list | ||
| 2952 | imap-mailbox-subscribe | ||
| 2953 | imap-mailbox-unsubscribe | ||
| 2954 | imap-mailbox-status | ||
| 2955 | imap-mailbox-acl-get | ||
| 2956 | imap-mailbox-acl-set | ||
| 2957 | imap-mailbox-acl-delete | ||
| 2958 | imap-current-message | ||
| 2959 | imap-list-to-message-set | ||
| 2960 | imap-fetch-asynch | ||
| 2961 | imap-fetch | ||
| 2962 | imap-message-put | ||
| 2963 | imap-message-get | ||
| 2964 | imap-message-map | ||
| 2965 | imap-search | ||
| 2966 | imap-message-flag-permanent-p | ||
| 2967 | imap-message-flags-set | ||
| 2968 | imap-message-flags-del | ||
| 2969 | imap-message-flags-add | ||
| 2970 | imap-message-copyuid-1 | ||
| 2971 | imap-message-copyuid | ||
| 2972 | imap-message-copy | ||
| 2973 | imap-message-appenduid-1 | ||
| 2974 | imap-message-appenduid | ||
| 2975 | imap-message-append | ||
| 2976 | imap-body-lines | ||
| 2977 | imap-envelope-from | ||
| 2978 | imap-send-command-1 | ||
| 2979 | imap-send-command | ||
| 2980 | imap-wait-for-tag | ||
| 2981 | imap-sentinel | ||
| 2982 | imap-find-next-line | ||
| 2983 | imap-arrival-filter | ||
| 2984 | imap-parse-greeting | ||
| 2985 | imap-parse-response | ||
| 2986 | imap-parse-resp-text | ||
| 2987 | imap-parse-resp-text-code | ||
| 2988 | imap-parse-data-list | ||
| 2989 | imap-parse-fetch | ||
| 2990 | imap-parse-status | ||
| 2991 | imap-parse-acl | ||
| 2992 | imap-parse-flag-list | ||
| 2993 | imap-parse-envelope | ||
| 2994 | imap-parse-body-extension | ||
| 2995 | imap-parse-body | ||
| 2996 | ))) | ||
| 2997 | |||
| 2998 | (provide 'imap) | 2900 | (provide 'imap) |
| 2999 | 2901 | ||
| 3000 | ;;; imap.el ends here | 2902 | ;;; imap.el ends here |