comparison mcabber/src/settings.c @ 1187:16abe7ec3056

Fix a conflict between verbatim multiline mode and the key binding system
author Mikael Berthe <mikael@lilotux.net>
date Fri, 20 Apr 2007 17:14:38 +0200
parents 5be2408a6534
children 7b8765c10abb
comparison
equal deleted inserted replaced
1186:0158bd8ca9d6 1187:16abe7ec3056
145 continue; 145 continue;
146 } 146 }
147 // Set the leading COMMAND_CHAR to build a command line 147 // Set the leading COMMAND_CHAR to build a command line
148 // and process the command 148 // and process the command
149 *(--line) = COMMAND_CHAR; 149 *(--line) = COMMAND_CHAR;
150 process_command(line); 150 process_command(line, TRUE);
151 } else { 151 } else {
152 scr_LogPrint(LPRINT_LOGNORM, 152 scr_LogPrint(LPRINT_LOGNORM,
153 "Error in configuration file (l. %d): no assignment", ln); 153 "Error in configuration file (l. %d): no assignment", ln);
154 err++; 154 err++;
155 } 155 }