[elpa] externals/pulsar b1634a728d 1/7: Move the basic user options closer to the top

2024-11-17 Thread ELPA Syncer
branch: externals/pulsar commit b1634a728d068b3cf7f137cf06e4b51135ee69da Author: Protesilaos Stavrou Commit: Protesilaos Stavrou Move the basic user options closer to the top --- pulsar.el | 48 1 file changed, 24 insertions(+), 24 deletions(

[elpa] externals/pulsar e4af31b85a 3/7: Untabify the buffer

2024-11-17 Thread ELPA Syncer
branch: externals/pulsar commit e4af31b85aa91d41d4d7f70eca42f954815c2d82 Author: Protesilaos Stavrou Commit: Protesilaos Stavrou Untabify the buffer --- pulsar.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pulsar.el b/pulsar.el index 319379ebc0..1ad40ce821 100

[elpa] externals/pulsar 65eb84a557 2/7: Make the window state change pulse not consider the minibuffer

2024-11-17 Thread ELPA Syncer
branch: externals/pulsar commit 65eb84a557725dbd677356b50510e94928f50498 Author: Protesilaos Stavrou Commit: Protesilaos Stavrou Make the window state change pulse not consider the minibuffer Otherwise, we see a pulse each time the list of candidates is updated, even though the

[elpa] externals/pulsar updated (ab0e2b727f -> e231995122)

2024-11-17 Thread ELPA Syncer
elpasync pushed a change to branch externals/pulsar. from ab0e2b727f Placate the compiler about two spaces after dot in docs new b1634a728d Move the basic user options closer to the top new 65eb84a557 Make the window state change pulse not consider the minibuffer new

[elpa] externals/pulsar 1733d61d52 5/7: Simplify the Commentary

2024-11-17 Thread ELPA Syncer
branch: externals/pulsar commit 1733d61d52e96e43841facfddc396c7fb1c4fb5e Author: Protesilaos Stavrou Commit: Protesilaos Stavrou Simplify the Commentary --- pulsar.el | 54 ++ 1 file changed, 6 insertions(+), 48 deletions(-) diff --git a/

[elpa] externals/pulsar d0c41eb30e 4/7: Reword the pulsar-inhibit-hidden-buffers doc string

2024-11-17 Thread ELPA Syncer
branch: externals/pulsar commit d0c41eb30ec2a6bc50261cef31a97967bb105232 Author: Protesilaos Stavrou Commit: Protesilaos Stavrou Reword the pulsar-inhibit-hidden-buffers doc string --- pulsar.el | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pulsar.el b/pulsar.

[elpa] externals/pulsar e231995122 7/7: Document the pulsar-pulse-on-window-change in the manual

2024-11-17 Thread ELPA Syncer
branch: externals/pulsar commit e23199512258f6d06b23f66bf000c85568c07a26 Author: Protesilaos Stavrou Commit: Protesilaos Stavrou Document the pulsar-pulse-on-window-change in the manual This and pulsar-pulse-region-functions were contributed by shipmints in pull request 20:

[elpa] externals/llm 6a513ea01d 1/2: Fix extra argument in llm-batch-embeddings-async (#107)

2024-11-17 Thread ELPA Syncer
branch: externals/llm commit 6a513ea01dadc9f1de5f282fa95ab8d85787a3b5 Author: Andrew Hyatt Commit: GitHub Fix extra argument in llm-batch-embeddings-async (#107) --- NEWS.org | 2 ++ llm-provider-utils.el | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEW

[elpa] externals/stream 1e3c1436cc 7/7: Shorten the documentation strings of seq-take-while and seq-drop-while.

2024-11-17 Thread Stefan Monnier via
branch: externals/stream commit 1e3c1436cc1b66348091abef7d2658b3a2296625 Author: Earl Hyatt Commit: Stefan Monnier Shorten the documentation strings of seq-take-while and seq-drop-while. * stream.el (seq-take-while): Re-word documentation string to be less that 80 characters.

[elpa] branch new-version created (now e7231a2245)

2024-11-17 Thread Andrew Hyatt
ahyatt pushed a change to branch new-version. at e7231a2245 Set version to 0.18.1 This branch includes the following new commits: new e7231a2245 Set version to 0.18.1

[elpa] externals/stream b2f650a8a6 4/7: Add an implementation of `seq-concatenate` for streams.

2024-11-17 Thread Stefan Monnier via
branch: externals/stream commit b2f650a8a6ea5234b0810f0a322c510a2525442e Author: Earl Hyatt Commit: Stefan Monnier Add an implementation of `seq-concatenate` for streams. * stream.el (stream): Add a method for creating a stream from a stream, which really just returns the origin

[elpa] externals/stream updated (5c0ffd088f -> 1e3c1436cc)

2024-11-17 Thread Stefan Monnier via
monnier pushed a change to branch externals/stream. from 5c0ffd088f * packages/stream/stream.el: Bump version to 2.3.0 new f48552c066 Change 'stream.el' to use structures instead of cons cells. new bd614d022b Add more efficient method for making streams from arrays.

[elpa] externals/stream f48552c066 1/7: Change 'stream.el' to use structures instead of cons cells.

2024-11-17 Thread Stefan Monnier via
branch: externals/stream commit f48552c0668c36036ebeb6a3c87269049a2e61d9 Author: Earl Hyatt Commit: Stefan Monnier Change 'stream.el' to use structures instead of cons cells. * stream.el (stream): Define the structure using 'cl-defstruct'. Set safety to 0 using 'cl-declaim' to

[elpa] externals/stream bd614d022b 2/7: Add more efficient method for making streams from arrays.

2024-11-17 Thread Stefan Monnier via
branch: externals/stream commit bd614d022b043397e7294a5083e4dcf3f805e089 Author: Earl Hyatt Commit: Stefan Monnier Add more efficient method for making streams from arrays. * stream.el (stream): Add method for arrays that avoids creating sub-sequences. * tests/stream-tests

[elpa] externals/stream 0ad03f585b 5/7: Add test for delayed evaluation for seq-drop-while for streams.

2024-11-17 Thread Stefan Monnier via
branch: externals/stream commit 0ad03f585b3111cb516705397a742366d50bc5a6 Author: Earl Hyatt Commit: Stefan Monnier Add test for delayed evaluation for seq-drop-while for streams. * tests/stream-tests.el (deftest-for-delayed-evaluation): Add a test for seq-drop-while. --- tests/

[elpa] externals/stream daa19594e7 3/7: Add generalized variables for streams that error when used.

2024-11-17 Thread Stefan Monnier via
branch: externals/stream commit daa19594e7058ae531ec611b067fb970353b0e7c Author: Earl Hyatt Commit: Stefan Monnier Add generalized variables for streams that error when used. * stream.el (seq-elt, stream-first, stream-rest): Signal an error when trying to use this function as a

[elpa] externals/stream 202db1e4b5 6/7: Fix the quoting in the documentation of `seq-mapn` for streams.

2024-11-17 Thread Stefan Monnier via
branch: externals/stream commit 202db1e4b55e13149cfc116c2dfd330434308a32 Author: Earl Hyatt Commit: Stefan Monnier Fix the quoting in the documentation of `seq-mapn` for streams. * stream.el (seq-mapn): Correctly use "\\=" for escaping the single quote in the documentation stri

[nongnu] elpa/emacsql 44b4f89407 2/6: emacsql-sqlite-open: Enable foreign key constrains

2024-11-17 Thread ELPA Syncer
branch: elpa/emacsql commit 44b4f89407ca12c24a8ce304f762c55b95775074 Author: Jonas Bernoulli Commit: Jonas Bernoulli emacsql-sqlite-open: Enable foreign key constrains --- emacsql-sqlite.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emacsql-sqlite.el b/emacsql-sql

[nongnu] elpa/emacsql c6e05560be 1/6: emacsql-sqlite-open: Fix typo in doc-string

2024-11-17 Thread ELPA Syncer
branch: elpa/emacsql commit c6e05560be8542cbcfc032f7a17c752b2bb3e045 Author: Jonas Bernoulli Commit: Jonas Bernoulli emacsql-sqlite-open: Fix typo in doc-string --- emacsql-sqlite.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacsql-sqlite.el b/emacsql-sqlite.el in

[nongnu] elpa/emacsql 937d45a1c3 6/6: make: Compile emacsql-sqlite.el

2024-11-17 Thread ELPA Syncer
branch: elpa/emacsql commit 937d45a1c3827667d2521aa36a2139de5740839b Author: Jonas Bernoulli Commit: Jonas Bernoulli make: Compile emacsql-sqlite.el --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 1dd52c4d81..8cf8efd3e7 100644 --- a/Makefile +++ b/

[nongnu] elpa/emacsql c8fceaf236 5/6: emacsql-sqlite-connection: New function

2024-11-17 Thread ELPA Syncer
branch: elpa/emacsql commit c8fceaf236fc4b68e95160e0d4161a3e50a670ad Author: Jonas Bernoulli Commit: Jonas Bernoulli emacsql-sqlite-connection: New function --- emacsql-sqlite.el | 15 +++ 1 file changed, 15 insertions(+) diff --git a/emacsql-sqlite.el b/emacsql-sqlite.el index

[nongnu] elpa/emacsql 05b7a25d73 3/6: emacsql-sqlite-open: Add SETUP argument

2024-11-17 Thread ELPA Syncer
branch: elpa/emacsql commit 05b7a25d73b0559451844862a69910f8875de6aa Author: Jonas Bernoulli Commit: Jonas Bernoulli emacsql-sqlite-open: Add SETUP argument --- emacsql-sqlite.el | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/emacsql-sqlite.el b/emacsql-sqlit

[nongnu] elpa/emacsql 0d901004b9 4/6: emacsql-sqlite-open: Ensure directory containing database file exists

2024-11-17 Thread ELPA Syncer
branch: elpa/emacsql commit 0d901004b9b01965375505b51bdad780e53b1718 Author: Jonas Bernoulli Commit: Jonas Bernoulli emacsql-sqlite-open: Ensure directory containing database file exists --- emacsql-sqlite.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/emacsql-sqlite.el b/emacsql-

[nongnu] elpa/emacsql updated (be76529215 -> 937d45a1c3)

2024-11-17 Thread ELPA Syncer
elpasync pushed a change to branch elpa/emacsql. from be76529215 Silence check-declare when sqlite3 package isn't available new c6e05560be emacsql-sqlite-open: Fix typo in doc-string new 44b4f89407 emacsql-sqlite-open: Enable foreign key constrains new 05b7a25d73 em

[elpa] externals/consult 917cdd86cc: Add reference to feature request bug#74408

2024-11-17 Thread ELPA Syncer
branch: externals/consult commit 917cdd86cce06d74235ba0084422341b860e1569 Author: Daniel Mendler Commit: Daniel Mendler Add reference to feature request bug#74408 --- consult.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/consult.el b/consult.el index 3ae8c5d431..5

[elpa] externals/pulsar ebdcf1de14 4/7: Add pulsar-region-face which defaults to pulsar-face

2024-11-17 Thread ELPA Syncer
branch: externals/pulsar commit ebdcf1de1458a1b62d8d9935ffecad07f632dee1 Author: shipmints Commit: shipmints Add pulsar-region-face which defaults to pulsar-face Marked as of version 1.2.0. --- pulsar.el | 58 ++ 1 file change

[elpa] externals/ssh-deploy fdfad2de55 1/2: Fix invalid bind in ssh-deploy-prefix-map

2024-11-17 Thread ELPA Syncer
branch: externals/ssh-deploy commit fdfad2de55a6f14bb6d75ebb50735963952d9b2a Author: Alan Pearce Commit: GitHub Fix invalid bind in ssh-deploy-prefix-map --- ssh-deploy.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh-deploy.el b/ssh-deploy.el index 917d7f1504..d21

[elpa] externals/hyperbole 598abd3ae7 3/4: hywiki-word-at - Fix to exclude any char after the HyWikiWord

2024-11-17 Thread ELPA Syncer
branch: externals/hyperbole commit 598abd3ae7e6ac783581d7587fde3f7829a0c597 Author: bw Commit: bw hywiki-word-at - Fix to exclude any char after the HyWikiWord --- ChangeLog | 2 ++ hywiki.el | 2 +- test/hsys-org-tests.el | 15 +-- 3 files changed, 8

[elpa] externals/ssh-deploy dc8882d180 2/2: Merge pull request #76 from alanpearce/patch-1

2024-11-17 Thread ELPA Syncer
branch: externals/ssh-deploy commit dc8882d1806c0fdd635bc625b109179dfa3c929c Merge: 95fb076c9b fdfad2de55 Author: Christian Johansson Commit: GitHub Merge pull request #76 from alanpearce/patch-1 Fix invalid bind in ssh-deploy-prefix-map --- ssh-deploy.el | 2 +- 1 file changed, 1

[elpa] externals/hyperbole a7aefb122b 1/4: HyWiki - fix a number of edge cases with HyWiki highlighting

2024-11-17 Thread ELPA Syncer
branch: externals/hyperbole commit a7aefb122bdd2892f99b642a624c2a7fa2274e19 Author: bw Commit: bw HyWiki - fix a number of edge cases with HyWiki highlighting --- ChangeLog| 19 +++ hproperty.el | 7 --- hui-mouse.el | 10 ++ hywiki.e

[elpa] externals/hyperbole 7f0ac697a9 2/4: Merge branch 'master' into rsw

2024-11-17 Thread ELPA Syncer
branch: externals/hyperbole commit 7f0ac697a948108bc30c5e0a29f9d5f7e32eedad Merge: a7aefb122b d9f7c7fb7a Author: bw Commit: bw Merge branch 'master' into rsw --- ChangeLog | 12 +++ Makefile | 7 ++- hui-mouse.el | 4 +++- test/hsys-org-tes

[elpa] externals/beframe 6c694a5a46 1/2: Make beframe-do-not-assume-last-selected-buffer silent

2024-11-17 Thread ELPA Syncer
branch: externals/beframe commit 6c694a5a4625b987a01e97f54bfeb4476094fced Author: Protesilaos Stavrou Commit: Protesilaos Stavrou Make beframe-do-not-assume-last-selected-buffer silent --- beframe.el | 21 + 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/

[elpa] externals/hyperbole d9f7c7fb7a: Run Emacs as a make target for use with docker (#608)

2024-11-17 Thread ELPA Syncer
branch: externals/hyperbole commit d9f7c7fb7a34a153d636f809d91f5f94ea2dc4e7 Author: Mats Lidell Commit: GitHub Run Emacs as a make target for use with docker (#608) --- ChangeLog | 4 Makefile | 7 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/Chan

[nongnu] elpa/markdown-mode b8637bae07 2/2: Merge pull request #860 from jrblevin/fix-older-emacs

2024-11-17 Thread ELPA Syncer
branch: elpa/markdown-mode commit b8637bae075231d70fe7f845305eaba2c0240d89 Merge: e3e11c40cc 71ca08cca7 Author: Shohei YOSHIDA Commit: GitHub Merge pull request #860 from jrblevin/fix-older-emacs Use cl function instead of seq-every-p --- markdown-mode.el | 2 +- 1 file changed, 1

[nongnu] elpa/emacsql c229dfb749 1/4: emacql-sqlite-open: No longer set exit flag of process

2024-11-17 Thread ELPA Syncer
branch: elpa/emacsql commit c229dfb7494e72fd90e4c31993146abc021e347a Author: Jonas Bernoulli Commit: Jonas Bernoulli emacql-sqlite-open: No longer set exit flag of process There no longer can be a process, only the removed `emacsql-sqlite' back-end used a process. --- emacsql-s

[elpa] externals/pulsar 121b24dc19 2/7: Restore pulsar-pulse-on-window-change now via window-state-change-functions

2024-11-17 Thread ELPA Syncer
branch: externals/pulsar commit 121b24dc194a4fd62dc33384ce01ba7decbba91a Author: shipmints Commit: shipmints Restore pulsar-pulse-on-window-change now via window-state-change-functions - restore pulsar-pulse-on-window-change - added window-state-change-functions hook; previous e

[elpa] externals/pulsar updated (c3d2205dc5 -> ab0e2b727f)

2024-11-17 Thread ELPA Syncer
elpasync pushed a change to branch externals/pulsar. from c3d2205dc5 Acknowledge ukiran03 for commit 880dc5e new 0ab29a1220 Experimental support for temporary region-highlighting commands. new 121b24dc19 Restore pulsar-pulse-on-window-change now via window-state-change-fun

[elpa] externals/pulsar 44ed79b93e 6/7: Merge pull request #20 from shipmints/pulse-region-commands

2024-11-17 Thread ELPA Syncer
branch: externals/pulsar commit 44ed79b93e64d3c8f49d09782bd674d9a7d4 Merge: c3d2205dc5 25754e76c2 Author: Protesilaos Stavrou Commit: GitHub Merge pull request #20 from shipmints/pulse-region-commands Pulse region commands and face, pulsar-pulse-on-window-change --- pulsar.el |

[nongnu] elpa/emacsql 2e984f41a8 2/4: Rename emacsql-sqlite-common.el to emacsql-sqlite.el

2024-11-17 Thread ELPA Syncer
branch: elpa/emacsql commit 2e984f41a8fb9b407a15f42e12690d31a3c7e056 Author: Jonas Bernoulli Commit: Jonas Bernoulli Rename emacsql-sqlite-common.el to emacsql-sqlite.el --- emacsql-sqlite-builtin.el | 3 +-- emacsql-sqlite-module.el | 3 +-- emacsql

[nongnu] elpa/markdown-mode 71ca08cca7 1/2: Use cl function instead of seq-every-p

2024-11-17 Thread ELPA Syncer
branch: elpa/markdown-mode commit 71ca08cca726e3938f9d09030c35a027eb425a50 Author: Shohei YOSHIDA Commit: Shohei YOSHIDA Use cl function instead of seq-every-p seq-every-p and apply-partially is not autoloaded function on older emacs --- markdown-mode.el | 2 +- 1 file changed, 1 i

[nongnu] elpa/emacsql f751edcf81 3/4: Restore a transitional emacsql-sqlite-common.el

2024-11-17 Thread ELPA Syncer
branch: elpa/emacsql commit f751edcf8110df56a3c7f221818024a7d4b5be90 Author: Jonas Bernoulli Commit: Jonas Bernoulli Restore a transitional emacsql-sqlite-common.el --- emacsql-sqlite-common.el | 22 ++ 1 file changed, 22 insertions(+) diff --git a/emacsql-sqlite-common

[nongnu] elpa/emacsql updated (8ebf559f58 -> be76529215)

2024-11-17 Thread ELPA Syncer
elpasync pushed a change to branch elpa/emacsql. from 8ebf559f58 Remove emacsql-sqlite.el new c229dfb749 emacql-sqlite-open: No longer set exit flag of process new 2e984f41a8 Rename emacsql-sqlite-common.el to emacsql-sqlite.el new f751edcf81 Restore a transitional e

[nongnu] elpa/emacsql be76529215 4/4: Silence check-declare when sqlite3 package isn't available

2024-11-17 Thread ELPA Syncer
branch: elpa/emacsql commit be76529215cfdf477e2424de6f828dac019a6cdc Author: Jonas Bernoulli Commit: Jonas Bernoulli Silence check-declare when sqlite3 package isn't available --- emacsql-sqlite-module.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/emacsql-sqli

[elpa] externals/pulsar 78fc06863e 3/7: Merge branch 'protesilaos:main' into pulse-region-commands

2024-11-17 Thread ELPA Syncer
branch: externals/pulsar commit 78fc06863e0005da3874bfed510d8072de2878c9 Merge: 121b24dc19 c3d2205dc5 Author: shipmints <30732365+shipmi...@users.noreply.github.com> Commit: GitHub Merge branch 'protesilaos:main' into pulse-region-commands --- README.org | 2 +- pulsar.el | 16 ++--

[elpa] externals/pulsar 25754e76c2 5/7: Correct (remove-hook 'window-state-change-functions #'pulsar--pulse-on-window-change 'local)

2024-11-17 Thread ELPA Syncer
branch: externals/pulsar commit 25754e76c2b57a942c91319091be33a4dd10e35f Author: shipmints Commit: shipmints Correct (remove-hook 'window-state-change-functions #'pulsar--pulse-on-window-change 'local) --- pulsar.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pulsar

[elpa] externals/pulsar ab0e2b727f 7/7: Placate the compiler about two spaces after dot in docs

2024-11-17 Thread ELPA Syncer
branch: externals/pulsar commit ab0e2b727f214393bb3690e88b8bb05bfd3214d1 Author: Protesilaos Stavrou Commit: Protesilaos Stavrou Placate the compiler about two spaces after dot in docs --- pulsar.el | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pulsar.el b

[elpa] externals/pulsar 0ab29a1220 1/7: Experimental support for temporary region-highlighting commands.

2024-11-17 Thread ELPA Syncer
branch: externals/pulsar commit 0ab29a1220e235aadbc927ba9f9c862a92b1c669 Author: shipmints Commit: shipmints Experimental support for temporary region-highlighting commands. --- pulsar.el | 75 --- 1 file changed, 53 insertions(+),

[nongnu] elpa/tangotango-theme 897c1643bd 06/10: Merge pull request #23 from fapdash/fix-term-color-red

2024-11-17 Thread ELPA Syncer
branch: elpa/tangotango-theme commit 897c1643bd2cfd3c0b265a5f7599d1d04de0c304 Merge: 361bfb301a d288c6dc26 Author: Julien Barnier Commit: GitHub Merge pull request #23 from fapdash/fix-term-color-red Use lighter red for term for better contrast --- tangotango-theme.el | 2 +- 1 fil

[nongnu] elpa/subed e4a3c32072 1/3: add links

2024-11-17 Thread ELPA Syncer
branch: elpa/subed commit e4a3c320729cecce0f0789c012459eed401f309c Author: Sacha Chua Commit: Sacha Chua add links --- README.org | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index b34370675e..aeb7e8357e 100644 --- a/README.org +++ b/READM

[nongnu] elpa/subed ace4b62fd0 3/3: subed-word-data bugfix

2024-11-17 Thread ELPA Syncer
branch: elpa/subed commit ace4b62fd06554fad1e2ae62339b448c30c9ae70 Author: Sacha Chua Commit: Sacha Chua subed-word-data bugfix --- NEWS.org | 2 +- subed/subed-word-data.el | 2 +- subed/subed.el | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git

[nongnu] elpa/subed updated (414ce51696 -> ace4b62fd0)

2024-11-17 Thread ELPA Syncer
elpasync pushed a change to branch elpa/subed. from 414ce51696 add note and screenshot to readme new e4a3c32072 add links new c4c67a585f subed-word-data: bugfix new ace4b62fd0 subed-word-data bugfix Summary of changes: NEWS.org | 4 README.org

[nongnu] elpa/subed c4c67a585f 2/3: subed-word-data: bugfix

2024-11-17 Thread ELPA Syncer
branch: elpa/subed commit c4c67a585f0304ebf4e81e238132af6b444a9cc4 Author: Sacha Chua Commit: Sacha Chua subed-word-data: bugfix --- NEWS.org | 4 subed/subed-word-data.el | 2 +- subed/subed.el | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --

[nongnu] elpa/markdown-mode 28dad26e90 1/2: Support relative paths in stylesheets

2024-11-17 Thread ELPA Syncer
branch: elpa/markdown-mode commit 28dad26e90ff0e747d0351652e1594ed17107079 Author: Mattias Bengtsson Commit: Mattias Bengtsson Support relative paths in stylesheets --- CHANGES.md | 3 +++ markdown-mode.el | 4 +--- tests/markdown-test.el | 20 +--- 3 fil

[nongnu] elpa/markdown-mode e3e11c40cc 2/2: Merge pull request #857 from mattiasb/feature/relative-css-paths

2024-11-17 Thread ELPA Syncer
branch: elpa/markdown-mode commit e3e11c40cc952e7996a7d1bba52b2ceb57f6fae7 Merge: 1716694217 28dad26e90 Author: Shohei YOSHIDA Commit: GitHub Merge pull request #857 from mattiasb/feature/relative-css-paths Support relative paths in stylesheets --- CHANGES.md | 3 +++

[nongnu] elpa/tangotango-theme 361bfb301a 05/10: Merge pull request #21 from fapdash/fix-matching-parens

2024-11-17 Thread ELPA Syncer
branch: elpa/tangotango-theme commit 361bfb301a0f14094a228fa7f5c91e9677619141 Merge: 551c4cf2e7 a09791813e Author: Julien Barnier Commit: GitHub Merge pull request #21 from fapdash/fix-matching-parens Fix show-paren colors not getting set --- color-theme-tangotango.el | 4 ++-- tan

[nongnu] elpa/tangotango-theme 1b148d4dd5 08/10: Use lighter red for term for better contrast

2024-11-17 Thread ELPA Syncer
branch: elpa/tangotango-theme commit 1b148d4dd5769b3b4a8ada12b9f161c45ef00c42 Author: fap <459631+fapd...@users.noreply.github.com> Commit: Julien Barnier Use lighter red for term for better contrast This still only has a color contrast of 3.03, but before it was 1.56, so definit

[nongnu] elpa/tangotango-theme 27f5a182c5 02/10: Remove legacy color-theme-tangotango.el

2024-11-17 Thread ELPA Syncer
branch: elpa/tangotango-theme commit 27f5a182c5ee4559fdcf0d94efc0729c2163afc5 Author: fap <459631+fapd...@users.noreply.github.com> Commit: fap <459631+fapd...@users.noreply.github.com> Remove legacy color-theme-tangotango.el Remove legacy `color-theme` based theme version as suggeste

[nongnu] elpa/tangotango-theme 6255530b74 07/10: FIXUP Apply the change to the proper file

2024-11-17 Thread ELPA Syncer
branch: elpa/tangotango-theme commit 6255530b7435e3c947c2d595968da26913d42331 Author: fap <459631+fapd...@users.noreply.github.com> Commit: Julien Barnier FIXUP Apply the change to the proper file --- tangotango-theme.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a

[nongnu] elpa/tangotango-theme 6202d4a19a 10/10: doc: remove obsolete instructions for emacs 23 and 24

2024-11-17 Thread ELPA Syncer
branch: elpa/tangotango-theme commit 6202d4a19ac1def1b2596f1906c4524dd7303563 Author: Julien Barnier Commit: Julien Barnier doc: remove obsolete instructions for emacs 23 and 24 --- README.org | 72 -- 1 file changed, 72 deletions(

[nongnu] elpa/tangotango-theme 61c521cd2b 09/10: Remove obsolete color-theme-tangotango

2024-11-17 Thread ELPA Syncer
branch: elpa/tangotango-theme commit 61c521cd2b835fd7a5e2cb55ff2bd4064fb0b3e0 Merge: 897c1643bd 1b148d4dd5 Author: Julien Barnier Commit: Julien Barnier Remove obsolete color-theme-tangotango --- color-theme-tangotango.el | 254 -- 1 file changed,

[nongnu] elpa/tangotango-theme a09791813e 04/10: FIXUP Apply the change to the proper file

2024-11-17 Thread ELPA Syncer
branch: elpa/tangotango-theme commit a09791813e7ecd13183694bb3ebb09bd66499882 Author: fap <459631+fapd...@users.noreply.github.com> Commit: fap <459631+fapd...@users.noreply.github.com> FIXUP Apply the change to the proper file --- tangotango-theme.el | 4 ++-- 1 file changed, 2 insertions(+)

[nongnu] elpa/tangotango-theme d288c6dc26 03/10: Use lighter red for term for better contrast

2024-11-17 Thread ELPA Syncer
branch: elpa/tangotango-theme commit d288c6dc2610a57b56dd18830557f3abfb532319 Author: fap <459631+fapd...@users.noreply.github.com> Commit: fap <459631+fapd...@users.noreply.github.com> Use lighter red for term for better contrast This still only has a color contrast of 3.03, but

[nongnu] elpa/tangotango-theme cc82639dfd 01/10: Fix show-paren colors not getting set

2024-11-17 Thread ELPA Syncer
branch: elpa/tangotango-theme commit cc82639dfd200c2af78746af6ad043bcfc611e4b Author: fap <459631+fapd...@users.noreply.github.com> Commit: fap <459631+fapd...@users.noreply.github.com> Fix show-paren colors not getting set The specified faces don't have the `-face` postfix.

[nongnu] elpa/tangotango-theme updated (551c4cf2e7 -> 6202d4a19a)

2024-11-17 Thread ELPA Syncer
elpasync pushed a change to branch elpa/tangotango-theme. from 551c4cf2e7 Merge pull request #19 from fapdash/better-contrast-term-red new cc82639dfd Fix show-paren colors not getting set new a09791813e FIXUP Apply the change to the proper file new 361bfb301a Merge

[elpa] externals/beframe updated (ae7aaf8bcf -> c1f0df14d3)

2024-11-17 Thread ELPA Syncer
elpasync pushed a change to branch externals/beframe. from ae7aaf8bcf Simplify message produced by beframe--modify-buffer-list new 6c694a5a46 Make beframe-do-not-assume-last-selected-buffer silent new c1f0df14d3 Use if-let* everywhere because Emacs 31 prefers it Summary of

[elpa] externals/beframe c1f0df14d3 2/2: Use if-let* everywhere because Emacs 31 prefers it

2024-11-17 Thread ELPA Syncer
branch: externals/beframe commit c1f0df14d3cb6c08f1c00b3a1a91865b49e6f2b3 Author: Protesilaos Stavrou Commit: Protesilaos Stavrou Use if-let* everywhere because Emacs 31 prefers it --- beframe.el | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/beframe.el b

[elpa] externals/dape f6e8289fe1 4/7: Small formatting fixups

2024-11-17 Thread ELPA Syncer
branch: externals/dape commit f6e8289fe1c49cd7c0566e9f4a3fb04f4414fb51 Author: Daniel Pettersson Commit: Daniel Pettersson Small formatting fixups --- dape.el | 15 +++ 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/dape.el b/dape.el index abfaf7ea5a..c5a68ec735 1

[elpa] externals/modus-themes dc0d606e2a: Refactor the palette preview commands to use tabulated-list-mode

2024-11-17 Thread ELPA Syncer
branch: externals/modus-themes commit dc0d606e2a7058485913cbb33f27bad8e66c2d7b Author: Protesilaos Stavrou Commit: Protesilaos Stavrou Refactor the palette preview commands to use tabulated-list-mode --- doc/modus-themes.info | 244 +- doc/mod