diff options
author | Barry Warsaw <barry@python.org> | 1999-07-28 22:06:06 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1999-07-28 22:06:06 (GMT) |
commit | 5ed843fc52d6f64c700b0fd44c8f6c15465eac07 (patch) | |
tree | 99adbac7c5696a8335beaec8dcbe06c261894fb8 /Misc/python-mode.el | |
parent | 11f215607e2c59741d21dc5957fbb7c4c89953b1 (diff) | |
download | cpython-5ed843fc52d6f64c700b0fd44c8f6c15465eac07.zip cpython-5ed843fc52d6f64c700b0fd44c8f6c15465eac07.tar.gz cpython-5ed843fc52d6f64c700b0fd44c8f6c15465eac07.tar.bz2 |
A few minor Customize changes:
(python): Set defgroup :prefix to "py-" to make variable names cleaner.
(py-jpython-command, py-jpython-command-args): Set :tag for proper
capitalization of JPython in variable name display.
Diffstat (limited to 'Misc/python-mode.el')
-rw-r--r-- | Misc/python-mode.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el index 130c6db..d7818f1 100644 --- a/Misc/python-mode.el +++ b/Misc/python-mode.el @@ -97,7 +97,8 @@ See the Python Mode home page for details: (defgroup python nil "Support for the Python programming language, <http://www.python.org/>" - :group 'languages) + :group 'languages + :prefix "py-") (defcustom py-python-command "python" "*Shell command used to start Python interpreter." @@ -107,7 +108,8 @@ See the Python Mode home page for details: (defcustom py-jpython-command "jpython" "*Shell command used to start the JPython interpreter." :type 'string - :group 'python) + :group 'python + :tag "JPython Command") (defcustom py-default-interpreter 'cpython "*Which Python interpreter is used by default. @@ -136,7 +138,8 @@ mode buffer is visited during an Emacs session. After that, use (defcustom py-jpython-command-args '("-i") "*List of string arguments to be used when starting a JPython shell." :type '(repeat string) - :group 'python) + :group 'python + :tag "JPython Command Args") (defcustom py-indent-offset 4 "*Amount of offset per level of indentation. |