From 7af6bad5e69742386747e05e749589d937bb1377 Mon Sep 17 00:00:00 2001 From: James Booth Date: Sat, 20 Jul 2013 21:02:07 +0100 Subject: Fix freetext arguments with quotes fixes #203 --- src/tools/parser.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/tools') diff --git a/src/tools/parser.c b/src/tools/parser.c index f4cfc3d2..dabf7128 100644 --- a/src/tools/parser.c +++ b/src/tools/parser.c @@ -242,15 +242,15 @@ parse_args_with_freetext(const char * const inp, int min, int max) } } } else { - if (!in_freetext && curr_uni == ' ') { + if (in_freetext) { + token_size += g_unichar_to_utf8(curr_uni, NULL); + } else if (curr_uni == ' ') { tokens = g_slist_append(tokens, g_strndup(token_start, token_size)); token_size = 0; in_token = FALSE; - } else { - if (curr_uni != '"') { - token_size += g_unichar_to_utf8(curr_uni, NULL); - } + } else if (curr_uni != '"') { + token_size += g_unichar_to_utf8(curr_uni, NULL); } } } -- cgit 1.4.1-2-gfad0 g/history.h'>log blame commit diff stats
path: root/history.h
blob: a65ac397aa9b2bb4dd715dc6c1ab17a98b96d966 (plain) (tree)
1
2
   
            




















                                                                       

                 
 
                        


                                             

      
/* 
 * history.h
 *
 * Copyright (C) 2012 James Booth <boothj5@gmail.com>
 * 
 * This file is part of Profanity.
 *
 * Profanity is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Profanity is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Profanity.  If not, see <http://www.gnu.org/licenses/>.
 *
 */


#ifndef HISTORY_H
#define HISTORY_H

void history_init(void);
void history_append(char *inp);
char *history_previous(char *inp, int *size);
char *history_next(char *inp, int *size);

#endif