Do not double variables in the lambda-list.
This commit is contained in:
parent
5a1373f32a
commit
906f211e1b
3 changed files with 5 additions and 5 deletions
|
@ -520,7 +520,7 @@ See `mail-directory-stream'."
|
|||
(set-process-sentinel
|
||||
(apply 'open-network-stream "mailalias" (current-buffer)
|
||||
mail-directory-stream)
|
||||
(lambda (x x)
|
||||
(lambda (x y)
|
||||
(setq mailalias-done t)))
|
||||
(while (not mailalias-done)
|
||||
(sit-for .1))))
|
||||
|
|
|
@ -1039,11 +1039,11 @@ If the game is finished, this command requests for another game."
|
|||
(insert-char ?\n gomoku-square-height))
|
||||
(or (eq (char-after 1) ?.)
|
||||
(put-text-property 1 2 'point-entered
|
||||
(lambda (x x) (if (bobp) (forward-char)))))
|
||||
(lambda (x y) (if (bobp) (forward-char)))))
|
||||
(or intangible
|
||||
(put-text-property point (point) 'intangible 2))
|
||||
(put-text-property point (point) 'point-entered
|
||||
(lambda (x x) (if (eobp) (backward-char))))
|
||||
(lambda (x y) (if (eobp) (backward-char))))
|
||||
(put-text-property (point-min) (point) 'category 'gomoku-mode))
|
||||
(gomoku-goto-xy (/ (1+ n) 2) (/ (1+ m) 2)) ; center of the board
|
||||
(sit-for 0)) ; Display NOW
|
||||
|
|
|
@ -945,11 +945,11 @@ mouse-1: get robot moving, mouse-2: play on this square")))
|
|||
(insert-char ?\n lm-square-height))
|
||||
(or (eq (char-after 1) ?.)
|
||||
(put-text-property 1 2 'point-entered
|
||||
(lambda (x x) (if (bobp) (forward-char)))))
|
||||
(lambda (x y) (if (bobp) (forward-char)))))
|
||||
(or intangible
|
||||
(put-text-property point (point) 'intangible 2))
|
||||
(put-text-property point (point) 'point-entered
|
||||
(lambda (x x) (if (eobp) (backward-char))))
|
||||
(lambda (x y) (if (eobp) (backward-char))))
|
||||
(put-text-property (point-min) (point) 'category 'lm-mode))
|
||||
(lm-goto-xy (/ (1+ n) 2) (/ (1+ m) 2)) ; center of the board
|
||||
(sit-for 0)) ; Display NOW
|
||||
|
|
Loading…
Add table
Reference in a new issue