1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
cage 25c670d1e7 - added form to ensure asdf has been loaded when compiling the package. 2024-05-14 21:33:56 +02:00
cage 946e677acb - fixed some docstrings. 2024-05-14 19:53:30 +02:00
3 changed files with 9 additions and 7 deletions

View File

@ -96,6 +96,7 @@ dist_man1_MANS = doc/tinmop.man
$(PACKAGE): $(CONF_PATH_FILE) *.asd src/* $(PACKAGE): $(CONF_PATH_FILE) *.asd src/*
$(LISP_COMPILER) \ $(LISP_COMPILER) \
--eval "(require 'asdf)" \
--eval "(push \"$$(pwd)/\" asdf:*central-registry*)" \ --eval "(push \"$$(pwd)/\" asdf:*central-registry*)" \
--eval "(asdf:make '$(PACKAGE) :build-pathname \"../$(PACKAGE)\")" \ --eval "(asdf:make '$(PACKAGE) :build-pathname \"../$(PACKAGE)\")" \
--eval "(uiop:quit)" --eval "(uiop:quit)"

View File

@ -1118,6 +1118,7 @@ uninstall-man: uninstall-man1
$(PACKAGE): $(CONF_PATH_FILE) *.asd src/* $(PACKAGE): $(CONF_PATH_FILE) *.asd src/*
$(LISP_COMPILER) \ $(LISP_COMPILER) \
--eval "(require 'asdf)" \
--eval "(push \"$$(pwd)/\" asdf:*central-registry*)" \ --eval "(push \"$$(pwd)/\" asdf:*central-registry*)" \
--eval "(asdf:make '$(PACKAGE) :build-pathname \"../$(PACKAGE)\")" \ --eval "(asdf:make '$(PACKAGE) :build-pathname \"../$(PACKAGE)\")" \
--eval "(uiop:quit)" --eval "(uiop:quit)"

View File

@ -287,35 +287,35 @@ Returns nil if the user did not provided a server in the configuration file"
announcements) announcements)
(defun-api-call favourite-status (status-id) (defun-api-call favourite-status (status-id)
"Favourite a status identified by `status-id'" "Favourite a status identified by `status-id'"
(tooter:favourite *client* (tooter:favourite *client*
status-id)) status-id))
(defun-api-call unfavourite-status (status-id) (defun-api-call unfavourite-status (status-id)
"Unfavourite a status identified by `status-id'" "Unfavourite a status identified by `status-id'"
(tooter:unfavourite *client* (tooter:unfavourite *client*
status-id)) status-id))
(defun-api-call reblog-status (status-id) (defun-api-call reblog-status (status-id)
"Reblog a status identified by `status-id'" "Reblog a status identified by `status-id'"
(tooter:reblog *client* (tooter:reblog *client*
status-id)) status-id))
(defun-api-call unreblog-status (status-id) (defun-api-call unreblog-status (status-id)
"Reblog a status identified by `status-id'" "Reblog a status identified by `status-id'"
(tooter:unreblog *client* (tooter:unreblog *client*
status-id)) status-id))
(defun-api-call follow-tag (tag-name) (defun-api-call follow-tag (tag-name)
"Follow a tag" "Follow a tag"
(tooter:follow-tag *client* tag-name)) (tooter:follow-tag *client* tag-name))
(defun-api-call unfollow-tag (tag-name) (defun-api-call unfollow-tag (tag-name)
"Unfollow a tag" "Unfollow a tag"
(tooter:unfollow-tag *client* tag-name)) (tooter:unfollow-tag *client* tag-name))
(defun-api-call get-followed-tags (&key max-id since-id min-id (limit 20)) (defun-api-call get-followed-tags (&key max-id since-id min-id (limit 20))
"Unfollow a tag" "get a list of tags object that the user follows"
(tooter:collect-all-pages *client* (tooter:collect-all-pages *client*
(tooter:followed-tags *client* (tooter:followed-tags *client*
:max-id max-id :max-id max-id