Skip to content

Commit

Permalink
Fix byte comp warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurenceWarne committed Sep 21, 2023
1 parent 8c14a0a commit 8ae51b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion finito-buffer.el
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ This option will disable the image cache. It's useful if for example you are
using `org-display-remote-inline-images'. In this case org would handle
display of images even if they are remote uris.
See also URL 'https://github.com/LaurenceWarne/finito.el/issues/2' for more
See also URL `https://github.com/LaurenceWarne/finito.el/issues/2' for more
information on using `org-display-remote-inline-images' with finito."
:group 'finito
:type 'boolean)
Expand Down
8 changes: 4 additions & 4 deletions finito.el
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ This instance will be used to initialise a buffer after a keyword search."
This collection will be opened when the \"My Books\" suffix is invoked from
the `finito' prefix command. Typically this collection will hold all
books which have been added at some point to some collection. See
URL 'https://github.com/LaurenceWarne/libro-finito#special-collections' for
URL `https://github.com/LaurenceWarne/libro-finito#special-collections' for
more information on how special collections can be configured."
:group 'finito
:type 'string)
Expand Down Expand Up @@ -568,7 +568,7 @@ The following commands are available in this mode:
Copy to the kill ring a curl request string corresponding to what the server
would send to the Google Books API (see URL
'https://developers.google.com/books/docs/v1/using') for the same
`https://developers.google.com/books/docs/v1/using') for the same
set of args. This is intended to be used for debugging."
(interactive
(list (finito--transient-args-plist 'finito-search)))
Expand All @@ -582,7 +582,7 @@ set of args. This is intended to be used for debugging."
Copy to the kill ring a curl request string corresponding to what the server
would send to the Google Books API (see URL
'https://developers.google.com/books/docs/v1/using') for a keyword
`https://developers.google.com/books/docs/v1/using') for a keyword
search using TITLE and AUTHOR keywords. This is intended to be used for
debugging."
(unless (or title author)
Expand Down Expand Up @@ -611,7 +611,7 @@ debugging."
Copy to the kill ring a curl request string corresponding to what the server
would send to the Google Books API (see URL
'https://developers.google.com/books/docs/v1/using') for the given ISBN.
`https://developers.google.com/books/docs/v1/using') for the given ISBN.
This is intended to be used for debugging."
(let* ((base-url "https://www.googleapis.com/books/v1/volumes?q=")
(url-params (list (concat "isbn:" isbn)
Expand Down

0 comments on commit 8ae51b3

Please sign in to comment.