Cosmetics.
authorFrancois Fleuret <francois@fleuret.org>
Tue, 26 May 2009 07:20:42 +0000 (09:20 +0200)
committerFrancois Fleuret <francois@fleuret.org>
Tue, 26 May 2009 07:20:42 +0000 (09:20 +0200)
selector.cc

index fbd2d3d..a3d54dd 100644 (file)
@@ -70,10 +70,11 @@ void inject_into_tty_buffer(char *string) {
   memset(&newtio, 0, sizeof(newtio));
   // Set input mode (non-canonical, *no echo*,...)
   tcsetattr(STDIN_FILENO, TCSANOW, &newtio);
-  // Put the selected string in the tty input buffer
   char control_q = '\021';
+  // Put the selected string in the tty input buffer
   for(char *k = string; *k; k++) {
     if(add_control_qs) {
+      // Add ^Q to quote control characters
       ioctl(STDIN_FILENO, TIOCSTI, &control_q);
     }
     ioctl(STDIN_FILENO, TIOCSTI, k);