projects
/
selector.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c885f72
)
Renamed the 'enter' variable to 'done'.
author
Francois Fleuret
<francois@fleuret.org>
Thu, 16 Dec 2010 08:54:18 +0000
(09:54 +0100)
committer
Francois Fleuret
<francois@fleuret.org>
Thu, 16 Dec 2010 08:54:18 +0000
(09:54 +0100)
selector.c
patch
|
blob
|
history
diff --git
a/selector.c
b/selector.c
index
9d39371
..
0a8cf24
100644
(file)
--- a/
selector.c
+++ b/
selector.c
@@
-853,7
+853,7
@@
int main(int argc, char **argv) {
char pattern[BUFFER_SIZE];
int c, k, l, n;
int cursor_position;
- int error = 0, show_help = 0,
enter
= 0;
+ int error = 0, show_help = 0,
done
= 0;
int rest_are_files = 0;
int key;
int current_focus_line, displayed_focus_line;
@@
-1210,7
+1210,7
@@
int main(int argc, char **argv) {
key == '\033' || /* ^[ (escape) */
key == '\n' ||
key == KEY_ENTER) {
-
enter
= 1;
+
done
= 1;
}
else {
@@
-1222,7
+1222,7
@@
int main(int argc, char **argv) {
motion,
nb_lines, labels, cursor_position, pattern);
- } while(!
enter
);
+ } while(!
done
);
echo();
endwin();