aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorWerner LEMBERG2005-03-25 09:51:55 +0000
committerWerner LEMBERG2005-03-25 09:51:55 +0000
commit88a34f435457c283f017af2f66d117b6f3cc4106 (patch)
tree5802f91351e9e50eba8f6cc829493ade8f9bfc3f /lisp
parent932fb767f54c27e7fe185f8d23ba4b734d569ed7 (diff)
downloademacs-88a34f435457c283f017af2f66d117b6f3cc4106.tar.gz
emacs-88a34f435457c283f017af2f66d117b6f3cc4106.zip
* mh-e.el, mh-identity.el, mh-mime.el: Replace `legal' with `valid'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mh-e/ChangeLog4
-rw-r--r--lisp/mh-e/mh-e.el6
-rw-r--r--lisp/mh-e/mh-identity.el4
-rw-r--r--lisp/mh-e/mh-mime.el7
4 files changed, 13 insertions, 8 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog
index a9839adab19..b6bcb3938b0 100644
--- a/lisp/mh-e/ChangeLog
+++ b/lisp/mh-e/ChangeLog
@@ -1,5 +1,9 @@
12005-03-25 Werner Lemberg <wl@gnu.org> 12005-03-25 Werner Lemberg <wl@gnu.org>
2 2
3 * mh-e.el, mh-identity.el, mh-mime.el: Replace `legal' with `valid'.
4
52005-03-25 Werner Lemberg <wl@gnu.org>
6
3 * mh-e.el: Replace `illegal' with `invalid'. 7 * mh-e.el: Replace `illegal' with `invalid'.
4 8
52004-09-07 Stefan <monnier@iro.umontreal.ca> 92004-09-07 Stefan <monnier@iro.umontreal.ca>
diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el
index 3ffed2c1c9f..c2322624507 100644
--- a/lisp/mh-e/mh-e.el
+++ b/lisp/mh-e/mh-e.el
@@ -1526,7 +1526,7 @@ Many commands that operate on individual messages, such as `mh-forward' or
1526ways. 1526ways.
1527 1527
1528If you provide the prefix argument (\\[universal-argument]) to these commands, 1528If you provide the prefix argument (\\[universal-argument]) to these commands,
1529then you will be prompted for the message range. This can be any legal MH 1529then you will be prompted for the message range. This can be any valid MH
1530range which can include messages, sequences, and the abbreviations (described 1530range which can include messages, sequences, and the abbreviations (described
1531in the mh(1) man page): 1531in the mh(1) man page):
1532 1532
@@ -2146,7 +2146,7 @@ to avoid exceeding system command line argument limits."
2146(defun mh-greaterp (msg1 msg2) 2146(defun mh-greaterp (msg1 msg2)
2147 "Return the greater of two message indicators MSG1 and MSG2. 2147 "Return the greater of two message indicators MSG1 and MSG2.
2148Strings are \"smaller\" than numbers. 2148Strings are \"smaller\" than numbers.
2149Legal values are things like \"cur\", \"last\", 1, and 1820." 2149Valid values are things like \"cur\", \"last\", 1, and 1820."
2150 (if (numberp msg1) 2150 (if (numberp msg1)
2151 (if (numberp msg2) 2151 (if (numberp msg2)
2152 (> msg1 msg2) 2152 (> msg1 msg2)
@@ -2158,7 +2158,7 @@ Legal values are things like \"cur\", \"last\", 1, and 1820."
2158(defun mh-lessp (msg1 msg2) 2158(defun mh-lessp (msg1 msg2)
2159 "Return the lesser of two message indicators MSG1 and MSG2. 2159 "Return the lesser of two message indicators MSG1 and MSG2.
2160Strings are \"smaller\" than numbers. 2160Strings are \"smaller\" than numbers.
2161Legal values are things like \"cur\", \"last\", 1, and 1820." 2161Valid values are things like \"cur\", \"last\", 1, and 1820."
2162 (not (mh-greaterp msg1 msg2))) 2162 (not (mh-greaterp msg1 msg2)))
2163 2163
2164 2164
diff --git a/lisp/mh-e/mh-identity.el b/lisp/mh-e/mh-identity.el
index be385ad09e6..4bb5f90cf18 100644
--- a/lisp/mh-e/mh-identity.el
+++ b/lisp/mh-e/mh-identity.el
@@ -1,6 +1,6 @@
1;;; mh-identity.el --- Multiple identify support for MH-E. 1;;; mh-identity.el --- Multiple identify support for MH-E.
2 2
3;; Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. 3;; Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 4
5;; Author: Peter S. Galbraith <psg@debian.org> 5;; Author: Peter S. Galbraith <psg@debian.org>
6;; Maintainer: Bill Wohler <wohler@newt.com> 6;; Maintainer: Bill Wohler <wohler@newt.com>
@@ -122,7 +122,7 @@ Return t if anything is deleted."
122 "Return the handler for a FIELD or nil if none set. 122 "Return the handler for a FIELD or nil if none set.
123The field name is downcased. If the FIELD begins with the character 123The field name is downcased. If the FIELD begins with the character
124`:', then it must have a special handler defined in 124`:', then it must have a special handler defined in
125`mh-identity-handlers', else return an error since it is not a legal 125`mh-identity-handlers', else return an error since it is not a valid
126message header." 126message header."
127 (or (cdr (assoc (downcase field) mh-identity-handlers)) 127 (or (cdr (assoc (downcase field) mh-identity-handlers))
128 (and (eq (aref field 0) ?:) 128 (and (eq (aref field 0) ?:)
diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el
index 72cb654dedd..bc870134779 100644
--- a/lisp/mh-e/mh-mime.el
+++ b/lisp/mh-e/mh-mime.el
@@ -1,6 +1,7 @@
1;;; mh-mime.el --- MH-E support for composing MIME messages 1;;; mh-mime.el --- MH-E support for composing MIME messages
2 2
3;; Copyright (C) 1993, 1995, 2001, 02, 03, 2004 Free Software Foundation, Inc. 3;; Copyright (C) 1993, 1995, 2001, 02, 03, 2004, 2005
4;; Free Software Foundation, Inc.
4 5
5;; Author: Bill Wohler <wohler@newt.com> 6;; Author: Bill Wohler <wohler@newt.com>
6;; Maintainer: Bill Wohler <wohler@newt.com> 7;; Maintainer: Bill Wohler <wohler@newt.com>
@@ -197,7 +198,7 @@ Returns nil if file command not on system."
197 ("text/richtext") ("text/x-vcard") ("text/xml") 198 ("text/richtext") ("text/x-vcard") ("text/xml")
198 199
199 ("video/mpeg") ("video/quicktime")) 200 ("video/mpeg") ("video/quicktime"))
200 "Legal MIME content types. 201 "Valid MIME content types.
201See documentation for \\[mh-edit-mhn].") 202See documentation for \\[mh-edit-mhn].")
202 203
203;; RFC 2045 - Multipurpose Internet Mail Extensions (MIME) Part One: 204;; RFC 2045 - Multipurpose Internet Mail Extensions (MIME) Part One:
@@ -224,7 +225,7 @@ See documentation for \\[mh-edit-mhn].")
224 ("tftp") ; RFC2046 Trivial File Transfer Protocol 225 ("tftp") ; RFC2046 Trivial File Transfer Protocol
225 ("url") ; RFC2017 URL scheme MIME access-type Protocol 226 ("url") ; RFC2017 URL scheme MIME access-type Protocol
226 ("wais")) ; RFC1738 Wide Area Information Servers 227 ("wais")) ; RFC1738 Wide Area Information Servers
227 "Legal MIME access-type values.") 228 "Valid MIME access-type values.")
228 229
229;;;###mh-autoload 230;;;###mh-autoload
230(defun mh-mhn-compose-insertion (filename type description attributes) 231(defun mh-mhn-compose-insertion (filename type description attributes)