]> git.eshelyaron.com Git - emacs.git/commitdiff
Do not double variables in the lambda-list.
authorPavel Janík <Pavel@Janik.cz>
Sat, 13 Oct 2001 08:10:30 +0000 (08:10 +0000)
committerPavel Janík <Pavel@Janik.cz>
Sat, 13 Oct 2001 08:10:30 +0000 (08:10 +0000)
lisp/mail/mailalias.el
lisp/play/gomoku.el
lisp/play/landmark.el

index 2f120394f2dcece4aa11d0096a60927f8ed5400a..caef6bd670d0d24cc1243b43f28c9a19b91379fa 100644 (file)
@@ -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))))
index d360b1d8a4ba9ff37cb7b7d18a6fbc83213019c7..f08d934459a992f57582c513c51ed18d3cf1e8f1 100644 (file)
@@ -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
index 1680a4fec880c213dcc583feae13b9aa8959554c..33acb70b0ee8256920e74a905fd8e49fc93c1ff2 100644 (file)
@@ -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