]> code.delx.au - gnu-emacs/commitdiff
Spelling fixes.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 2 Feb 2013 06:04:06 +0000 (22:04 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 2 Feb 2013 06:04:06 +0000 (22:04 -0800)
lisp/progmodes/cc-awk.el
lisp/progmodes/make-mode.el
lisp/progmodes/python.el
lisp/simple.el
src/w32.c

index 0711bc983e8d6e35ce6a65acca684fbcbdb7aaba..4b3fc91b0ffd09eed3fb61023c84feb19a0d9cd8 100644 (file)
 
 (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 /, ", \,
       (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 "_?\"")
index 60807f10742bbee17f6dc13a22f2bf38ee304688..20673866bc4f6dd331994b159414fd51e0d1ba0b 100644 (file)
@@ -1304,7 +1304,7 @@ Fill comments, backslashed lines, and variable definitions specially."
        (save-restriction
          (narrow-to-region beginning end)
          (makefile-backslash-region (point-min) (point-max) t)
-         ;; Backslashed newlines are marked as puncutations, so when
+         ;; Backslashed newlines are marked as punctuation, so when
          ;; fill-delete-newlines turns the LF into SPC, we end up with spaces
          ;; which back-to-indentation (called via fill-newline ->
          ;; fill-indent-to-left-margin -> indent-line-to) thinks are real code
index 2cb108cc316c56e0fb917aef5dad2fddb11b13ab..35c5ba19e33149c38f2a505998e3fbe169e00d9b 100644 (file)
@@ -2334,7 +2334,7 @@ Argument OUTPUT is a string with the output from the comint process."
               ;; encounters an exception, it prints the _entire_ stack
               ;; trace.  To handle all of these cases, we want to find
               ;; the _last_ stack frame printed in the most recent
-              ;; batch of output, then jump to the corrsponding
+              ;; batch of output, then jump to the corresponding
               ;; file/line number.
               (goto-char (point-max))
               (when (re-search-backward python-pdbtrack-stacktrace-info-regexp nil t)
index 3481a736648864dff2713fadc4a2fc83a5a48c95..d7541f68778628d6560cbb2051301fe30e08997b 100644 (file)
@@ -802,7 +802,7 @@ other words, it will work just like `just-one-space' command."
              (unless (= start end)
                (cons orig-pos (buffer-substring start (point)))))
        ;; If this run causes no change in buffer content, delete all spaces,
-       ;; otherwise delete all excees spaces.
+       ;; otherwise delete all excess spaces.
        (delete-region (if (and (not single-shot) (zerop n) (= mid end))
                           start mid) end)
         (insert (make-string n ?\s))))
index 64f8a0335ac71928d47df483ceb3c43fb667e266..64e989a3b3606b4b3813bb7d8ecd6617f8b739d1 100644 (file)
--- a/src/w32.c
+++ b/src/w32.c
@@ -4280,7 +4280,7 @@ fstatat (int fd, char const *name, struct stat *st, int flags)
   /* Rely on a hack: an open directory is modeled as file descriptor 0.
      This is good enough for the current usage in Emacs, but is fragile.
 
-     FIXME: Add proper support for fdopendir, fstatatat, readlinkat.
+     FIXME: Add proper support for fdopendir, fstatat, readlinkat.
      Gnulib does this and can serve as a model.  */
   char fullname[MAX_PATH];