diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2010-02-01 15:18:53 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2010-02-01 15:18:53 -0500 |
commit | 49d8c5b821743355fa60b30e1b2b456c44aaa221 (patch) | |
tree | 6adc55ef91f25bbe01b2717ad5e91c280282f444 | |
parent | 4a1518cebafc1858393844eb348da963c9c6a3e5 (diff) |
setup automator: Configure Term::Readline to use bold for prompt, rather than default underline. Closes: #517656
-rw-r--r-- | IkiWiki/Setup/Automator.pm | 1 | ||||
-rw-r--r-- | debian/changelog | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/IkiWiki/Setup/Automator.pm b/IkiWiki/Setup/Automator.pm index 7af93e73c..9fee4dcb7 100644 --- a/IkiWiki/Setup/Automator.pm +++ b/IkiWiki/Setup/Automator.pm @@ -15,6 +15,7 @@ sub ask ($$) { my ($question, $default)=@_; my $r=Term::ReadLine->new("ikiwiki"); + $r->ornaments("md,me"); $r->readline(encode_utf8($question)." ", $default); } diff --git a/debian/changelog b/debian/changelog index 5d27b7af0..8e01950a8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ ikiwiki (3.20100123) UNRELEASED; urgency=low * template: Preprocess parameters before htmlizing. * img: Fix a bug that could taint @links with undef values. + * setup automator: Configure Term::Readline to use bold for prompt, rather + than default underline. Closes: #517656 -- Joey Hess <joeyh@debian.org> Tue, 26 Jan 2010 22:25:33 -0500 |