From a3beb63eb73b854d86afe12cd34e45695658e8ad Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 29 Sep 1997 13:19:53 +0000 Subject: [PATCH] Removing emacs.py, which is obsolete. --- Lib/emacs.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 Lib/emacs.py diff --git a/Lib/emacs.py b/Lib/emacs.py deleted file mode 100644 index ffce099ac3..0000000000 --- a/Lib/emacs.py +++ /dev/null @@ -1,18 +0,0 @@ -# Execute Emacs code from a Python interpreter. -# This code should be imported from a Python interpreter that is -# running as an inferior process of Emacs. -# See misc/py-connect.el for the companion Emacs lisp code. -# Author: Terrence M. Brannon. - -start_marker = '+' -end_marker = '~' - -def eval (string): - tmpstr = start_marker + '(' + string + ')' + end_marker - print tmpstr - -def dired (directory): - eval( 'dired ' + '"' + directory + '"' ) - -def buffer_menu (): - eval( 'buffer-menu(buffer-list)' ) -- 2.50.1