summaryrefslogtreecommitdiff
path: root/lisp/play/gametree.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1999-01-30 07:26:04 +0000
committerRichard M. Stallman <rms@gnu.org>1999-01-30 07:26:04 +0000
commit29114287eaa54e88ca586741e974bd8525d2bc05 (patch)
treeedc115474216d1496a2465964e585d50635b7917 /lisp/play/gametree.el
parent79c48ffe93ed1b2b9ffb33654deebed864096c89 (diff)
downloademacs-29114287eaa54e88ca586741e974bd8525d2bc05.tar.gz
Fix previous change.
Diffstat (limited to 'lisp/play/gametree.el')
-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
(defcustom gametree-score-opener "{score="
"*The string which opens a score tag, and precedes the actual score."
:type 'string
- :group gametree)
+ :group 'gametree)
(defcustom gametree-score-manual-flag "!"
"*String marking the line as manually (as opposed to automatically) scored."
:type 'string
- :group gametree)
+ :group 'gametree)
(defcustom gametree-score-closer "}"
"*The string which closes a score tag, and follows the actual score."
:type 'string
- :group gametree)
+ :group 'gametree)
(defcustom gametree-score-regexp
(concat "[^\n\^M]*\\("
@@ -170,12 +170,12 @@ prevents the program from recursively applying the scoring algorithm
on the subtree headed by the marked line, and makes it use the manual
score instead."
:type 'regexp
- :group gametree)
+ :group 'gametree)
(defcustom gametree-default-score 0
"*Score to assume for branches lacking score tags."
:type 'integer
- :group gametree)
+ :group 'gametree)
;;;; Helper functions