Cosmetics.
[selector.git] / selector.cc
index 42c36a3..9c669f7 100644 (file)
@@ -497,13 +497,13 @@ int main(int argc, char **argv) {
          << "Usage: " << argv[0] << " [options] -f <file>" << endl
          << endl
          << " -h      show this help" << endl
-         << " -v      inject the selection in the tty" << endl
-         << " -m      monochrome mode" << endl
+         << " -v      inject the selected line in the tty" << endl
          << " -d      remove duplicated lines" << endl
-         << " -e      regexp mode when starting" << endl
          << " -b      remove the bash history line prefix" << endl
          << " -z      remove the zsh history line prefix" << endl
-         << " -i      invert the line order" << endl
+         << " -i      invert the order of lines" << endl
+         << " -e      start in regexp mode" << endl
+         << " -m      monochrome mode" << endl
          << " -c <fg modeline> <bg modeline> <fg highlight> <bg highlight>" << endl
          << "         set the display colors" << endl
          << " -o <output filename>" << endl
@@ -544,7 +544,7 @@ int main(int argc, char **argv) {
 
     file.getline(raw_line, buffer_size);
 
-    if(strcmp(raw_line, "") != 0) {
+    if(raw_line[0]) {
 
       char *s, *t;
       const char *u;