calling file-remote-p. Reported by Jim Meyering.
+2009-12-15 Chong Yidong <cyd@stupidchicken.com>
+
+ * xdisp.c (decode_mode_spec): Inhibit garbage collection when
+ calling file-remote-p. Reported by Jim Meyering.
+
2009-12-15 Michael Albinus <michael.albinus@gmx.de>
* dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
case '@':
{
Lisp_Object val;
+ int count = inhibit_garbage_collection ();
val = call1 (intern ("file-remote-p"), current_buffer->directory);
+ unbind_to (count, Qnil);
+
if (NILP (val))
return "-";
else