Skip to content

Commit

Permalink
finish doc string, make new buffer in query
Browse files Browse the repository at this point in the history
  • Loading branch information
jkitchin committed Jan 18, 2024
1 parent 575395b commit 78d7897
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions openalex.el
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ and value is what you want to filter on. The following logic is supported:
value1+value2 is and within a field
value1|value2 is or within a field
Your
Your email address will be added if `user-mail-address' is
non-nil, and `oa-api-key' if it is non-nil to the API url.
"
(let* ((page (if (plist-get filter :page)
(prog1
Expand Down Expand Up @@ -108,8 +109,8 @@ Your
" ")
(+ page 1)
(+ page 1)))
(buf (get-buffer-create "*OpenAlex - Query*")))

(buf (generate-new-buffer "*OpenAlex - Query*")))
(with-current-buffer buf
(erase-buffer)
(org-mode)
Expand Down

0 comments on commit 78d7897

Please sign in to comment.