summaryrefslogtreecommitdiff
path: root/Misc/python-mode.el
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1998-02-25 15:57:47 +0000
committerBarry Warsaw <barry@python.org>1998-02-25 15:57:47 +0000
commitea041e35838acca0f1f35715e5edcd8c9b9f1dee (patch)
tree91079ba1d290f27040038be03aec714e9c6ceea0 /Misc/python-mode.el
parent06be3865afe73ccc759bd5f31ccfb676fdcc5238 (diff)
downloadcpython-ea041e35838acca0f1f35715e5edcd8c9b9f1dee.tar.gz
(py-master-file): Fixed some typos in the docstring.
Diffstat (limited to 'Misc/python-mode.el')
-rw-r--r--Misc/python-mode.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/Misc/python-mode.el b/Misc/python-mode.el
index 9a62205520..25a3b9d047 100644
--- a/Misc/python-mode.el
+++ b/Misc/python-mode.el
@@ -287,17 +287,17 @@ source code of the innermost frame.")
;; Not customizable
(defvar py-master-file nil
"If non-nil, execute the named file instead of the buffer's file.
-The intent is to allow someone to set this variable file local
+The intent is to allow you to set this variable in the file's local
variable section, e.g.:
# Local Variables:
# py-master-file: \"master.py\"
# End:
-so that hitting \\[py-execute-buffer] in that buffer executes the
+so that typing \\[py-execute-buffer] in that buffer executes the
named master file instead of the buffer's file. Note that if the file
-name has a relative path, the `default-directory' for the file is
-prepended to come up with a buffer name.")
+name has a relative path, the `default-directory' for the buffer is
+prepended to come up with a file name.")
(make-variable-buffer-local 'py-master-file)