* 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.
"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.")
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)
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)))
(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))
(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))