diff options
author | Guido van Rossum <guido@python.org> | 1997-09-29 13:19:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-09-29 13:19:53 (GMT) |
commit | a3beb63eb73b854d86afe12cd34e45695658e8ad (patch) | |
tree | 869abceb25bfc16809903e89c74dd53b18cf37ee /Lib | |
parent | da286666b24e31a6ec16964963aaa3a83bcad751 (diff) | |
download | cpython-a3beb63eb73b854d86afe12cd34e45695658e8ad.zip cpython-a3beb63eb73b854d86afe12cd34e45695658e8ad.tar.gz cpython-a3beb63eb73b854d86afe12cd34e45695658e8ad.tar.bz2 |
Removing emacs.py, which is obsolete.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/emacs.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Lib/emacs.py b/Lib/emacs.py deleted file mode 100644 index ffce099..0000000 --- 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)' ) |