emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/net/tramp.el,v


From: Chong Yidong
Subject: [Emacs-diffs] Changes to emacs/lisp/net/tramp.el,v
Date: Wed, 28 Feb 2007 01:35:20 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Chong Yidong <cyd>      07/02/28 01:35:20

Index: tramp.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/net/tramp.el,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -b -r1.120 -r1.121
--- tramp.el    12 Feb 2007 06:19:54 -0000      1.120
+++ tramp.el    28 Feb 2007 01:35:20 -0000      1.121
@@ -4348,7 +4348,12 @@
   (save-match-data
     (let* ((filename (apply 'tramp-file-name-for-operation operation args))
           (completion (tramp-completion-mode filename))
-          (foreign (tramp-find-foreign-file-name-handler filename)))
+          (foreign (tramp-find-foreign-file-name-handler filename))
+          ;; If combine-after-change-calls is t, it is possible to
+          ;; get Emacs into a confused state since the backend
+          ;; handlers can scribble to temp buffers, e.g. through
+          ;; format-spec.  So we ignore all modification hooks.
+          (inhibit-modification-hooks t))
       (with-parsed-tramp-file-name filename nil
        (cond
         ;; When we are in completion mode, some operations shouldn' be




reply via email to

[Prev in Thread] Current Thread [Next in Thread]