# HG changeset patch # User Glenn Morris # Date 1214533787 0 # Node ID 25423ee77a1052c2b87bb2963155bd249ac514af # Parent f6d8a606702091f3aea453221c6e636c9efa6994 American English spelling fix. diff -r f6d8a6067020 -r 25423ee77a10 lisp/ChangeLog.13 --- a/lisp/ChangeLog.13 Fri Jun 27 02:27:38 2008 +0000 +++ b/lisp/ChangeLog.13 Fri Jun 27 02:29:47 2008 +0000 @@ -11224,7 +11224,7 @@ (server-execute, server-return-error): New functions extracted from server-process-filter. (server-execute-continuation): New functions. - (server-process-filter): Restructure so that all arguments are analysed + (server-process-filter): Restructure so that all arguments are analyzed first and then acted upon in a subsequent stage. This way server-goto-toplevel can be executed later, when we know if it's necessary. diff -r f6d8a6067020 -r 25423ee77a10 lisp/org/org-table.el --- a/lisp/org/org-table.el Fri Jun 27 02:27:38 2008 +0000 +++ b/lisp/org/org-table.el Fri Jun 27 02:29:47 2008 +0000 @@ -1864,7 +1864,7 @@ (string-match "^[a-zA-Z][a-zA-Z0-9]*$" field)) (push (cons field v) org-table-local-parameters) (push (list field line col) org-table-named-field-locations)))) - ;; Analyse the line types + ;; Analyze the line types (goto-char beg) (setq org-table-current-begin-line (org-current-line) org-table-current-begin-pos (point) diff -r f6d8a6067020 -r 25423ee77a10 lisp/progmodes/cc-awk.el --- a/lisp/progmodes/cc-awk.el Fri Jun 27 02:27:38 2008 +0000 +++ b/lisp/progmodes/cc-awk.el Fri Jun 27 02:29:47 2008 +0000 @@ -28,7 +28,7 @@ ;; integration of AWK Mode. ;; It is organised thusly, the sections being separated by page breaks: ;; 1. The AWK Mode syntax table. -;; 2. Regular expressions for analysing AWK code. +;; 2. Regular expressions for analyzing AWK code. ;; 3. Indentation calculation stuff ("c-awk-NL-prop text-property"). ;; 4. Syntax-table property/font-locking stuff, including the ;; font-lock-keywords setting. @@ -710,7 +710,7 @@ ;; ;; ANCHOR-STATE-/DIV identifies whether a / at ANCHOR would have been a ;; division sign (value t) or a regexp opener (value nil). The idea is that - ;; we analyse the line from ANCHOR up till point to determine what the / at + ;; we analyze the line from ANCHOR up till point to determine what the / at ;; point is. ;; ;; The result is what ANCHOR-STATE-/DIV (see above) is where point is left.