]> git.eshelyaron.com Git - emacs.git/commitdiff
American English spelling fixes.
authorGlenn Morris <rgm@gnu.org>
Tue, 1 Jul 2008 03:05:49 +0000 (03:05 +0000)
committerGlenn Morris <rgm@gnu.org>
Tue, 1 Jul 2008 03:05:49 +0000 (03:05 +0000)
lib-src/ChangeLog
lisp/play/bubbles.el

index ae247d96cfe14a3472a06ba6e7c77fc6ba0e46fd..854b01a0c1df0f223547ea9ee9d60db47c4b8a59 100644 (file)
 
        * etags.c (readline): When creating a relative file name from a
        #line directive, leave the file name alone.  The previous
-       behaviour was to make it relative to the tags file directory,
+       behavior was to make it relative to the tags file directory,
        under the hypothesis that the #line directive file name was
        relative to the directory of the tagged file.  That hypothesis is
        wrong with Cpp and Lex.
 2002-03-05  Francesco Potortì  <pot@gnu.org>
 
        * etags.c: Honour #line directives.
-       (no_line_directive): New global var; set it for old behaviour.
+       (no_line_directive): New global var; set it for old behavior.
        (main): Remove some #ifdef in the getopt switch.
        (add_node, put_entries): Code added to merge different chunks of
        nodes referring to the same file.  Currently the tags are just
 
        * etags.c (sym_type): New st_C_extern tag.
        (gperf input): Use it for spotting external declarations.
-       (print_help): Document the new behaviour of --declarations.
+       (print_help): Document the new behavior of --declarations.
        (fvextern): New global variable.
        (consider_token, C_entries): Use it.
 
index 80aaf6b4a7e0b8f6fe2538cc04534ecf876f64e1..290a43c0a7ef62cafbbe58117d8016a3dd0fc05e 100644 (file)
@@ -233,7 +233,7 @@ Available modes are `shift-default' and`shift-always'."
   "Current Bubbles score.")
 
 (defvar bubbles--neighbourhood-score 0
-  "Score of active bubbles neighbourhood.")
+  "Score of active bubbles neighborhood.")
 
 (defvar bubbles--faces nil
   "List of currently used faces.")
@@ -1083,7 +1083,7 @@ Set `bubbles--col-offset' and `bubbles--row-offset'."
       nil)))
 
 (defun bubbles--mark-direct-neighbours (row col char)
-  "Mark direct neighbours of bubble at ROW COL with same CHAR."
+  "Mark direct neighbors of bubble at ROW COL with same CHAR."
   (save-excursion
     (let ((count 0))
       (when (and (bubbles--goto row col)
@@ -1099,7 +1099,7 @@ Set `bubbles--col-offset' and `bubbles--row-offset'."
       count)))
 
 (defun bubbles--mark-neighbourhood (&optional pos)
-  "Mark neighbourhood of point.
+  "Mark neighborhood of point.
 Use optional parameter POS instead of point if given."
   (when bubbles--playing
     (unless pos (setq pos (point)))
@@ -1124,7 +1124,7 @@ Use optional parameter POS instead of point if given."
       (error (message "Bubbles: Internal error %s" err)))))
 
 (defun bubbles--neighbourhood-available ()
-  "Return t if another valid neighbourhood is available."
+  "Return t if another valid neighborhood is available."
   (catch 'found
     (save-excursion
       (dotimes (i (bubbles--grid-height))
@@ -1159,7 +1159,7 @@ Use optional parameter POS instead of point if given."
   (bubbles--show-scores))
 
 (defun bubbles--update-neighbourhood-score (size)
-  "Calculate and display score of active neighbourhood from its SIZE."
+  "Calculate and display score of active neighborhood from its SIZE."
   (if (> size 1)
       (setq bubbles--neighbourhood-score (expt (- size 1) 2))
     (setq bubbles--neighbourhood-score 0))