Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/chess/files: 51chess-gentoo.el
Date: Mon, 24 Sep 2007 19:14:54
Message-Id: E1IZtGN-0002X2-AP@stork.gentoo.org
1 ulm 07/09/24 19:06:35
2
3 Modified: 51chess-gentoo.el
4 Log:
5 Additional autoload definitions for site-init file.
6 (Portage version: 2.1.3.9)
7
8 Revision Changes Path
9 1.2 app-emacs/chess/files/51chess-gentoo.el
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/chess/files/51chess-gentoo.el?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/chess/files/51chess-gentoo.el?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/chess/files/51chess-gentoo.el?r1=1.1&r2=1.2
14
15 Index: 51chess-gentoo.el
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-emacs/chess/files/51chess-gentoo.el,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- 51chess-gentoo.el 27 Feb 2007 12:39:35 -0000 1.1
22 +++ 51chess-gentoo.el 24 Sep 2007 19:06:34 -0000 1.2
23 @@ -2,14 +2,31 @@
24 ;;; chess site-lisp configuration
25
26 (add-to-list 'load-path "@SITELISP@")
27 -(autoload 'chess "chess" "Play a game of chess" t)
28 +
29 +(autoload 'chess "chess"
30 + "Start a game of chess, playing against ENGINE (a module name)." t)
31 +(autoload 'chess-link "chess-link"
32 + "Play out a game between two engines, and watch the progress." t)
33 +(autoload 'chess-pgn-read "chess-pgn"
34 + "Read and display a PGN game after point." t)
35 +(autoload 'chess-pgn-mode "chess-pgn"
36 + "A mode for editing chess PGN files." t)
37 +(defalias 'pgn-mode 'chess-pgn-mode)
38 +(autoload 'chess-puzzle "chess-puzzle"
39 + "Pick a random puzzle from FILE, and solve it against the default engine." t)
40 +(autoload 'chess-tutorial "chess-tutorial"
41 + "A simple chess training display." t)
42 +(autoload 'chess-ics "chess-ics"
43 + "Connect to an Internet Chess Server." t)
44 +
45 +(add-to-list 'auto-mode-alist '("\\.pgn\\'" . chess-pgn-mode))
46
47 (custom-set-variables
48 '(chess-images-directory "/usr/share/pixmaps/chess/xboard")
49 '(chess-sound-directory "/usr/share/sounds/chess"))
50
51 -;; Change the engine preference order -- gnuchess is a dependency (we
52 -;; depend on app-games/gnuchess explicitly). We make crafty and
53 +;; Change the engine preference order -- gnuchess is a dependency
54 +;; (we depend on app-games/gnuchess explicitly). We make crafty and
55 ;; phalanx optional. The user can override this anytime using M-x
56 ;; customize-group RET chess RET
57
58
59
60
61 --
62 gentoo-commits@g.o mailing list