]> git.eshelyaron.com Git - emacs.git/commitdiff
; More instrumentation for shadowfile-tests.el and files.el
authorMichael Albinus <michael.albinus@gmx.de>
Fri, 10 Aug 2018 11:34:10 +0000 (13:34 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Fri, 10 Aug 2018 11:34:10 +0000 (13:34 +0200)
* test/lisp/shadowfile-tests.el (shadow-test06-literal-groups)
(shadow-test07-regexp-groups, shadow-test08-shadow-todo)
(shadow-test09-shadow-copy-files): Use `set-visited-file-name'
instead of setting the value in `buffer-file-name' directly.
(Bug#32226)

lisp/files.el
test/lisp/shadowfile-tests.el

index 7f193a78b3576b2f8d28878cbe1253530dc6a3fe..dac2ef75dc52ac1ecd29590e8c843eddb018bdca 100644 (file)
@@ -5091,13 +5091,16 @@ Before and after saving the buffer, this function runs
                  ;; Otherwise, write it the usual way now.
                  (let ((dir (file-name-directory
                              (expand-file-name buffer-file-name))))
+                    (if (getenv "BUG_32226") (message "BUG_32226 %s" dir))
                    (unless (file-exists-p dir)
                      (if (y-or-n-p
                           (format-message
                             "Directory `%s' does not exist; create? " dir))
                          (make-directory dir t)
                        (error "Canceled")))
+                    (if (getenv "BUG_32226") (message "BUG_32226 %s" dir))
                    (setq setmodes (basic-save-buffer-1)))))
+           (if (getenv "BUG_32226") (message "BUG_32226"))
            ;; Now we have saved the current buffer.  Let's make sure
            ;; that buffer-file-coding-system is fixed to what
            ;; actually used for saving by binding it locally.
index c549ad79a4ca446e9e85d59bb9e1a910d3e02920..f93845da61ed77e4693ece720b0d21d0051970ab 100644 (file)
@@ -724,6 +724,9 @@ guaranteed by the originator of a cluster definition."
           (dolist (elt (all-completions "shadow-" obarray 'functionp))
             (trace-function-background (intern elt)))
           (trace-function-background 'save-buffer)
+          (trace-function-background 'basic-save-buffer)
+          (trace-function-background 'basic-save-buffer-1)
+          (trace-function-background 'basic-save-buffer-2)
           (dolist (elt write-file-functions)
             (trace-function-background elt))
          ;; Cleanup.