Author: alexl
Date: Mon Jan 28 10:36:09 2008
New Revision: 13656
URL: http://svn.gnome.org/viewvc/nautilus?rev=13656&view=rev
Log:
2008-01-28 Alexander Larsson <[EMAIL PROTECTED]>
* libnautilus-private/nautilus-metafile.c:
(escape_slashes):
Escape slashes in the same way as old versions,
fixing loss of metadata customization.
Patch from Rached Ben Mustapha (#511592)
Modified:
trunk/ChangeLog
trunk/libnautilus-private/nautilus-metafile.c
Modified: trunk/libnautilus-private/nautilus-metafile.c
==============================================================================
--- trunk/libnautilus-private/nautilus-metafile.c (original)
+++ trunk/libnautilus-private/nautilus-metafile.c Mon Jan 28 10:36:09 2008
@@ -202,7 +202,7 @@
} else if (*p == '/') {
*e++ = '%';
*e++ = '2';
- *e++ = 'f';
+ *e++ = 'F';
} else {
*e++ = *p;
}
_______________________________________________
SVN-commits-list mailing list (read only)
http://mail.gnome.org/mailman/listinfo/svn-commits-list
Want to limit the commits to a few modules? Go to above URL, log in to edit
your options and select the modules ('topics') you want.
Module maintainer? It is possible to set the reply-to to your development
mailing list. Email [EMAIL PROTECTED] if interested.