aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1999-01-30 07:26:04 +0000
committerRichard M. Stallman1999-01-30 07:26:04 +0000
commit29114287eaa54e88ca586741e974bd8525d2bc05 (patch)
treeedc115474216d1496a2465964e585d50635b7917
parent79c48ffe93ed1b2b9ffb33654deebed864096c89 (diff)
downloademacs-29114287eaa54e88ca586741e974bd8525d2bc05.tar.gz
emacs-29114287eaa54e88ca586741e974bd8525d2bc05.zip
Fix previous change.
-rw-r--r--lisp/play/gametree.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/play/gametree.el b/lisp/play/gametree.el
index 44c08f15741..a7d961cb90a 100644
--- a/lisp/play/gametree.el
+++ b/lisp/play/gametree.el
@@ -141,17 +141,17 @@ the file is visited (subject to the usual restriction via
141(defcustom gametree-score-opener "{score=" 141(defcustom gametree-score-opener "{score="
142 "*The string which opens a score tag, and precedes the actual score." 142 "*The string which opens a score tag, and precedes the actual score."
143 :type 'string 143 :type 'string
144 :group gametree) 144 :group 'gametree)
145 145
146(defcustom gametree-score-manual-flag "!" 146(defcustom gametree-score-manual-flag "!"
147 "*String marking the line as manually (as opposed to automatically) scored." 147 "*String marking the line as manually (as opposed to automatically) scored."
148 :type 'string 148 :type 'string
149 :group gametree) 149 :group 'gametree)
150 150
151(defcustom gametree-score-closer "}" 151(defcustom gametree-score-closer "}"
152 "*The string which closes a score tag, and follows the actual score." 152 "*The string which closes a score tag, and follows the actual score."
153 :type 'string 153 :type 'string
154 :group gametree) 154 :group 'gametree)
155 155
156(defcustom gametree-score-regexp 156(defcustom gametree-score-regexp
157 (concat "[^\n\^M]*\\(" 157 (concat "[^\n\^M]*\\("
@@ -170,12 +170,12 @@ prevents the program from recursively applying the scoring algorithm
170on the subtree headed by the marked line, and makes it use the manual 170on the subtree headed by the marked line, and makes it use the manual
171score instead." 171score instead."
172 :type 'regexp 172 :type 'regexp
173 :group gametree) 173 :group 'gametree)
174 174
175(defcustom gametree-default-score 0 175(defcustom gametree-default-score 0
176 "*Score to assume for branches lacking score tags." 176 "*Score to assume for branches lacking score tags."
177 :type 'integer 177 :type 'integer
178 :group gametree) 178 :group 'gametree)
179 179
180;;;; Helper functions 180;;;; Helper functions
181 181