diff options
| author | Stephen Gildea | 2006-09-26 02:16:16 +0000 |
|---|---|---|
| committer | Stephen Gildea | 2006-09-26 02:16:16 +0000 |
| commit | 799f7c09a2b0dbed6b9b59ab740140a4fd0fb9b5 (patch) | |
| tree | 570d4e20f52d2eb964a74d21221888402ee81cb1 | |
| parent | e7de144e9235b07a57537f6284a3c5ee6f7bc6f5 (diff) | |
| download | emacs-799f7c09a2b0dbed6b9b59ab740140a4fd0fb9b5.tar.gz emacs-799f7c09a2b0dbed6b9b59ab740140a4fd0fb9b5.zip | |
mh-comp.el (mh-send-args): Initialize to "" instead of nil
so that we always have a valid string for split-string even if
nothing is added in mh-send-letter (closes SF #1564742).
| -rw-r--r-- | lisp/mh-e/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/mh-e/mh-comp.el | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index a49e3b2a4a3..4763cbcc292 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2006-09-24 Stephen Gildea <gildea@stop.mail-abuse.org> | ||
| 2 | |||
| 3 | * mh-comp.el (mh-send-args): Initialize to "" instead of nil | ||
| 4 | so that we always have a valid string for split-string even if | ||
| 5 | nothing is added in mh-send-letter (closes SF #1564742). | ||
| 6 | |||
| 1 | 2006-07-03 Bill Wohler <wohler@newt.com> | 7 | 2006-07-03 Bill Wohler <wohler@newt.com> |
| 2 | 8 | ||
| 3 | Release MH-E version 8.0.2. | 9 | Release MH-E version 8.0.2. |
diff --git a/lisp/mh-e/mh-comp.el b/lisp/mh-e/mh-comp.el index 7156b0cf318..a967a2c8d9e 100644 --- a/lisp/mh-e/mh-comp.el +++ b/lisp/mh-e/mh-comp.el | |||
| @@ -127,7 +127,7 @@ Used by the \\[mh-edit-again] and \\[mh-extract-rejected-mail] commands.") | |||
| 127 | (make-syntax-table text-mode-syntax-table)) | 127 | (make-syntax-table text-mode-syntax-table)) |
| 128 | (modify-syntax-entry ?% "." mh-letter-mode-syntax-table)) | 128 | (modify-syntax-entry ?% "." mh-letter-mode-syntax-table)) |
| 129 | 129 | ||
| 130 | (defvar mh-send-args nil | 130 | (defvar mh-send-args "" |
| 131 | "Extra args to pass to \"send\" command.") | 131 | "Extra args to pass to \"send\" command.") |
| 132 | 132 | ||
| 133 | (defvar mh-annotate-char nil | 133 | (defvar mh-annotate-char nil |