]> git.eshelyaron.com Git - emacs.git/commitdiff
* progmodes/python.el (python-mode-map): Use correct function to
authorChristoph Scholtes <cschol2112@gmail.com>
Sat, 3 Sep 2011 18:44:37 +0000 (12:44 -0600)
committerChristoph Scholtes <cschol2112@gmail.com>
Sat, 3 Sep 2011 18:44:37 +0000 (12:44 -0600)
start python interpreter from menu-bar (as reported by Geert
Kloosterman).
(inferior-python-mode-map): Fix typo.
(python-shell-map): Removed.

lisp/ChangeLog
lisp/progmodes/python.el

index 656bf8485e94da8718284d241f7017c180996ca0..3c27b51dfdf686aa68015e91c8ecdfda9af06d83 100644 (file)
@@ -1,3 +1,11 @@
+2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
+
+       * progmodes/python.el (python-mode-map): Use correct function to
+       start python interpreter from menu-bar (as reported by Geert
+       Kloosterman).
+       (inferior-python-mode-map): Fix typo.
+       (python-shell-map): Removed.
+
 2011-09-03  Deniz Dogan  <deniz@dogan.se>
 
        * net/rcirc.el (rcirc-print): Simplify code for
index 4d2f15c69d85c8d458fd5fc23e5b3fc7e47997a9..3f923f496b9abd62a66c6842749eeb7169cb3524 100644 (file)
@@ -296,7 +296,7 @@ Used for syntactic keywords.  N is the match number (1, 2 or 3)."
         :filter (lambda (&rest junk)
                    (abbrev-table-menu python-mode-abbrev-table)))
        "-"
-       ["Start interpreter" python-shell
+       ["Start interpreter" run-python
         :help "Run `inferior' Python in separate buffer"]
        ["Import/reload file" python-load-file
         :help "Load into inferior Python session"]
@@ -328,14 +328,6 @@ Used for syntactic keywords.  N is the match number (1, 2 or 3)."
 ;; eric has items including: (un)indent, (un)comment, restart script,
 ;; run script, debug script; also things for profiling, unit testing.
 
-(defvar python-shell-map
-  (let ((map (copy-keymap comint-mode-map)))
-    (define-key map [tab]   'tab-to-tab-stop)
-    (define-key map "\C-c-" 'py-up-exception)
-    (define-key map "\C-c=" 'py-down-exception)
-    map)
-  "Keymap used in *Python* shell buffers.")
-
 (defvar python-mode-syntax-table
   (let ((table (make-syntax-table)))
     ;; Give punctuation syntax to ASCII that normally has symbol
@@ -1345,7 +1337,7 @@ local value.")
     (define-key map "\C-c\C-l" 'python-load-file)
     (define-key map "\C-c\C-v" 'python-check)
     ;; Note that we _can_ still use these commands which send to the
-    ;; Python process even at the prompt iff we have a normal prompt,
+    ;; Python process even at the prompt if we have a normal prompt,
     ;; i.e. '>>> ' and not '... '.  See the comment before
     ;; python-send-region.  Fixme: uncomment these if we address that.