[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: New version of undo-tree.el
From: |
Vegard Øye |
Subject: |
Re: New version of undo-tree.el |
Date: |
Tue, 12 Jan 2010 05:39:04 -0800 (PST) |
User-agent: |
G2/1.0 |
Toby,
thank you so much for writing undo-tree.el. I have been using it for
some days now, and it just feels ontologically right: undo history
/is/ a tree, as everyone who has used a version control system knows.
Indeed, the package is essentially a miniature VCS for buffer states!
There is a slight problem when using it together with Gascoigne's
Windows port of gnuserv.el, whose redefinition of `kill-buffer' needs
an explicit argument. The following patch fixes the problem:
@@ -1695 +1695 @@
- (kill-buffer))
+ (kill-buffer (current-buffer)))
Vegard