Added comments to commandline in rigctl (second time) --Dale

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1068 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.4
Dale E. Edmons, KD7ENI 2002-06-26 20:44:37 +00:00
rodzic 51f3497fbf
commit 2e320789a8
1 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

@ -5,7 +5,7 @@
* It takes commands in interactive mode as well as * It takes commands in interactive mode as well as
* from command line options. * from command line options.
* *
* $Id: rigctl.c,v 1.29 2002-04-23 22:04:19 fillods Exp $ * $Id: rigctl.c,v 1.30 2002-06-26 20:44:37 dedmons Exp $
* *
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
@ -439,6 +439,12 @@ int main (int argc, char *argv[])
last_was_ret = 0; last_was_ret = 0;
if (cmd == '#' || cmd == ';') {
while( cmd != '\n' && cmd != '\r')
scanf("%c", &cmd);
continue;
}
if (cmd == 'Q' || cmd == 'q') if (cmd == 'Q' || cmd == 'q')
break; break;
if (cmd == '?') { if (cmd == '?') {