[elpa] main 884336d14e: elpa-packages(llm): New package

2023-09-15 Thread Andrew Hyatt
branch: main commit 884336d14e8b62e4da80bdb3a16817013220039d Author: Andrew Hyatt Commit: Andrew Hyatt elpa-packages(llm): New package --- elpa-packages | 1 + 1 file changed, 1 insertion(+) diff --git a/elpa-packages b/elpa-packages index 45a534ce6e..ae4e9804d9 100644 --- a/elpa-packages

[elpa] externals/llm 9e3040bad2 20/34: Add warnings requested by GNU about nonfree software

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 9e3040bad27b8d73c2292127ccfc2c612eed1e8e Author: Andrew Hyatt Commit: Andrew Hyatt Add warnings requested by GNU about nonfree software Also this correctly sets up the LLM customization group. --- llm-openai.el | 7 +++ llm-vertex.el | 7 +++ ll

[elpa] externals/llm 9a3fc01cac 17/34: Switch from generic to per-provider sync solution

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 9a3fc01cac06c17e00d36a48990a638217692238 Author: Andrew Hyatt Commit: Andrew Hyatt Switch from generic to per-provider sync solution The previous method of convering async calls to sync had issues with threading, even after some basic fixes to the m

[elpa] externals/llm 636014bf64 08/34: Make all remaining code async-friendly

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 636014bf64a91d3ddbe3ba14e585e332f2b9820a Author: Andrew Hyatt Commit: Andrew Hyatt Make all remaining code async-friendly This finalizes (I hope) async changes to both openai and vertex providers, as well as the tester. --- llm-openai.el | 22 +

[elpa] externals/llm 131a7ee5d3 12/34: Solve flaky errors when using sync llm commands

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 131a7ee5d304d52ae5641017883dc88bc055a39a Author: Andrew Hyatt Commit: Andrew Hyatt Solve flaky errors when using sync llm commands The solution was to hold the mutexes every time we're changing the closure state. --- llm.el | 16 ++-- 1 fil

[elpa] externals/llm 3919b77383 06/34: Implement confusion and typos in README.org

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 3919b77383324173dcff352c506112fee903a646 Author: Andrew Hyatt Commit: Andrew Hyatt Implement confusion and typos in README.org This fixes the problems noted in https://github.com/ahyatt/llm/pull/1 by https://github.com/tvraman. --- README.org | 4 ++

[elpa] externals/llm abbff2aa9d 23/34: Change method name to llm-chat (without "-response"), update README

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit abbff2aa9d8c1df46c9b3e44d6b2e96861f3fd50 Author: Andrew Hyatt Commit: Andrew Hyatt Change method name to llm-chat (without "-response"), update README --- README.org| 5 - llm-fake.el | 6 +++--- llm-openai.el | 10 +- llm-test.el | 8

[elpa] externals/llm 3b761aca25 02/34: Add README.org

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 3b761aca251eea164003743ed02f173f5fab888d Author: Andrew Hyatt Commit: Andrew Hyatt Add README.org --- README.org | 25 + 1 file changed, 25 insertions(+) diff --git a/README.org b/README.org new file mode 100644 index 00..ee764e5

[elpa] branch externals/llm created (now 39ae6fc794)

2023-09-15 Thread Andrew Hyatt
ahyatt pushed a change to branch externals/llm. at 39ae6fc794 Assign copyright to FSF, in preparation of inclusion to GNU ELPA This branch includes the following new commits: new ad76cff80b Initial checkin of the llm package for emacs. new 3b761aca25 Add README.org

[elpa] externals/llm ad76cff80b 01/34: Initial checkin of the llm package for emacs.

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit ad76cff80b56ddf1c310eb2ec78f6547e39117de Author: Andrew Hyatt Commit: Andrew Hyatt Initial checkin of the llm package for emacs. --- .gitignore| 2 + COPYING | 674 ++ llm-openai.el | 140 ++

[elpa] externals/llm 650bba65d5 25/34: Improve the docstring for llm--warn-on-nonfree

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 650bba65d5c25d66be9fb932c0818f3a8d65ef12 Author: Andrew Hyatt Commit: Andrew Hyatt Improve the docstring for llm--warn-on-nonfree --- llm.el | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/llm.el b/llm.el index 6c96aba4a2..5d6202b18b 1

