1
0
mirror of https://gitlab.gnome.org/GNOME/evince synced 2024-07-05 00:59:07 +00:00

Don't overquote special chars except of '. See bug 502500. Thanks to Tom

2008-01-13  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>

	* backend/comics/comics-document.c: (comics_regex_quote):
	
	Don't overquote special chars except of '. See bug 
	502500. Thanks to Tom Parker.


svn path=/trunk/; revision=2822
This commit is contained in:
Nickolay V. Shmyrev 2008-01-13 14:59:32 +00:00 committed by Nickolay V. Shmyrev
parent fd8c8ddd69
commit fc8549bb2e
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2008-01-13 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
* backend/comics/comics-document.c: (comics_regex_quote):
Don't overquote special chars except of '. See bug
502500. Thanks to Tom Parker.
2008-01-13 Wouter Bolsterlee <wbolster@svn.gnome.org>
* MAINTAINERS:

View File

@ -85,6 +85,8 @@ comics_regex_quote (const char *s)
case ']':
case '*':
case '\\':
*d++ = '\\';
break;
case '\'':
*d++ = '\'';
*d++ = '\\';