Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
12cd6dfb
Commit
12cd6dfb
authored
Jul 14, 2004
by
Luc Teirlinck
Browse files
(tramp-handle-verify-visited-file-modtime): `visited-file-modtime' now
returns a list of two integers, instead of a cons.
parent
ca02a726
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
lisp/net/tramp.el
lisp/net/tramp.el
+8
-1
No files found.
lisp/net/tramp.el
View file @
12cd6dfb
...
...
@@ -2343,7 +2343,14 @@ If it doesn't exist, generate a new one."
;; (HIGH . LOW)?
(
let
((
mt
(
visited-file-modtime
)))
(
<
(
abs
(
tramp-time-diff
modtime
(
list
(
car
mt
)
(
cdr
mt
))))
2
)))
modtime
;; For compatibility, deal with both the old
;; (HIGH . LOW) and the new (HIGH LOW)
;; return values of `visited-file-modtime'.
(
if
(
atom
(
cdr
mt
))
(
list
(
car
mt
)
(
cdr
mt
))
mt
)))
2
)))
(
attr
(
save-excursion
(
tramp-send-command
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment