aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorPaul Eggert2019-11-11 10:30:13 -0800
committerPaul Eggert2019-11-11 10:32:53 -0800
commit6b4a97c1c78f39ce890d100acceceb652d14e20d (patch)
tree9d9f8347a952226adcd73680ed89c5679d6e5326 /lisp/progmodes/python.el
parent269796288a43520a1dcc481337af472d086faaa4 (diff)
downloademacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.gz
emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.zip
Fix some quoting glitches in doc strings
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index e672645c734..37e0ccf7198 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -3747,7 +3747,7 @@ Used to extract the current line and module being inspected.
3747 3747
3748Must match lines with real filename, like 3748Must match lines with real filename, like
3749 > /path/to/file.py(42)<module>()->None 3749 > /path/to/file.py(42)<module>()->None
3750and lines in which filename starts with '<', e.g. 3750and lines in which filename starts with `<', e.g.
3751 > <stdin>(1)<module>()->None 3751 > <stdin>(1)<module>()->None
3752 3752
3753In the first case /path/to/file.py file will be visited and overlay icon 3753In the first case /path/to/file.py file will be visited and overlay icon
@@ -3762,21 +3762,21 @@ Line number is expected in the second parenthesized expression."
3762 :safe 'stringp) 3762 :safe 'stringp)
3763 3763
3764(defcustom python-pdbtrack-continue-command '("c" "cont" "continue") 3764(defcustom python-pdbtrack-continue-command '("c" "cont" "continue")
3765 "Pdb 'continue' command aliases. 3765 "Pdb `continue' command aliases.
3766After one of this commands is sent to pdb, pdbtracking session is 3766After one of these commands is sent to pdb, the pdbtracking session is
3767considered over. 3767considered over.
3768 3768
3769This command is remembered by pdbtracking. If next command sent to pdb 3769This command is remembered by pdbtracking. If the next command sent to pdb
3770is empty string, it considered 'continue' command if previous command 3770is the empty string, it is treated as `continue' if the previous command
3771was 'continue'. This behavior slightly differentiate 'continue' command 3771was `continue'. This behavior slightly differentiates the `continue' command
3772from 'exit' commands listed in `python-pdbtrack-exit-command'. 3772from the `exit' command listed in `python-pdbtrack-exit-command'.
3773 3773
3774See `python-pdbtrack-activate' for pdbtracking session overview." 3774See `python-pdbtrack-activate' for pdbtracking session overview."
3775 :type 'list 3775 :type 'list
3776 :version "27.1") 3776 :version "27.1")
3777 3777
3778(defcustom python-pdbtrack-exit-command '("q" "quit" "exit") 3778(defcustom python-pdbtrack-exit-command '("q" "quit" "exit")
3779 "Pdb 'exit' command aliases. 3779 "Pdb `exit' command aliases.
3780After one of this commands is sent to pdb, pdbtracking session is 3780After one of this commands is sent to pdb, pdbtracking session is
3781considered over. 3781considered over.
3782 3782
@@ -3801,7 +3801,7 @@ Never set this variable directly, use
3801 "List of buffers to be deleted after tracking finishes.") 3801 "List of buffers to be deleted after tracking finishes.")
3802 3802
3803(defvar python-pdbtrack-prev-command-continue nil 3803(defvar python-pdbtrack-prev-command-continue nil
3804 "Is t if previous pdb command was 'continue'.") 3804 "Is t if previous pdb command was `continue'.")
3805 3805
3806(defun python-pdbtrack-set-tracked-buffer (file-name) 3806(defun python-pdbtrack-set-tracked-buffer (file-name)
3807 "Set the buffer for FILE-NAME as the tracked buffer. 3807 "Set the buffer for FILE-NAME as the tracked buffer.