Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 191367
b: refs/heads/master
c: 29351db
h: refs/heads/master
i:
  191365: 2913046
  191363: 20248da
  191359: e5ddf3a
v: v3
  • Loading branch information
Arnaldo Carvalho de Melo committed May 16, 2010
1 parent 7fbee9f commit be1a30b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c1ec5fefd9cd9ccb020966a49a3c7f44b25d9e84
refs/heads/master: 29351db6a05e7e42be457569428425520a18beec
7 changes: 4 additions & 3 deletions trunk/tools/perf/util/newt.c
Original file line number Diff line number Diff line change
Expand Up @@ -837,9 +837,10 @@ int hists__browse(struct hists *self, const char *helpline, const char *input_na
if (es.reason == NEWT_EXIT_HOTKEY) {
if (toupper(es.u.key) == 'A')
goto do_annotate;
if (es.u.key == NEWT_KEY_ESCAPE ||
toupper(es.u.key) == 'Q' ||
es.u.key == CTRL('c')) {
if (toupper(es.u.key) == 'Q' ||
es.u.key == CTRL('c'))
break;
if (es.u.key == NEWT_KEY_ESCAPE) {
if (dialog_yesno("Do you really want to exit?"))
break;
else
Expand Down

0 comments on commit be1a30b

Please sign in to comment.