aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen2020-09-25 15:15:21 +0200
committerLars Ingebrigtsen2020-09-25 15:15:21 +0200
commite1c33e29d58175e159443babd96f230eb0bb4a88 (patch)
tree77b880347d15bce35f2ac28c13e42abb8530b2d1 /lisp/progmodes/python.el
parent664927b5257fdaf26f24063edb1f41c407805ed8 (diff)
downloademacs-e1c33e29d58175e159443babd96f230eb0bb4a88.tar.gz
emacs-e1c33e29d58175e159443babd96f230eb0bb4a88.zip
Fix some defcustom types
* lisp/whitespace.el (whitespace-style): * lisp/gnus/message.el (message-screenshot-command): * lisp/progmodes/compile.el (compilation-transform-file-match-alist): * lisp/progmodes/gdb-mi.el (gdb-default-window-configuration-file): * lisp/progmodes/python.el (python-pdbtrack-exit-command): Fix the defcustom types. * lisp/progmodes/sql.el (sql-password-wallet): Fix the value.
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 7c3b611cd9f..68081b80aa9 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -3796,7 +3796,7 @@ was `continue'. This behavior slightly differentiates the `continue' command
3796from the `exit' command listed in `python-pdbtrack-exit-command'. 3796from the `exit' command listed in `python-pdbtrack-exit-command'.
3797 3797
3798See `python-pdbtrack-activate' for pdbtracking session overview." 3798See `python-pdbtrack-activate' for pdbtracking session overview."
3799 :type 'list 3799 :type '(repeat string)
3800 :version "27.1") 3800 :version "27.1")
3801 3801
3802(defcustom python-pdbtrack-exit-command '("q" "quit" "exit") 3802(defcustom python-pdbtrack-exit-command '("q" "quit" "exit")
@@ -3805,7 +3805,7 @@ After one of this commands is sent to pdb, pdbtracking session is
3805considered over. 3805considered over.
3806 3806
3807See `python-pdbtrack-activate' for pdbtracking session overview." 3807See `python-pdbtrack-activate' for pdbtracking session overview."
3808 :type 'list 3808 :type '(repeast string)
3809 :version "27.1") 3809 :version "27.1")
3810 3810
3811(defcustom python-pdbtrack-kill-buffers t 3811(defcustom python-pdbtrack-kill-buffers t