VM

Merge lp:~tcross/vm/720059 into lp:vm

Proposed by Tim Cross
Status: Merged
Merged at revision: 1080
Proposed branch: lp:~tcross/vm/720059
Merge into: lp:vm
Diff against target: 23 lines (+4/-2)
1 file modified
lisp/vm-vars.el (+4/-2)
To merge this branch: bzr merge lp:~tcross/vm/720059
Reviewer Review Type Date Requested Status
Uday Reddy Pending
Review via email: mp+50433@code.launchpad.net

Description of the change

Fix for bug 720059

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lisp/vm-vars.el'
2--- lisp/vm-vars.el 2011-02-17 12:06:28 +0000
3+++ lisp/vm-vars.el 2011-02-19 05:22:53 +0000
4@@ -2493,7 +2493,7 @@
5 (const :tag "Flush after every change" t)
6 (integer :tag "Seconds")))
7
8-(defcustom vm-visit-when-saving nil
9+(defcustom vm-visit-when-saving 'if-already-visited
10 "*Value determines whether VM will visit folders when saving messages.
11 `Visiting' means that VM will read the folder into Emacs and append the
12 message to the buffer instead of appending to the folder file directly.
13@@ -2512,7 +2512,9 @@
14 buffer if that folder is being visited, otherwise VM saves to the folder
15 file itself."
16 :group 'vm-folders
17- :type '(choice boolean (const if-already-visited)))
18+ :type '(choice (const :tag "If already visited" if-already-visited)
19+ (const :tag "Always" t)
20+ (const :tag "Never" nil)))
21
22 (defcustom vm-auto-folder-alist nil
23 "*Non-nil value should be an alist that VM will use to choose a default

Subscribers

People subscribed via source and target branches

to all changes: