summaryrefslogtreecommitdiff
path: root/lisp/progmodes/cc-awk.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2013-02-01 22:04:06 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2013-02-01 22:04:06 -0800
commitd9c287e589bdb05c2c818e340946546868d34e04 (patch)
tree14207931ccd04c3c7af811f1b298bdd7f578221c /lisp/progmodes/cc-awk.el
parent94fbc901707d7c1fd7ec0471d288e585caf59b34 (diff)
downloademacs-d9c287e589bdb05c2c818e340946546868d34e04.tar.gz
emacs-d9c287e589bdb05c2c818e340946546868d34e04.tar.bz2
emacs-d9c287e589bdb05c2c818e340946546868d34e04.zip
Spelling fixes.
Diffstat (limited to 'lisp/progmodes/cc-awk.el')
-rw-r--r--lisp/progmodes/cc-awk.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/progmodes/cc-awk.el b/lisp/progmodes/cc-awk.el
index 0711bc983e8..4b3fc91b0ff 100644
--- a/lisp/progmodes/cc-awk.el
+++ b/lisp/progmodes/cc-awk.el
@@ -142,7 +142,7 @@
(defconst c-awk-harmless-line-char-re "[^_#/\"\\\\\n\r]")
;; Matches any character but a _, #, /, ", \, or newline. N.B. _" starts a
-;; localisation string in gawk 3.1
+;; localization string in gawk 3.1
(defconst c-awk-harmless-line-string*-re
(concat "\\(" c-awk-harmless-line-char-re "\\|" c-awk-esc-pair-re "\\|" c-awk-harmless-_ "\\)*"))
;; Matches a (possibly empty) sequence of chars without unescaped /, ", \,
@@ -795,7 +795,8 @@
(setq anchor (point))
(search-forward-regexp c-awk-harmless-string*-here-re nil t)
;; We are now looking at either a " or a / or a brace/paren/semicolon.
- ;; Do our thing on the string, regexp or divsion sign or update our state.
+ ;; Do our thing on the string, regexp or division sign or update
+ ;; our state.
(setq anchor-state-/div
(cond
((looking-at "_?\"")