aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 3ef872d26eb..09b89993626 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -494,7 +494,7 @@ statement."
494 494
495 495
496(defcustom python-pdbtrack-do-tracking-p t 496(defcustom python-pdbtrack-do-tracking-p t
497 "*Controls whether the pdbtrack feature is enabled or not. 497 "Controls whether the pdbtrack feature is enabled or not.
498 498
499When non-nil, pdbtrack is enabled in all comint-based buffers, 499When non-nil, pdbtrack is enabled in all comint-based buffers,
500e.g. shell interaction buffers and the *Python* buffer. 500e.g. shell interaction buffers and the *Python* buffer.
@@ -509,7 +509,7 @@ having to restart the program."
509(make-variable-buffer-local 'python-pdbtrack-do-tracking-p) 509(make-variable-buffer-local 'python-pdbtrack-do-tracking-p)
510 510
511(defcustom python-pdbtrack-minor-mode-string " PDB" 511(defcustom python-pdbtrack-minor-mode-string " PDB"
512 "*Minor-mode sign to be displayed when pdbtrack is active." 512 "Minor-mode sign to be displayed when pdbtrack is active."
513 :type 'string 513 :type 'string
514 :group 'python) 514 :group 'python)
515 515
@@ -1288,7 +1288,7 @@ modified by the user. Additional arguments are added when the command
1288is used by `run-python' et al.") 1288is used by `run-python' et al.")
1289 1289
1290(defvar python-buffer nil 1290(defvar python-buffer nil
1291 "*The current Python process buffer. 1291 "The current Python process buffer.
1292 1292
1293Commands that send text from source buffers to Python processes have 1293Commands that send text from source buffers to Python processes have
1294to choose a process to send to. This is determined by buffer-local 1294to choose a process to send to. This is determined by buffer-local
@@ -1959,7 +1959,7 @@ the string's indentation."
1959 ;; paragraph in a multi-line string properly, so narrow 1959 ;; paragraph in a multi-line string properly, so narrow
1960 ;; to the string and then fill around (the end of) the 1960 ;; to the string and then fill around (the end of) the
1961 ;; current line. 1961 ;; current line.
1962 ((eq t (nth 3 syntax)) ; in fenced string 1962 ((nth 3 syntax) ; in fenced string
1963 (goto-char (nth 8 syntax)) ; string start 1963 (goto-char (nth 8 syntax)) ; string start
1964 (setq start (line-beginning-position)) 1964 (setq start (line-beginning-position))
1965 (setq end (condition-case () ; for unbalanced quotes 1965 (setq end (condition-case () ; for unbalanced quotes