emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 8f1eda7: Spelling fixes


From: Paul Eggert
Subject: [Emacs-diffs] master 8f1eda7: Spelling fixes
Date: Mon, 20 Apr 2015 06:59:56 +0000

branch: master
commit 8f1eda7a8a7e268413e38fa9d704a92cf7a860d5
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Spelling fixes
---
 lisp/eshell/esh-mode.el              |    2 +-
 lisp/progmodes/python.el             |   12 ++++++------
 test/automated/message-mode-tests.el |    2 +-
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el
index 54e52b9..222e801 100644
--- a/lisp/eshell/esh-mode.el
+++ b/lisp/eshell/esh-mode.el
@@ -873,7 +873,7 @@ When run interactively, widen the buffer first."
 
 (defun eshell/clear (&optional scrollback)
   "Scroll contents of eshell window out of sight, leaving a blank window.
-If SCROLLBACK is non-nil, clear the scollback contents."
+If SCROLLBACK is non-nil, clear the scrollback contents."
   (interactive)
   (if scrollback
       (eshell/clear-scrollback)
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index c9774a1..eb17d07 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1585,7 +1585,7 @@ forward only one sexp, else move backwards."
 With positive optional argument DIR direction move forward, else
 backwards.  When optional argument SAFE is non-nil do not throw
 errors when at end of sexp, skip it instead.  With optional
-argument SKIP-PARENS-P force sexp motion to ignore parenthised
+argument SKIP-PARENS-P force sexp motion to ignore parenthesized
 expressions when looking at them in either direction."
   (setq dir (or dir 1))
   (unless (= dir 0)
@@ -1683,7 +1683,7 @@ expressions when looking at them in either direction."
 With ARG, do it that many times.  Negative arg -N means move
 backward N times.  When optional argument SAFE is non-nil do not
 throw errors when at end of sexp, skip it instead.  With optional
-argument SKIP-PARENS-P force sexp motion to ignore parenthised
+argument SKIP-PARENS-P force sexp motion to ignore parenthesized
 expressions when looking at them in either direction (forced to t
 in interactive calls)."
   (interactive "^p")
@@ -1694,7 +1694,7 @@ in interactive calls)."
   ;; interactive detection by checking `current-prefix-arg'.  The
   ;; reason to make this distinction is that lisp functions like
   ;; `blink-matching-open' get confused causing issues like the one in
-  ;; Bug#16191.  With this approach the user gets a simmetric behavior
+  ;; Bug#16191.  With this approach the user gets a symmetric behavior
   ;; when working interactively while called functions expecting
   ;; paren-based sexp motion work just fine.
   (or
@@ -1717,7 +1717,7 @@ in interactive calls)."
 With ARG, do it that many times.  Negative arg -N means move
 forward N times.  When optional argument SAFE is non-nil do not
 throw errors when at end of sexp, skip it instead.  With optional
-argument SKIP-PARENS-P force sexp motion to ignore parenthised
+argument SKIP-PARENS-P force sexp motion to ignore parenthesized
 expressions when looking at them in either direction (forced to t
 in interactive calls)."
   (interactive "^p")
@@ -1728,7 +1728,7 @@ in interactive calls)."
   "Move forward safely across expressions.
 With ARG, do it that many times.  Negative arg -N means move
 backward N times.  With optional argument SKIP-PARENS-P force
-sexp motion to ignore parenthised expressions when looking at
+sexp motion to ignore parenthesized expressions when looking at
 them in either direction (forced to t in interactive calls)."
   (interactive "^p")
   (python-nav-forward-sexp arg t skip-parens-p))
@@ -1737,7 +1737,7 @@ them in either direction (forced to t in interactive 
calls)."
   "Move backward safely across expressions.
 With ARG, do it that many times.  Negative arg -N means move
 forward N times.  With optional argument SKIP-PARENS-P force sexp
-motion to ignore parenthised expressions when looking at them in
+motion to ignore parenthesized expressions when looking at them in
 either direction (forced to t in interactive calls)."
   (interactive "^p")
   (python-nav-backward-sexp arg t skip-parens-p))
diff --git a/test/automated/message-mode-tests.el 
b/test/automated/message-mode-tests.el
index 12ecefe..397707f 100644
--- a/test/automated/message-mode-tests.el
+++ b/test/automated/message-mode-tests.el
@@ -1,4 +1,4 @@
-;;; message-mode-tests.el --- Tests for message-mdoe  -*- lexical-binding: t; 
-*-
+;;; message-mode-tests.el --- Tests for message-mode  -*- lexical-binding: t; 
-*-
 
 ;; Copyright (C) 2015  Free Software Foundation, Inc.
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]