aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorGlenn Morris2018-02-16 15:16:15 -0500
committerGlenn Morris2018-02-16 15:16:15 -0500
commit66a4e651f3cf38c320d1a9d5ae6f88dcc641792b (patch)
tree0fa5ba9ab57893ae3bca46bd09d8b52105f8a17a /lisp/progmodes/python.el
parent35e5c57db311c3d6c1c3a8dd4edc3d756d1d5d24 (diff)
downloademacs-66a4e651f3cf38c320d1a9d5ae6f88dcc641792b.tar.gz
emacs-66a4e651f3cf38c320d1a9d5ae6f88dcc641792b.zip
; Fix doc typos related to indefinite articles
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 5baf6e0f80a..c7bb2d97c84 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -422,7 +422,7 @@
422 (string-delimiter . ,(rx (and 422 (string-delimiter . ,(rx (and
423 ;; Match even number of backslashes. 423 ;; Match even number of backslashes.
424 (or (not (any ?\\ ?\' ?\")) point 424 (or (not (any ?\\ ?\' ?\")) point
425 ;; Quotes might be preceded by a escaped quote. 425 ;; Quotes might be preceded by an escaped quote.
426 (and (or (not (any ?\\)) point) ?\\ 426 (and (or (not (any ?\\)) point) ?\\
427 (* ?\\ ?\\) (any ?\' ?\"))) 427 (* ?\\ ?\\) (any ?\' ?\")))
428 (* ?\\ ?\\) 428 (* ?\\ ?\\)
@@ -925,7 +925,7 @@ keyword
925 (back-to-indentation) 925 (back-to-indentation)
926 (python-syntax-closing-paren-p)) 926 (python-syntax-closing-paren-p))
927 (cons :inside-paren-at-closing-nested-paren start)) 927 (cons :inside-paren-at-closing-nested-paren start))
928 ;; This line starts from a opening block in its own line. 928 ;; This line starts from an opening block in its own line.
929 ((save-excursion 929 ((save-excursion
930 (goto-char start) 930 (goto-char start)
931 (when (and 931 (when (and
@@ -1640,7 +1640,7 @@ ARG move forward only one sexp, else move backwards."
1640 1640
1641(defun python-nav--lisp-forward-sexp-safe (&optional arg) 1641(defun python-nav--lisp-forward-sexp-safe (&optional arg)
1642 "Safe version of standard `forward-sexp'. 1642 "Safe version of standard `forward-sexp'.
1643When at end of sexp (i.e. looking at a opening/closing paren) 1643When at end of sexp (i.e. looking at an opening/closing paren)
1644skips it instead of throwing an error. With positive ARG move 1644skips it instead of throwing an error. With positive ARG move
1645forward only one sexp, else move backwards." 1645forward only one sexp, else move backwards."
1646 (let* ((arg (if (or (not arg) (> arg 0)) 1 -1)) 1646 (let* ((arg (if (or (not arg) (> arg 0)) 1 -1))