branch : pmacs2
This commit is contained in:
moculus 2008-11-12 20:48:37 +00:00
parent 8dbdf94bf0
commit 0de4b250a3
2 changed files with 3 additions and 2 deletions

View File

@ -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):

View File

@ -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');