Skip to content

Commit

Permalink
Don't overquote special chars except of '. See bug 502500. Thanks to Tom
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Nickolay V. Shmyrev authored and Nickolay V. Shmyrev committed Jan 13, 2008
1 parent fd8c8dd commit fc8549b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 2 additions & 0 deletions backend/comics/comics-document.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ comics_regex_quote (const char *s)
case ']':
case '*':
case '\\':
*d++ = '\\';
break;
case '\'':
*d++ = '\'';
*d++ = '\\';
Expand Down

0 comments on commit fc8549b

Please sign in to comment.