comparison lisp/play/5x5.el @ 104848:1382a0cd8022

Remove leading * from defcustom and defface docs.
author Glenn Morris <rgm@gnu.org>
date Fri, 04 Sep 2009 06:58:59 +0000
parents c6ae8d43800c
children bd2966850aac
comparison
equal deleted inserted replaced
104847:7c8f37f3e00d 104848:1382a0cd8022
1 ;;; 5x5.el --- simple little puzzle game 1 ;;; 5x5.el --- simple little puzzle game
2 2
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. 4 ;; 2008, 2009 Free Software Foundation, Inc.
5 5
6 ;; Author: Dave Pearson <davep@davep.org> 6 ;; Author: Dave Pearson <davep@davep.org>
7 ;; Maintainer: Dave Pearson <davep@davep.org> 7 ;; Maintainer: Dave Pearson <davep@davep.org>
8 ;; Created: 1998-10-03 8 ;; Created: 1998-10-03
9 ;; Keywords: games puzzles 9 ;; Keywords: games puzzles
57 "5x5 - Silly little puzzle game." 57 "5x5 - Silly little puzzle game."
58 :group 'games 58 :group 'games
59 :prefix "5x5-") 59 :prefix "5x5-")
60 60
61 (defcustom 5x5-grid-size 5 61 (defcustom 5x5-grid-size 5
62 "*Size of the playing area." 62 "Size of the playing area."
63 :type 'integer 63 :type 'integer
64 :group '5x5) 64 :group '5x5)
65 65
66 (defcustom 5x5-x-scale 4 66 (defcustom 5x5-x-scale 4
67 "*X scaling factor for drawing the grid." 67 "X scaling factor for drawing the grid."
68 :type 'integer 68 :type 'integer
69 :group '5x5) 69 :group '5x5)
70 70
71 (defcustom 5x5-y-scale 3 71 (defcustom 5x5-y-scale 3
72 "*Y scaling factor for drawing the grid." 72 "Y scaling factor for drawing the grid."
73 :type 'integer 73 :type 'integer
74 :group '5x5) 74 :group '5x5)
75 75
76 (defcustom 5x5-animate-delay .01 76 (defcustom 5x5-animate-delay .01
77 "*Delay in seconds when animating a solution crack." 77 "Delay in seconds when animating a solution crack."
78 :type 'number 78 :type 'number
79 :group '5x5) 79 :group '5x5)
80 80
81 (defcustom 5x5-hassle-me t 81 (defcustom 5x5-hassle-me t
82 "*Should 5x5 ask you when you want to do a destructive operation?" 82 "Should 5x5 ask you when you want to do a destructive operation?"
83 :type 'boolean 83 :type 'boolean
84 :group '5x5) 84 :group '5x5)
85 85
86 (defcustom 5x5-mode-hook nil 86 (defcustom 5x5-mode-hook nil
87 "*Hook run on starting 5x5." 87 "Hook run on starting 5x5."
88 :type 'hook 88 :type 'hook
89 :group '5x5) 89 :group '5x5)
90 90
91 ;; Non-customize variables. 91 ;; Non-customize variables.
92 92