GNOME Bugzilla – Bug 569339
abbreviation are not expanded at the start of text
Last modified: 2009-01-28 12:13:58 UTC
If you say, for instance @see_also: #Foo, #Bar the first abbreviation is not expanded to a type link. This is because the regular expression matching abbreviations was changed to require a non-backslash character before the @, % or # symbol.
Created attachment 127329 [details] [review] proposed patch I tried to use (?<!pattern) negative look-behind assertion to catch the backslash but I got some strange perl warnings, so this fixes it the hard way.
2009-01-28 Stefan Kost <ensonic@users.sf.net> patch by: David Nečas <yeti@physics.muni.cz> * gtkdoc-mkdb.in: * tests/gobject/src/giface.c: * tests/gobject/src/gobject.c: Abbreviation where not expanded at the start of text. Fixes #569339.