aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/mh-e/ChangeLog6
-rw-r--r--lisp/mh-e/mh-comp.el2
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 @@
12006-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
12006-07-03 Bill Wohler <wohler@newt.com> 72006-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