summaryrefslogtreecommitdiff
path: root/utils/bbdb-unlazy-lock.pl
diff options
context:
space:
mode:
Diffstat (limited to 'utils/bbdb-unlazy-lock.pl')
-rwxr-xr-xutils/bbdb-unlazy-lock.pl16
1 files changed, 0 insertions, 16 deletions
diff --git a/utils/bbdb-unlazy-lock.pl b/utils/bbdb-unlazy-lock.pl
deleted file mode 100755
index 30dec96..0000000
--- a/utils/bbdb-unlazy-lock.pl
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/perl
-#
-# Author: Christopher Kline <ckline@media.mit.edu>
-#
-# Revision 1.1 1997/10/06 00:56:14 simmonmt
-# Initial revision
-#
-#
-# Lazy-lock-mode has (had) a nasty habit of munging .bbdb files if you visited them
-# with it on. This script removes the lazy-lock mung
-#
-
-while( <STDIN> ) {
- s/#\(("[^"]*")( \d+ \d+ (nil)*(\(lazy-lock t\))*)*\)/$1/gi;
- print;
-}