From xemacs-m  Wed Apr 16 03:34:00 1997
Received: from aut.alcatel.at (atusks01.aut.alcatel.at [146.112.129.10])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id DAA08066
	for <xemacs-beta@xemacs.org>; Wed, 16 Apr 1997 03:33:55 -0500 (CDT)
Received: from atusels1.aut.alcatel.at by aut.alcatel.at (8.7.2/AAA_1)
	id KAA01883; Wed, 16 Apr 1997 10:34:08 +0200 (MET DST)
Received: from atusel63.alcatel.at by atusels1.aut.alcatel.at (5.x/ELEKTRA-1.0)
	id AA27457 for xemacs-beta@xemacs.org;; Wed, 16 Apr 1997 10:34:07 +0200
Received: by atusel63.alcatel.at (SMI-8.6/SMI-SVR4)
	id KAA15319; Wed, 16 Apr 1997 10:33:26 +0200
Date: Wed, 16 Apr 1997 10:33:26 +0200
Message-Id: <199704160833.KAA15319@atusel63.alcatel.at>
From: Martin Pottendorfer <Martin.Pottendorfer@aut.alcatel.at>
To: xemacs-beta@xemacs.org
Subject: Misleading hint when reading multipart messages in VM (+PATCH)
X-Mailer: VM 6.26 under 20.1 XEmacs Lucid
Mime-Version: 1.0 (generated by tm-edit 7.106)
Content-Type: text/plain; charset=US-ASCII

hi,

I'm using VM 6.26, XEmacs-20.1-final

when receiveing a multipart mail message the following appears: 

  [[ This is message/partial style split message. ]]
  [[ Please press `v' key in this buffer          ]]
  [[ or click here by mouse button-2.             ]]

when pressing `v' VM prompts for a folder to visit.

`C-c v' is the intended key proposal, isn't it ?

martin

PS: the following fixed this for me:

*** lisp/tm/tm-view.el.BAK      Wed Apr 16 10:30:04 1997
--- lisp/tm/tm-view.el  Wed Apr 16 10:30:59 1997
***************
*** 182,192 ****
    (if (and (>= emacs-major-version 19) window-system)
        "\
  \[[ This is message/partial style split message. ]]
! \[[ Please press `v' key in this buffer          ]]
  \[[ or click here by mouse button-2.             ]]"
      "\
  \[[ This is message/partial style split message. ]]
! \[[ Please press `v' key in this buffer.         ]]"
      ))
  
  
--- 182,192 ----
    (if (and (>= emacs-major-version 19) window-system)
        "\
  \[[ This is message/partial style split message. ]]
! \[[ Please press `C-c v' key in this buffer      ]]
  \[[ or click here by mouse button-2.             ]]"
      "\
  \[[ This is message/partial style split message. ]]
! \[[ Please press `C-c v' key in this buffer.     ]]"
      ))

