diff options
| author | Richard M. Stallman | 2001-11-25 17:45:36 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-11-25 17:45:36 +0000 |
| commit | 92dfd10c1f4ad23aed4c36d0b6ec825f98fc8305 (patch) | |
| tree | 3c39cd0b8c906235bc2a4145c96a9a4dbc543f7b | |
| parent | 0baffc68914cc886f3307c61e5a3e500c7804468 (diff) | |
| download | emacs-92dfd10c1f4ad23aed4c36d0b6ec825f98fc8305.tar.gz emacs-92dfd10c1f4ad23aed4c36d0b6ec825f98fc8305.zip | |
Simplify previous change.
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/mail/smtpmail.el | 4 |
2 files changed, 10 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 25b5fd8b761..178b10669af 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,12 @@ | |||
| 1 | 2001-11-25 Simon Josefsson <jas@extundo.com> | 1 | 2001-11-25 Richard M. Stallman <rms@gnu.org> |
| 2 | |||
| 3 | * language/devan-util.el: Comment out parts of the file | ||
| 4 | which apparently are garbled. | ||
| 5 | |||
| 6 | 2001-11-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | ||
| 2 | 7 | ||
| 3 | * mail/smtpmail.el (smtpmail-deduce-address-list): Don't use | 8 | * mail/smtpmail.el (smtpmail-deduce-address-list): Don't use |
| 4 | insert-string. Suggested by Pavel@Janik.cz (Pavel Jan,Bm(Bk). | 9 | insert-string. |
| 5 | 10 | ||
| 6 | 2001-11-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 11 | 2001-11-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 7 | 12 | ||
| @@ -44,7 +49,8 @@ | |||
| 44 | 2001-11-24 Richard M. Stallman <rms@gnu.org> | 49 | 2001-11-24 Richard M. Stallman <rms@gnu.org> |
| 45 | 50 | ||
| 46 | * startup.el (command-line-1): Don't do startup screen | 51 | * startup.el (command-line-1): Don't do startup screen |
| 47 | if a subprocess is running. | 52 | if a subprocess is running. Call the startup screen buffer |
| 53 | "GNU Emacs". Make a special mode-line-format for it. | ||
| 48 | 54 | ||
| 49 | * net/browse-url.el (browse-url-galeon-new-window-is-tab): New var. | 55 | * net/browse-url.el (browse-url-galeon-new-window-is-tab): New var. |
| 50 | (browse-url-galeon): Use that variable. | 56 | (browse-url-galeon): Use that variable. |
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index b696c327fd8..83ffa5d44bc 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el | |||
| @@ -873,9 +873,7 @@ This is relative to `smtpmail-queue-dir'.") | |||
| 873 | (mail-strip-quoted-names (buffer-substring this-line this-line-end)))) | 873 | (mail-strip-quoted-names (buffer-substring this-line this-line-end)))) |
| 874 | ) | 874 | ) |
| 875 | (erase-buffer) | 875 | (erase-buffer) |
| 876 | (insert " ") | 876 | (insert " " simple-address-list "\n") |
| 877 | (insert simple-address-list) | ||
| 878 | (insert "\n") | ||
| 879 | (subst-char-in-region (point-min) (point-max) 10 ? t);; newline --> blank | 877 | (subst-char-in-region (point-min) (point-max) 10 ? t);; newline --> blank |
| 880 | (subst-char-in-region (point-min) (point-max) ?, ? t);; comma --> blank | 878 | (subst-char-in-region (point-min) (point-max) ?, ? t);; comma --> blank |
| 881 | (subst-char-in-region (point-min) (point-max) 9 ? t);; tab --> blank | 879 | (subst-char-in-region (point-min) (point-max) 9 ? t);; tab --> blank |