aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wohler2005-10-24 05:24:59 +0000
committerBill Wohler2005-10-24 05:24:59 +0000
commit136e0283500c75760a031a7cdeb491092b980b4b (patch)
treeb08bd93cbd2256682679ecad4bd98c9fe81f88b6
parent7c5ba0d218f8fcea9a7f236a44d4fa822647b915 (diff)
downloademacs-136e0283500c75760a031a7cdeb491092b980b4b.tar.gz
emacs-136e0283500c75760a031a7cdeb491092b980b4b.zip
(mh-interpret-number-as-range-flag): Sync docstring with manual.
-rw-r--r--lisp/mh-e/ChangeLog3
-rw-r--r--lisp/mh-e/mh-customize.el8
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog
index ebdb123c623..3409970c680 100644
--- a/lisp/mh-e/ChangeLog
+++ b/lisp/mh-e/ChangeLog
@@ -1,5 +1,8 @@
12005-10-23 Bill Wohler <wohler@newt.com> 12005-10-23 Bill Wohler <wohler@newt.com>
2 2
3 * mh-customize.el (mh-interpret-number-as-range-flag): Sync
4 docstring with manual.
5
3 * mh-identity.el (mh-assoc-ignore-case): Merge with version in 6 * mh-identity.el (mh-assoc-ignore-case): Merge with version in
4 mh-alias.el and move to mh-acros.el 7 mh-alias.el and move to mh-acros.el
5 8
diff --git a/lisp/mh-e/mh-customize.el b/lisp/mh-e/mh-customize.el
index 2255bdad2d6..919a655d78b 100644
--- a/lisp/mh-e/mh-customize.el
+++ b/lisp/mh-e/mh-customize.el
@@ -946,9 +946,11 @@ is added to the yanked region."
946;;; Ranges (:group 'mh-ranges) 946;;; Ranges (:group 'mh-ranges)
947 947
948(defcustom mh-interpret-number-as-range-flag t 948(defcustom mh-interpret-number-as-range-flag t
949 "Non-nil means interpret a number as a range. 949 "On means interpret a number as a range.
950If the variable is non-nil, and you use an integer, N, when asked for a 950Since one of the most frequent ranges used is \"last:N\", MH-E will interpret
951range to scan, then MH-E uses the range \"last:N\"." 951input such as \"200\" as \"last:200\" if this option is on (which is the
952default). If you need to scan just the message 200, then use the range
953\"200:200\"."
952 :type 'boolean 954 :type 'boolean
953 :group 'mh-ranges) 955 :group 'mh-ranges)
954 956