From d3bd3c6f07e0c9a2a7a1488e43b47439a5f8ac54 Mon Sep 17 00:00:00 2001 From: Mario Lang Date: Wed, 4 Jun 2014 22:43:13 +0200 Subject: Sync from ELPA. --- chess-autosave.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chess-autosave.el') diff --git a/chess-autosave.el b/chess-autosave.el index 2708d24..aa8661f 100644 --- a/chess-autosave.el +++ b/chess-autosave.el @@ -51,7 +51,7 @@ to the user." (chess-disable-autosave . "Disable autosaving for this game? ") (autosave-available . "There is an autosave file; type ~ after connecting to read it"))) -(defun chess-autosave-handler (game event &rest args) +(defun chess-autosave-handler (game event &rest _args) (cond ((eq event 'initialize) (kill-buffer (current-buffer)) @@ -116,7 +116,7 @@ to the user." (insert ")")) (defun chess-autosave-write (game file) - "Write a chess GAME to FILE as raw Lisp." + "Write a chess GAME to FILE as raw Lisp." ;FIXME: `file' is not used! (let ((index (chess-game-index game))) (if (or (= 1 index) (and (bobp) (eobp))) (progn @@ -136,7 +136,7 @@ to the user." (message nil))) (defun chess-autosave-read (game file) - "Read a chess game as raw Lisp from FILE." + "Read a chess game as raw Lisp from FILE." ;FIXME: `file' is not used! (goto-char (point-min)) (chess-game-set-tags game (read (current-buffer))) (let* ((plies (read (current-buffer))) -- cgit v1.2.3