summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2014-04-10 12:12:34 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2014-04-10 12:12:34 -0700
commit10ee3b3f17731f44b9d5bd51c8330e16f22361c7 (patch)
tree3284a2ae7b3d86b8a8d992964f04db89d97cc6bf
parent39764caa7f21822f8919e51b07394c00c2431b36 (diff)
downloademacs-10ee3b3f17731f44b9d5bd51c8330e16f22361c7.tar.gz
Spelling fixes.
* automated/electric-tests.el: Fix spelling error in test name. (whitespace-skipping-for-quotes-not-outside): Rename from whitespace-skipping-for-quotes-not-ouside.
-rw-r--r--lisp/elec-pair.el2
-rw-r--r--lisp/nxml/rng-cmpct.el3
-rw-r--r--test/ChangeLog6
-rw-r--r--test/automated/electric-tests.el2
4 files changed, 9 insertions, 4 deletions
diff --git a/lisp/elec-pair.el b/lisp/elec-pair.el
index c16c1141800..04e1840c0a5 100644
--- a/lisp/elec-pair.el
+++ b/lisp/elec-pair.el
@@ -343,7 +343,7 @@ If point is not enclosed by any lists, return ((t) . (t))."
(cons innermost outermost)))
(defvar electric-pair-string-bound-function 'point-max
- "Next buffer position where strings are syntatically unexpected.
+ "Next buffer position where strings are syntactically unexpected.
Value is a function called with no arguments and returning a
buffer position. Major modes should set this variable
buffer-locally if they experience slowness with
diff --git a/lisp/nxml/rng-cmpct.el b/lisp/nxml/rng-cmpct.el
index 3518de977a4..0dfdb4279be 100644
--- a/lisp/nxml/rng-cmpct.el
+++ b/lisp/nxml/rng-cmpct.el
@@ -363,7 +363,7 @@ OVERRIDE is either nil, require or t."
"*")))
(defun rng-c-process-escapes ()
- ;; Check for any nuls, since we will use nul chars
+ ;; Check for any NULs, since we will use NUL chars
;; for internal purposes.
(let ((pos (search-forward "\C-@" nil t)))
(and pos
@@ -932,4 +932,3 @@ Current token after parse is token following ]."
(provide 'rng-cmpct)
;;; rng-cmpct.el
-
diff --git a/test/ChangeLog b/test/ChangeLog
index 8b9b507d1c7..8f203f68d5c 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,9 @@
+2014-04-10 Paul Eggert <eggert@cs.ucla.edu>
+
+ * automated/electric-tests.el: Fix spelling error in test name.
+ (whitespace-skipping-for-quotes-not-outside):
+ Rename from whitespace-skipping-for-quotes-not-ouside.
+
2014-04-09 Glenn Morris <rgm@gnu.org>
* automated/python-tests.el (python-triple-quote-pairing):
diff --git a/test/automated/electric-tests.el b/test/automated/electric-tests.el
index 6a70080fde5..b1908e6bb32 100644
--- a/test/automated/electric-tests.el
+++ b/test/automated/electric-tests.el
@@ -383,7 +383,7 @@ baz\"\""
:test-in-code nil
:test-in-comments t)
-(define-electric-pair-test whitespace-skipping-for-quotes-not-ouside
+(define-electric-pair-test whitespace-skipping-for-quotes-not-outside
" \" \"" "\"-----" :expected-string "\"\" \" \""
:expected-point 2
:bindings '((electric-pair-skip-whitespace . chomp))