[elpa] externals/llm d4bbe9d84c 29/34: Fix incorrect requires in openai and vertex implementations

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit d4bbe9d84caf2bec9d608c058beb7b986ecf2437 Author: Andrew Hyatt Commit: Andrew Hyatt Fix incorrect requires in openai and vertex implementations --- llm-openai.el | 1 + llm-vertex.el | 2 ++ 2 files changed, 3 insertions(+) diff --git a/llm-openai.el b/llm-opena

[elpa] externals/llm cff9ab8f3c 22/34: Centralize nonfree llm warnings, and warn with a targeted type

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit cff9ab8f3c65f7ad92f0f0cb133df980cbcd4d6e Author: Andrew Hyatt Commit: Andrew Hyatt Centralize nonfree llm warnings, and warn with a targeted type --- llm-openai.el | 4 +--- llm-vertex.el | 4 +--- llm.el| 6 ++ 3 files changed, 8 insertions(+), 6 de

[elpa] externals/llm 0ed280c208 15/34: Add llm-fake, useful for developer testing using the llm methods

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 0ed280c208efee3124eaf022accf47d493036de7 Author: Andrew Hyatt Commit: Andrew Hyatt Add llm-fake, useful for developer testing using the llm methods --- llm-fake.el | 75 + 1 file changed, 75 insertions(

[elpa] externals/llm b52958757a 18/34: Fix docstring wider than 80 characters in llm-vertex

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit b52958757aefd1f1aa17f34adb2b79ccf9407afa Author: Andrew Hyatt Commit: Andrew Hyatt Fix docstring wider than 80 characters in llm-vertex --- llm-vertex.el | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/llm-vertex.el b/llm-vertex.el

[elpa] externals/llm 4e9be8183d 07/34: Merge branch 'async'

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 4e9be8183d11e7bf652328769e6be2ad3d46d1a3 Merge: 3919b77383 16ee85fd11 Author: Andrew Hyatt Commit: Andrew Hyatt Merge branch 'async' --- llm-openai.el | 36 +++-- llm-tester.el | 65 +++-

[elpa] externals/llm eba797b295 04/34: Implement error handling for gcloud auth issues

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit eba797b295d320b3158fa4a491bbcf292417d0ac Author: Andrew Hyatt Commit: Andrew Hyatt Implement error handling for gcloud auth issues --- llm-vertex.el | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/llm-vertex.el b/llm-vertex.el index 6c

[elpa] externals/llm c322577b9b 13/34: Test both sync and async commands

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit c322577b9b31f3b17e4540812fddad0156965144 Author: Andrew Hyatt Commit: Andrew Hyatt Test both sync and async commands --- llm-tester.el | 46 +- 1 file changed, 41 insertions(+), 5 deletions(-) diff --git a/llm-tester.

[elpa] externals/llm c8b14b4d9c 19/34: Fix fake provider embedding func and remove async unit tests

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit c8b14b4d9c87b2b3ac5004017825941f4bfe3461 Author: Andrew Hyatt Commit: Andrew Hyatt Fix fake provider embedding func and remove async unit tests --- llm-fake.el | 2 +- llm-test.el | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/llm-fake.el b

[elpa] externals/llm c55ccf157a 03/34: Clean up package specifications in elisp files

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit c55ccf157ab42eb0fef9b3a13f369e9b2e0376a3 Author: Andrew Hyatt Commit: Andrew Hyatt Clean up package specifications in elisp files Only llm.el should hold the requires, version, etc. Also, the keywords were not correct. --- llm-openai.el | 3 --- ll

[elpa] externals/llm 39ae6fc794 34/34: Assign copyright to FSF, in preparation of inclusion to GNU ELPA

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 39ae6fc79450fa08f0a7505033ae497d7dcae976 Author: Andrew Hyatt Commit: Andrew Hyatt Assign copyright to FSF, in preparation of inclusion to GNU ELPA --- llm-fake.el | 2 +- llm-openai.el | 2 +- llm-test.el | 2 +- llm-tester.el | 2 +- llm-vertex.el | 2 +-

[elpa] externals/llm 444850a981 24/34: Fix missing word in non-free warning message

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 444850a981bf312d01b0af677f007939a509ef5f Author: Andrew Hyatt Commit: Andrew Hyatt Fix missing word in non-free warning message --- llm.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llm.el b/llm.el index e7c05c18a4..6c96aba4a2 100644 ---

[elpa] externals/llm dd20d6353c 21/34: Fix bug on llm-fake's error response to chat-response

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit dd20d6353c5bb5e02b38095c58a50bb86a2bea53 Author: Andrew Hyatt Commit: Andrew Hyatt Fix bug on llm-fake's error response to chat-response --- llm-fake.el | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/llm-fake.el b/llm-fake.el index 172

[elpa] externals/llm 9057a50df4 11/34: Fix indenting in llm--run-async-as-sync

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 9057a50df4b92eacebae1620cf06404b97367d3f Author: Andrew Hyatt Commit: Andrew Hyatt Fix indenting in llm--run-async-as-sync --- llm.el | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/llm.el b/llm.el index f513489f09..d9468ceaba 1006

[elpa] externals/llm 723c0b3786 31/34: Minor README whitespace and formatting fixes

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 723c0b378645e0ba779dc93e43fae7b92dcb907f Author: Andrew Hyatt Commit: Andrew Hyatt Minor README whitespace and formatting fixes --- README.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index d5ef7ead39..b9047

[elpa] externals/llm 414d25a625 09/34: Removed various unused things, and format fixes

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 414d25a625201acc0f7b87f6fdb8eca2b48d5bc8 Author: Andrew Hyatt Commit: Andrew Hyatt Removed various unused things, and format fixes This fixes all byte compile warnings, and notably fixes an incorrect error message formatting in the vertex provider. -

[elpa] externals/llm ba65755326 30/34: Improve the README with information on providers for end-users

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit ba6575532680a27ced25a48f25e2425106a5eabd Author: Andrew Hyatt Commit: Andrew Hyatt Improve the README with information on providers for end-users --- README.org | 34 -- 1 file changed, 28 insertions(+), 6 deletions(-) diff --git

[elpa] externals/llm 7edd36b2dc 28/34: Fix obsolete or incorrect function calls in llm-fake

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 7edd36b2dc1e8986adc191b0a30b31afc9dfa6bb Author: Andrew Hyatt Commit: Andrew Hyatt Fix obsolete or incorrect function calls in llm-fake --- llm-fake.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llm-fake.el b/llm-fake.el index 95ae

[elpa] externals/llm e94bc937c7 27/34: Fix issue with llm-chat before method having too many arguments

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit e94bc937c711f871adf8446dee0e75c97b4bfbf7 Author: Andrew Hyatt Commit: Andrew Hyatt Fix issue with llm-chat before method having too many arguments --- llm.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llm.el b/llm.el index 4e78678383..03

[elpa] externals/llm ad230d9d6b 10/34: Add methods for nil provider, to throw more meaningful errors

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit ad230d9d6bf895d46b82b9b24dfdbb9e511c0e96 Author: Andrew Hyatt Commit: Andrew Hyatt Add methods for nil provider, to throw more meaningful errors --- llm.el | 12 1 file changed, 12 insertions(+) diff --git a/llm.el b/llm.el index e527dd9273..f51348

[elpa] externals/llm 40151757de 26/34: Switch to a method of nonfree warnings easier for provider modules

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 40151757ded8fc8a8c1312da8f80d56968e21c22 Author: Andrew Hyatt Commit: Andrew Hyatt Switch to a method of nonfree warnings easier for provider modules Also, change how warnings are logged, since list types do not currently work. --- llm-openai.el | 7 +

[elpa] externals/llm 16ee85fd11 05/34: Add async options, and made the sync options just use those and wait

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 16ee85fd11451ab2f8b2db01a6d5f22d12913020 Author: Andrew Hyatt Commit: Andrew Hyatt Add async options, and made the sync options just use those and wait --- llm-openai.el | 36 +++-- llm-tester.el | 65 +++--

[elpa] externals/llm b2f1605514 33/34: Delete some trailing whitespace

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit b2f160551488c9d16ecf1b64f7b70576a3ed6775 Author: Andrew Hyatt Commit: Andrew Hyatt Delete some trailing whitespace --- llm-openai.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llm-openai.el b/llm-openai.el index edb10f7862..ba79e748a

[elpa] externals/llm 8f30feb5c1 32/34: README improvements, including noting the nonfree llm warning

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 8f30feb5c1a209f7280fd468a2fe4030434a0e81 Author: Andrew Hyatt Commit: Andrew Hyatt README improvements, including noting the nonfree llm warning Also, remove the somewhat duplicated section about different providers. Require the right provider i

[elpa] externals/llm cff5db8ad5 16/34: Add unit tests and fix all brokenness detected by them

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit cff5db8ad5185ac623759f737fc2554948b62c6a Author: Andrew Hyatt Commit: Andrew Hyatt Add unit tests and fix all brokenness detected by them --- llm-fake.el | 32 +--- llm-test.el | 57

[elpa] externals/llm 48ae59d149 14/34: Fix llm-chat-prompt-to-text, which was unusable

2023-09-15 Thread Andrew Hyatt
branch: externals/llm commit 48ae59d14977aae60c6f2405fc9d8bbcf2182a3f Author: Andrew Hyatt Commit: Andrew Hyatt Fix llm-chat-prompt-to-text, which was unusable --- llm.el | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/llm.el b/llm.el index 29e907a093..f8323

[elpa] externals/greader 92a14825eb: Version 0.4.0

2023-09-15 Thread ELPA Syncer
branch: externals/greader commit 92a14825eb2b2c8764af7817bf2700eba10971a8 Author: Michelangelo Rodriguez Commit: Michelangelo Rodriguez Version 0.4.0 --- greader.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greader.el b/greader.el index 017505e782..321342b9ba 10064

[elpa] externals/greader updated (230c54be6c -> 92a14825eb)

2023-09-15 Thread ELPA Syncer
elpasync pushed a change to branch externals/greader. from 230c54be6c version 0.3.0 adds 08158a459b * greader.el: Fix hook naming convention adds 7ae215c13f * greader.el: Prefer #' to quote function names adds dff6b60acb * greader.el: Improve some of the docstrings

[nongnu] elpa/apropospriate-theme 6618e26a83: adjust `parenthesis` face (for `paren-face-mode`)

2023-09-15 Thread ELPA Syncer
branch: elpa/apropospriate-theme commit 6618e26a833fdd2fbddf32075f1953cc4f86cb03 Author: justin talbott Commit: justin talbott adjust `parenthesis` face (for `paren-face-mode`) --- apropospriate-theme.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apropospriate-theme

[elpa] externals/tempel updated (0101fd2abf -> 023001cece)

2023-09-15 Thread ELPA Syncer
elpasync pushed a change to branch externals/tempel. from 0101fd2abf README: Add recommendation regarding template naming (See #112) new 809e4ad4ee Update org-mode template examples (#113) new 023001cece README: Update template Summary of changes: README.org | 6 +++---

[elpa] externals/tempel 809e4ad4ee 1/2: Update org-mode template examples (#113)

2023-09-15 Thread ELPA Syncer
branch: externals/tempel commit 809e4ad4ee64160be25ba21bceff830510078283 Author: Ian S. Pringle Commit: GitHub Update org-mode template examples (#113) Updated the elisp and src examples so that they do not use `indent-according-to-tab`. When the header of the source block exists b

[elpa] externals/tempel 023001cece 2/2: README: Update template

2023-09-15 Thread ELPA Syncer
branch: externals/tempel commit 023001cece278a8ab4a6904c05a1ee68c570efe9 Author: Daniel Mendler Commit: Daniel Mendler README: Update template --- README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.org b/README.org index 34fd59f0f9..80b4463e43 100644 --- a

[elpa] externals/expreg 9950c07ec9: * expreg.el (expreg--treesit): Add support for multi-language.

2023-09-15 Thread ELPA Syncer
branch: externals/expreg commit 9950c07ec90293964baa33603f4a80e764b0a847 Author: Yuan Fu Commit: Yuan Fu * expreg.el (expreg--treesit): Add support for multi-language. --- expreg.el | 32 ++-- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/expreg

[elpa] externals/transient updated (dd970cd464 -> b150b48b31)

2023-09-15 Thread Jonas Bernoulli via
tarsius pushed a change to branch externals/transient. from dd970cd464 Compile suffix commands that are defined inside prefix definitions new d11a1040b2 transient-update: Preserve universal argument new b150b48b31 transient-quit-one: Cancel prefix-arg instead of exiting tr

[elpa] externals/transient b150b48b31 2/2: transient-quit-one: Cancel prefix-arg instead of exiting transient

2023-09-15 Thread Jonas Bernoulli via
branch: externals/transient commit b150b48b310d06db87e673f5aef672b341bd001e Author: Jonas Bernoulli Commit: Jonas Bernoulli transient-quit-one: Cancel prefix-arg instead of exiting transient --- lisp/transient.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/transient.el b/lisp

[elpa] externals/transient d11a1040b2 1/2: transient-update: Preserve universal argument

2023-09-15 Thread Jonas Bernoulli via
branch: externals/transient commit d11a1040b21e8e21b27f87490cb6bcec4cc2c6da Author: Jonas Bernoulli Commit: Jonas Bernoulli transient-update: Preserve universal argument Since [1: ed2febd0] we have already done so, iff we remapped from `negative-argument' to this command.

[elpa] scratch/greader 6fe3129a11 4/4: Miscellanous simplifications and "tightening"

2023-09-15 Thread Stefan Monnier via
branch: scratch/greader commit 6fe3129a11f32078f5622e1321e9e5021eb0f5cc Author: Stefan Monnier Commit: Stefan Monnier Miscellanous simplifications and "tightening" Many of the simplifications result from hoisting `setq` out of ifs or avoiding `setq` altogether. Among the tig

[elpa] scratch/greader dff6b60acb 3/4: * greader.el: Improve some of the docstrings

2023-09-15 Thread Stefan Monnier via
branch: scratch/greader commit dff6b60acb7456422f5e32e2c9a36fda8f077267 Author: Stefan Monnier Commit: Stefan Monnier * greader.el: Improve some of the docstrings --- greader-speechd.el | 9 - greader.el | 36 +--- 2 files changed, 21 inserti

[elpa] scratch/greader 7ae215c13f 2/4: * greader.el: Prefer #' to quote function names

2023-09-15 Thread Stefan Monnier via
branch: scratch/greader commit 7ae215c13fe441fe196a31699d710d7bb2a625d9 Author: Stefan Monnier Commit: Stefan Monnier * greader.el: Prefer #' to quote function names --- greader.el | 54 +- 1 file changed, 29 insertions(+), 25 deletions(-)

[elpa] branch scratch/greader created (now 6fe3129a11)

2023-09-15 Thread Stefan Monnier via
monnier pushed a change to branch scratch/greader. at 6fe3129a11 Miscellanous simplifications and "tightening" This branch includes the following new commits: new 08158a459b * greader.el: Fix hook naming convention new 7ae215c13f * greader.el: Prefer #' to quote function

[elpa] scratch/greader 08158a459b 1/4: * greader.el: Fix hook naming convention

2023-09-15 Thread Stefan Monnier via
branch: scratch/greader commit 08158a459b9a67c97ca9500abb015716f599029a Author: Stefan Monnier Commit: Stefan Monnier * greader.el: Fix hook naming convention Normal hooks are those run with plain `run-hooks` (i.e. take no args and return no value). They use the `-hook` suffix.

[elpa] externals/greader updated (dd528739b9 -> 230c54be6c)

2023-09-15 Thread ELPA Syncer
elpasync pushed a change to branch externals/greader. from dd528739b9 More work on last commit. new a9066ce745 greader now manages regions. new 15e4d55277 Use of `greader-tts-stop instead of `greader-stop' to stop reading internally. new 230c54be6c version 0.3.0 S

[elpa] externals/greader a9066ce745 1/3: greader now manages regions.

2023-09-15 Thread ELPA Syncer
branch: externals/greader commit a9066ce745b83aba491ea3709267f839fcf6c3b9 Author: Michelangelo Rodriguez Commit: Michelangelo Rodriguez greader now manages regions. --- greader.el | 59 +++ 1 file changed, 59 insertions(+) diff --git

[elpa] externals/embark 0d89add290 3/3: Bad typo :(

2023-09-15 Thread ELPA Syncer
branch: externals/embark commit 0d89add290f9176b77a2d7155a9935e30351d90f Author: Omar Antolín Commit: Omar Antolín Bad typo :( --- embark.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embark.el b/embark.el index e0186c4528..d4dc4a6ade 100644 --- a/embark.el +++ b/em

[elpa] externals/greader 230c54be6c 3/3: version 0.3.0

2023-09-15 Thread ELPA Syncer
branch: externals/greader commit 230c54be6c82c4c7de6afa8ce04ec57d8c26d468 Author: Michelangelo Rodriguez Commit: Michelangelo Rodriguez version 0.3.0 --- greader.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greader.el b/greader.el index 82267f83e9..8da00bcb4f 10064

[elpa] externals/greader 15e4d55277 2/3: Use of `greader-tts-stop instead of `greader-stop' to stop reading

2023-09-15 Thread ELPA Syncer
branch: externals/greader commit 15e4d552774f6851bfd274ff3fd163d3cd1d8f08 Author: Michelangelo Rodriguez Commit: Michelangelo Rodriguez Use of `greader-tts-stop instead of `greader-stop' to stop reading internally. --- greader.el | 12 ++-- 1 file changed, 6 insertions(+), 6 del

[elpa] externals/embark-consult updated (8fbb20d189 -> 0d89add290)

2023-09-15 Thread ELPA Syncer
elpasync pushed a change to branch externals/embark-consult. from 8fbb20d189 Add embark-org-refile-here action adds dbb1158ced Some more commands which should mark their targets adds cf1325929e Tweak whitespace behavior of insert actions adds 0d89add290 Bad typo :( No

[elpa] externals/embark updated (8fbb20d189 -> 0d89add290)

2023-09-15 Thread ELPA Syncer
elpasync pushed a change to branch externals/embark. from 8fbb20d189 Add embark-org-refile-here action new dbb1158ced Some more commands which should mark their targets new cf1325929e Tweak whitespace behavior of insert actions new 0d89add290 Bad typo :( Summary of

[elpa] externals/embark cf1325929e 2/3: Tweak whitespace behavior of insert actions

2023-09-15 Thread ELPA Syncer
branch: externals/embark commit cf1325929e804c71b6ad5313228173b54bf2348b Author: Omar Antolín Commit: Omar Antolín Tweak whitespace behavior of insert actions --- embark.el | 16 +++- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/embark.el b/embark.el index f2e0

[elpa] externals/embark dbb1158ced 1/3: Some more commands which should mark their targets

2023-09-15 Thread ELPA Syncer
branch: externals/embark commit dbb1158ced3c047e6b8daffec1f178d668af611a Author: Omar Antolín Commit: Omar Antolín Some more commands which should mark their targets --- embark.el | 4 1 file changed, 4 insertions(+) diff --git a/embark.el b/embark.el index 03d92a506a..f2e0260a4f 1006

[nongnu] elpa/org-contrib 1ee7db2701: * lisp/ol-vm.el (org-vm-store-link): Do not use obsolete function names

2023-09-15 Thread ELPA Syncer
branch: elpa/org-contrib commit 1ee7db27015e72202928925305dde9e5a2ee6a01 Author: Ihor Radchenko Commit: Ihor Radchenko * lisp/ol-vm.el (org-vm-store-link): Do not use obsolete function names --- lisp/ol-vm.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/ol-

[nongnu] elpa/cdlatex 42a2041df9: Fix bug when moving out of parenthesis aith TAB

2023-09-15 Thread ELPA Syncer
branch: elpa/cdlatex commit 42a2041df99d1d3da9e08d17ceb2eba111cc85ed Author: Carsten Dominik Commit: Carsten Dominik Fix bug when moving out of parenthesis aith TAB Thanks to SnootierMoon of reporting the bug --- cdlatex.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

[elpa] externals/org 9eaca51c51 1/5: * lisp/org-clock.el (org-clock--translate): Clarify "L" and "ALL" terms

2023-09-15 Thread ELPA Syncer
branch: externals/org commit 9eaca51c510905e0cf4884aa52e4e7c2a4484d41 Author: Ihor Radchenko Commit: Ihor Radchenko * lisp/org-clock.el (org-clock--translate): Clarify "L" and "ALL" terms Explain in a comment what "L" And "ALL" terms mean in the context of clock table.

[elpa] externals/org updated (765a84ea25 -> e90a8a69a7)

2023-09-15 Thread ELPA Syncer
elpasync pushed a change to branch externals/org. from 765a84ea25 * lisp/ob-fortran.el: Document all the function arguments new 9eaca51c51 * lisp/org-clock.el (org-clock--translate): Clarify "L" and "ALL" terms new 1d35ebd93c test-org-clok/org-clock-update-time-maybe: Fix t

[elpa] externals/org e90a8a69a7 5/5: org-element-cache: Log recovered persisted elements during loading

2023-09-15 Thread ELPA Syncer
branch: externals/org commit e90a8a69a7fa2d83c995b5d32bc0b24a68218ed3 Author: Ihor Radchenko Commit: Ihor Radchenko org-element-cache: Log recovered persisted elements during loading * lisp/org-element.el (org-element--cache-persist-before-read): (org-element--cache-persist-afte

[elpa] externals/org fd1418dadd 4/5: * lisp/ob-gnuplot.el: Document all the function arguments

2023-09-15 Thread ELPA Syncer
branch: externals/org commit fd1418dadd85a9884deea9a79f675de9d7d45937 Author: Ihor Radchenko Commit: Ihor Radchenko * lisp/ob-gnuplot.el: Document all the function arguments (org-babel-execute:gnuplot): (org-babel-variable-assignments:gnuplot): --- lisp/ob-gnuplot.el | 5 +++--

[elpa] externals/org d70c1200f7 3/5: ob-fortran.el: Fix name of caller in documentation

2023-09-15 Thread ELPA Syncer
branch: externals/org commit d70c1200f70209db8fe6868f240492ce0e8ea190 Author: Gerard Vermeulen Commit: Ihor Radchenko ob-fortran.el: Fix name of caller in documentation * lisp/ob-fortran.el (org-babel-execute:fortran): Fix name of caller in documentation and conform to "rules" i

[elpa] externals/org 1d35ebd93c 2/5: test-org-clok/org-clock-update-time-maybe: Fix test for non-English LANG

2023-09-15 Thread ELPA Syncer
branch: externals/org commit 1d35ebd93c26a511f42555e1eb54fc7f8028a124 Author: Ihor Radchenko Commit: Ihor Radchenko test-org-clok/org-clock-update-time-maybe: Fix test for non-English LANG * testing/lisp/test-org-clock.el (test-org-clok/org-clock-update-time-maybe): Do not asse

[elpa] externals/denote dff73d46c5: Move "Denote" menu on menu-bar to the end after "Tools"

2023-09-15 Thread ELPA Syncer
branch: externals/denote commit dff73d46c598926e44d477d77c8ceadbbb7c3ed9 Author: Noboru Ota Commit: Protesilaos Stavrou Move "Denote" menu on menu-bar to the end after "Tools" Hi Prot and all in the list. I'm happy to see that Prot has got his off-grid electricity cabin up.

[nongnu] elpa/eat 3fcf128840: ; * eat.el (eat-mode): Fix mode line

2023-09-15 Thread ELPA Syncer
branch: elpa/eat commit 3fcf128840eeac844aed0962f03af1fdf14c7c3f Author: Akib Azmain Turja Commit: Akib Azmain Turja ; * eat.el (eat-mode): Fix mode line --- eat.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eat.el b/eat.el index 2b67ea9193..556b9e283f 100644 --- a/

[elpa] externals/xeft 32735a2a63 3/3: ; * xeft.el (xeft-default-title): Fix typo.

2023-09-15 Thread ELPA Syncer
branch: externals/xeft commit 32735a2a631fc2957b79cc65ad851546b7d572df Author: Yuan Fu Commit: Yuan Fu ; * xeft.el (xeft-default-title): Fix typo. --- xeft.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xeft.el b/xeft.el index e6f151c6e5..cc3f96685b 100644 --- a/xeft

[elpa] externals/xeft updated (6de2d038e9 -> 32735a2a63)

2023-09-15 Thread ELPA Syncer
elpasync pushed a change to branch externals/xeft. from 6de2d038e9 ; * README.md: Mention search phrase threshold. new 811806d23f ; * README.md: Fix typo. new ebaa0d493f Scroll to the search phrase in preview window (issue#29) new 32735a2a63 ; * xeft.el (xeft-default

[elpa] externals/xeft ebaa0d493f 2/3: Scroll to the search phrase in preview window (issue#29)

2023-09-15 Thread ELPA Syncer
branch: externals/xeft commit ebaa0d493ff47243dfb68190e156e2f62bb9ca0c Author: Yuan Fu Commit: Yuan Fu Scroll to the search phrase in preview window (issue#29) * xeft.el (xeft--preview-file): Scroll to the first search phrase. --- xeft.el | 5 - 1 file changed, 4 insertions(+),

[elpa] externals/xeft 811806d23f 1/3: ; * README.md: Fix typo.

2023-09-15 Thread ELPA Syncer
branch: externals/xeft commit 811806d23f0ec142368188f001cc044f226653e5 Author: Levin Du Commit: Yuan Fu ; * README.md: Fix typo. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d91982a69b..3db8ea7663 100644 --- a/README.md ++