diff options
author | Karl Berry <karl@freefriends.org> | 2007-11-05 19:47:15 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2007-11-05 19:47:15 +0000 |
commit | 0b5929201349bb5a8ef9c2bc7d42a2aabdd475aa (patch) | |
tree | cb0a384f1c09ed7831647bc40eca8eed95cc7b18 /Master/common.sh | |
parent | f6fe5d8afb20c5e4ee8284c9b891279fe0b044af (diff) |
(menu_schemes): make collections list more
obvious, maybe.
git-svn-id: svn://tug.org/texlive/trunk@5359 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/common.sh')
-rwxr-xr-x | Master/common.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Master/common.sh b/Master/common.sh index 850276fe744..1d5a088b7c8 100755 --- a/Master/common.sh +++ b/Master/common.sh @@ -632,9 +632,11 @@ menu_schemes() K=`getopt ABCDEFGHIJKLMNOPQRSTUVWXYZ ' or press key to select a scheme'` case $K in Q) exit_on_confirm;; - R) total_stat; return ;; - S) echo "Collections: $selected_collections" \ - | sed 's/tex_//g' | fmt;; + R) total_stat; return;; + S) echo + echo "Collections: $selected_collections" | sed 's/tex_//g' | fmt + echo + ;; *) eval W=\"\$SCHEMES_${K}\" selected_scheme=$W scheme_select $W |