diff options
| author | Chong Yidong | 2009-12-15 22:53:39 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-12-15 22:53:39 +0000 |
| commit | 7eeb56addbec7cd5dd9226b5a7f4710f7e8c39b1 (patch) | |
| tree | ced7a991e52b37dabb405eb1a0f300075cf6aca4 /src | |
| parent | f7ab099735f4e3224bbba7078da2f180715ae069 (diff) | |
| download | emacs-7eeb56addbec7cd5dd9226b5a7f4710f7e8c39b1.tar.gz emacs-7eeb56addbec7cd5dd9226b5a7f4710f7e8c39b1.zip | |
Minor tweak to last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 23c5e2d0f4c..435f5dc5334 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -18629,9 +18629,9 @@ decode_mode_spec (w, c, field_width, precision, multibyte) | |||
| 18629 | 18629 | ||
| 18630 | case '@': | 18630 | case '@': |
| 18631 | { | 18631 | { |
| 18632 | Lisp_Object val; | ||
| 18633 | int count = inhibit_garbage_collection (); | 18632 | int count = inhibit_garbage_collection (); |
| 18634 | val = call1 (intern ("file-remote-p"), current_buffer->directory); | 18633 | Lisp_Object val = call1 (intern ("file-remote-p"), |
| 18634 | current_buffer->directory); | ||
| 18635 | unbind_to (count, Qnil); | 18635 | unbind_to (count, Qnil); |
| 18636 | 18636 | ||
| 18637 | if (NILP (val)) | 18637 | if (NILP (val)) |