]> git.eshelyaron.com Git - emacs.git/commitdiff
(inferior-python-mode-syntax-table): New var.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 14 Nov 2006 15:34:15 +0000 (15:34 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 14 Nov 2006 15:34:15 +0000 (15:34 +0000)
(inferior-python-mode): Use it.

lisp/ChangeLog
lisp/progmodes/python.el

index 5b7814d2c496748f281bbfa255cfda2fcecabc7a..5ecc5df29b0761fd209b92ecf994842f501a0709 100644 (file)
@@ -1,3 +1,8 @@
+2006-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/python.el (inferior-python-mode-syntax-table): New var.
+       (inferior-python-mode): Use it.
+
 2006-11-14  Andreas Schwab  <schwab@suse.de>
 
        * term/xterm.el (terminal-init-xterm): Add more key bindings.
index 4d9a49a6b8dcefcc3e62c36f9880d044b9c6fa08..24e9f65f180d7bb4d446d1749801a746b5c68f05 100644 (file)
@@ -1194,6 +1194,15 @@ local value.")
     ;; (define-key map "\C-c\C-f" 'python-describe-symbol)
     map))
 
+(defvar inferior-python-mode-syntax-table
+  (let ((st (make-syntax-table python-mode-syntax-table)))
+    ;; Don't get confused by apostrophes in the process's output (e.g. if
+    ;; you execute "help(os)").
+    (modify-syntax-entry ?\' "." st)
+    ;; Maybe we should do the same for double quotes?
+    ;; (modify-syntax-entry ?\" "." st)
+    st))
+
 ;; Fixme: This should inherit some stuff from `python-mode', but I'm
 ;; not sure how much: at least some keybindings, like C-c C-f;
 ;; syntax?; font-locking, e.g. for triple-quoted strings?
@@ -1216,7 +1225,6 @@ For running multiple processes in multiple buffers, see `run-python' and
 
 \\{inferior-python-mode-map}"
   :group 'python
-  (set-syntax-table python-mode-syntax-table)
   (setq mode-line-process '(":%s"))
   (set (make-local-variable 'comint-input-filter) 'python-input-filter)
   (add-hook 'comint-preoutput-filter-functions #'python-preoutput-filter