From 0de4b250a35da7c5a8ebb40b41e2a066b5d69cfd Mon Sep 17 00:00:00 2001 From: moculus Date: Wed, 12 Nov 2008 20:48:37 +0000 Subject: [PATCH] --HG-- branch : pmacs2 --- buffer/__init__.py | 2 ++ tools/iperl | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/buffer/__init__.py b/buffer/__init__.py index 13d19a5..6501077 100644 --- a/buffer/__init__.py +++ b/buffer/__init__.py @@ -229,6 +229,8 @@ class Buffer(object): pass def changed(self): return self.modified + def changed_on_disk(self): + return False def reload(self): raise Exception, "%s reload: Unimplemented" % (self.name()) def save_as(self, path, force=False): diff --git a/tools/iperl b/tools/iperl index a3f5648..1dbc077 100755 --- a/tools/iperl +++ b/tools/iperl @@ -11,8 +11,7 @@ use Getopt::Long qw(); use Scalar::Util qw(); # NOTE: some Term::ReadLine implementations don't support features that we sort -# of need. Term::ReadLine::Gnu is recommended. -#use Term::ReadLine qw(); +# of need. Term::ReadLine::Gnu is strongly recommended. # globals Getopt::Long::Configure('bundling');