1
1

* user.c (expand_format): Preserve "%" if followed by a

characted without special meaning.
Этот коммит содержится в:
Pavel Roskin 2003-11-19 22:56:07 +00:00
родитель 7a483be21e
Коммит 474fc58d94
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2003-11-19 Pavel Roskin <proski@gnu.org>
* user.c (expand_format): Preserve "%" if followed by a
characted without special meaning.
2003-11-14 Andrew V. Samoilov <sav@bcs.zp.ua>
* glibcompat.h: Define g_try_realloc as realloc for glib 1.2.x.

Просмотреть файл

@ -265,7 +265,7 @@ expand_format (struct WEdit *edit_widget, char c, int quote)
return block;
} /* sub case block */
} /* switch */
return g_strdup ("");
return g_strdup ("%");
}
/*