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
49ace7fb
Commit
49ace7fb
authored
Nov 06, 2008
by
Glenn Morris
Browse files
(org-publish-attachment): Use copy-file rather than eshell/cp.
parent
3876cf5d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
lisp/org/ChangeLog
lisp/org/ChangeLog
+2
-1
lisp/org/org-publish.el
lisp/org/org-publish.el
+1
-3
No files found.
lisp/org/ChangeLog
View file @
49ace7fb
2008-11-06 Glenn Morris <rgm@gnu.org>
* org-publish.el (eshell/cp): Autoload it rather than requiring things.
* org-publish.el (org-publish-attachment): Use copy-file rather than
eshell/cp.
2008-11-04 Juanma Barranquero <lekktu@gmail.com>
...
...
lisp/org/org-publish.el
View file @
49ace7fb
...
...
@@ -526,14 +526,12 @@ See `org-publish-org-to' to the list of arguments."
See `org-publish-org-to' to the list of arguments."
(
org-publish-org-to
"html"
plist
filename
pub-dir
))
(
autoload
'eshell/cp
"em-unix"
)
; why the eshell version?
(
defun
org-publish-attachment
(
plist
filename
pub-dir
)
"Publish a file with no transformation of any kind.
See `org-publish-org-to' to the list of arguments."
(
unless
(
file-directory-p
pub-dir
)
(
make-directory
pub-dir
t
))
(
eshell/cp
filename
pub-dir
))
(
copy-file
filename
pub-dir
))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Publishing files, sets of files, and indices
...
...
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