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
e1789695
Commit
e1789695
authored
Nov 10, 1999
by
Gerd Moellmann
Browse files
(file-local-copy): Remove optional BUFFER argument
because that's not used by anything.
parent
765712a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/files.el
lisp/files.el
+3
-1
No files found.
lisp/ChangeLog
View file @
e1789695
1999-11-10 Gerd Moellmann <gerd@gnu.org>
* files.el (file-local-copy): Remove optional BUFFER argument
because that's not used by anything.
* mail/mh-comp.el (mh-smail-batch): If TO is nil, use "" as
to-address.
...
...
lisp/files.el
View file @
e1789695
...
...
@@ -501,10 +501,12 @@ This is an interface to the function `load'."
(
interactive
"sLoad library: "
)
(
load
library
))
(
defun
file-local-copy
(
file
&optional
buffer
)
(
defun
file-local-copy
(
file
)
"Copy the file FILE into a temporary file on this machine.
Returns the name of the local copy, or nil, if FILE is directly
accessible."
;; This formerly had an optional BUFFER argument that wasn't used by
;; anything.
(
let
((
handler
(
find-file-name-handler
file
'file-local-copy
)))
(
if
handler
(
funcall
handler
'file-local-copy
file
)
...
...
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