]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
perf annotate: Handle lower case key code in annotate_browser__run()
authorNamhyung Kim <namhyung.kim@lge.com>
Thu, 23 Feb 2012 08:46:21 +0000 (17:46 +0900)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 5 Mar 2012 13:15:50 +0000 (10:15 -0300)
Accepting upper case character only is unconvenient since it requires
SHIFT key too. Why not change to it accept a simple key stroke?

Cc: Ingo Molnar <mingo@elte.hu>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1329986784-4916-3-git-send-email-namhyung.kim@lge.com
Signed-off-by: Namhyung Kim <namhyung.kim@lge.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/ui/browsers/annotate.c

index 76caae95df390de2503814ab8a3998c125219e6f..374d3bc570b23bb5c871dcf650e3eee99cb116a1 100644 (file)
@@ -287,9 +287,11 @@ static int annotate_browser__run(struct annotate_browser *self, int evidx,
                                nd = self->curr_hot;
                        break;
                case 'H':
+               case 'h':
                        nd = self->curr_hot;
                        break;
                case 'S':
+               case 's':
                        if (annotate_browser__toggle_source(self))
                                ui_helpline__puts(help);
                        continue;