mirror of
https://github.com/vale981/ement.el
synced 2025-03-04 08:51:39 -05:00
Add: (ement-message)
This commit is contained in:
parent
f4cb5056db
commit
489a683f64
1 changed files with 5 additions and 0 deletions
|
@ -319,6 +319,11 @@ If DELETE (interactively, with prefix), delete it."
|
|||
|
||||
;; These functions could reasonably be called by code in other packages.
|
||||
|
||||
(defun ement-message (format-string &rest args)
|
||||
"Call `message' on FORMAT-STRING prefixed with \"Ement: \"."
|
||||
;; TODO: Use this function everywhere we use `message'.
|
||||
(apply #'message (concat "Ement: " format-string) args))
|
||||
|
||||
(cl-defun ement-upload (session &key data filename then else
|
||||
(content-type "application/octet-stream"))
|
||||
"Upload DATA with FILENAME to content repository on SESSION.
|
||||
|
|
Loading…
Add table
Reference in a new issue