]> git.eshelyaron.com Git - emacs.git/commitdiff
(mh-scan-format-file-check): Allow any non-nil for
authorBill Wohler <wohler@newt.com>
Mon, 30 Jan 2006 07:26:35 +0000 (07:26 +0000)
committerBill Wohler <wohler@newt.com>
Mon, 30 Jan 2006 07:26:35 +0000 (07:26 +0000)
mh-adaptive-cmd-note-flag.

lisp/mh-e/ChangeLog
lisp/mh-e/mh-e.el

index 71ec35e0039c40f92483246bed976564aed4aa6f..a018b66347ec7d4bcc43519e19edb3508b444ca5 100644 (file)
@@ -1,5 +1,8 @@
 2006-01-29  Bill Wohler  <wohler@newt.com>
 
+       * mh-e.el (mh-scan-format-file-check): Allow any non-nil for
+       mh-adaptive-cmd-note-flag.
+
        * mh-comp.el (sc-cite-original): Remove autoload of "sc" with old
        docstring. sc-cite-original is autoloaded via loaddefs.el for all
        supported versions. In addition, the package name "sc" has been
index f1ee071fad24cf884b41e28650e2e17976093c67..5b7389335902d535e6bc199a98f67adfa244366a 100644 (file)
@@ -1851,7 +1851,7 @@ Throw an error if user tries to set `mh-scan-format-file' to
 anything but t when `mh-adaptive-cmd-note-flag' is on. Otherwise,
 set SYMBOL to VALUE."
   (if (and (not (eq value t))
-           (eq mh-adaptive-cmd-note-flag t))
+           mh-adaptive-cmd-note-flag)
       (error "%s %s" "You must turn off `mh-adaptive-cmd-note-flag'"
              "unless you use \"Use MH-E scan Format\"")
     (set-default symbol value)))