diff options
| author | Glenn Morris | 2009-01-09 03:19:39 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-01-09 03:19:39 +0000 |
| commit | 78892d1be9475a5b43bbc39def2f9c552e3adaf1 (patch) | |
| tree | c13196b65a98c3e9bb378d9540ea1510a4963428 /lisp | |
| parent | 67a7fe65394cbb2cd181a6e005e1e9836e1c574f (diff) | |
| download | emacs-78892d1be9475a5b43bbc39def2f9c552e3adaf1.tar.gz emacs-78892d1be9475a5b43bbc39def2f9c552e3adaf1.zip | |
(url-cid-gnus): Fix typo in header name.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/url/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/url/url-cid.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 2f9702312ae..04483a8539e 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-01-09 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * url-cid.el (url-cid-gnus): Fix typo in header name. | ||
| 4 | |||
| 1 | 2008-11-04 Chong Yidong <cyd@stupidchicken.com> | 5 | 2008-11-04 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * url-util.el (url-basepath): Add url-basepath as an alias for | 7 | * url-util.el (url-basepath): Add url-basepath as an alias for |
diff --git a/lisp/url/url-cid.el b/lisp/url/url-cid.el index 75e23f58e62..f71b0a203e7 100644 --- a/lisp/url/url-cid.el +++ b/lisp/url/url-cid.el | |||
| @@ -44,7 +44,7 @@ | |||
| 44 | (if (= 0 (length encoding)) (setq encoding "8bit")) | 44 | (if (= 0 (length encoding)) (setq encoding "8bit")) |
| 45 | (if (listp content-type) | 45 | (if (listp content-type) |
| 46 | (setq content-type (car content-type))) | 46 | (setq content-type (car content-type))) |
| 47 | (insert (format "Content-type: %d\r\n" (length data)) | 47 | (insert (format "Content-length: %d\r\n" (length data)) |
| 48 | "Content-type: " content-type "\r\n" | 48 | "Content-type: " content-type "\r\n" |
| 49 | "Content-transfer-encoding: " encoding "\r\n" | 49 | "Content-transfer-encoding: " encoding "\r\n" |
| 50 | "\r\n" | 50 | "\r\n" |