]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge from origin/emacs-27
authorGlenn Morris <rgm@gnu.org>
Fri, 2 Oct 2020 16:33:53 +0000 (09:33 -0700)
committerGlenn Morris <rgm@gnu.org>
Fri, 2 Oct 2020 16:33:53 +0000 (09:33 -0700)
2af6b3147d Clarification in Tramp manual
8fbaca7d41 Check Emacs version used for Tramp compilation
90e5549f02 Don't signal an error when saving files on WdebDAV volumes
6f73cc3579 ; * lisp/net/eww.el (eww-search-words): Doc fix.
ce0842a165 * lisp/hi-lock.el (hi-lock-find-patterns): Autoload it.  (...

1  2 
doc/misc/tramp.texi
lisp/hi-lock.el
lisp/net/eww.el
lisp/net/tramp-compat.el
src/w32.c

Simple merge
diff --cc lisp/hi-lock.el
Simple merge
diff --cc lisp/net/eww.el
Simple merge
index 218594b551cc9faaa9093a143e1fc8b4af7f6469,b7a7cc4f00362d1f1bbdd1e35bf84fdde0e87b56..c554a8d0c2d766fd2a4675203f2c90092141fe77
  
  ;; `temporary-file-directory' as function is introduced with Emacs 26.1.
  (declare-function tramp-handle-temporary-file-directory "tramp")
 +(defvar tramp-temp-name-prefix)
  
+ (defconst tramp-compat-emacs-compiled-version (eval-when-compile emacs-version)
+   "The Emacs version used for compilation.")
+ (unless (= emacs-major-version
+          (car (version-to-list tramp-compat-emacs-compiled-version)))
+   (warn "Tramp has been compiled with Emacs %s, this is Emacs %s"
+       tramp-compat-emacs-compiled-version emacs-version))
  ;; For not existing functions, obsolete functions, or functions with a
  ;; changed argument list, there are compiler warnings.  We want to
  ;; avoid them in cases we know what we do.
diff --cc src/w32.c
Simple merge