[nongnu] elpa/idle-highlight-mode f9091c907d: Fix missing save-match-data

2023-03-19 Thread ELPA Syncer
branch: elpa/idle-highlight-mode
commit f9091c907d41e7b12d99d108a194229b8dbfc5ae
Author: Campbell Barton 
Commit: Campbell Barton 

Fix missing save-match-data
---
 changelog.rst  |  5 +
 idle-highlight-mode.el | 25 +
 2 files changed, 18 insertions(+), 12 deletions(-)

diff --git a/changelog.rst b/changelog.rst
index 7fc39ba3fa..c9ed0a4111 100644
--- a/changelog.rst
+++ b/changelog.rst
@@ -1,3 +1,8 @@
+
+- In development.
+
+  - Fix missing call to ``save-match-data``.
+
 - Version 1.1.4 (2023-01-10)
 
   - Rename ``global-idle-highlight-mode`` to ``idle-highlight-global-mode`` and
diff --git a/idle-highlight-mode.el b/idle-highlight-mode.el
index 4223f6007f..92ba7009ab 100755
--- a/idle-highlight-mode.el
+++ b/idle-highlight-mode.el
@@ -227,18 +227,19 @@ Where RANGES is an unordered list of (min . max) cons 
cells."
 Argument VISIBLE-RANGES is a list of (min . max) ranges to highlight."
   (idle-highlight--unhighlight)
   (save-excursion
-(let ((target-regexp (concat "\\_<" (regexp-quote target) "\\_>")))
-  (pcase-dolist (`(,beg . ,end) visible-ranges)
-(goto-char beg)
-(while (re-search-forward target-regexp end t)
-  (let ((match-beg (match-beginning 0))
-(match-end (match-end 0)))
-(unless (and idle-highlight-exclude-point
- (eq target-beg match-beg)
- (eq target-end match-end))
-  (let ((ov (make-overlay match-beg match-end)))
-(overlay-put ov 'face 'idle-highlight)
-(push ov idle-highlight--overlays)
+(save-match-data
+  (let ((target-regexp (concat "\\_<" (regexp-quote target) "\\_>")))
+(pcase-dolist (`(,beg . ,end) visible-ranges)
+  (goto-char beg)
+  (while (re-search-forward target-regexp end t)
+(let ((match-beg (match-beginning 0))
+  (match-end (match-end 0)))
+  (unless (and idle-highlight-exclude-point
+   (eq target-beg match-beg)
+   (eq target-end match-end))
+(let ((ov (make-overlay match-beg match-end)))
+  (overlay-put ov 'face 'idle-highlight)
+  (push ov idle-highlight--overlays))
 
 (defun idle-highlight--word-at-point-args ()
   "Return arguments for `idle-highlight--highlight'."



[nongnu] elpa/spell-fu aed6e87aa3: spell-fu: improve overlay extending to support non-exact overlaps

2023-03-19 Thread ELPA Syncer
branch: elpa/spell-fu
commit aed6e87aa31013534b7a6cbedb26e4f29ccea735
Author: Campbell Barton 
Commit: Campbell Barton 

spell-fu: improve overlay extending to support non-exact overlaps
---
 spell-fu.el | 25 ++---
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/spell-fu.el b/spell-fu.el
index d29ddc25ab..2c6ebc3a04 100644
--- a/spell-fu.el
+++ b/spell-fu.el
@@ -791,22 +791,25 @@ when checking the entire buffer for example."
   (when (and spell-fu--idle-overlay-last (not (overlay-buffer 
spell-fu--idle-overlay-last)))
 (setq spell-fu--idle-overlay-last nil))
 
-  (cond
-   ;; Extend forwards.
-   ((and spell-fu--idle-overlay-last (eq pos-beg (overlay-end 
spell-fu--idle-overlay-last)))
-(move-overlay spell-fu--idle-overlay-last (overlay-start 
spell-fu--idle-overlay-last) pos-end))
-   ;; Extend backwards.
-   ((and spell-fu--idle-overlay-last (eq pos-end (overlay-start 
spell-fu--idle-overlay-last)))
-(move-overlay spell-fu--idle-overlay-last pos-beg (overlay-end 
spell-fu--idle-overlay-last)))
-   (t
+  (unless (and spell-fu--idle-overlay-last
+   (let ((last-beg (overlay-start spell-fu--idle-overlay-last))
+ (last-end (overlay-end spell-fu--idle-overlay-last)))
+ (cond
+  ((> last-beg pos-end)
+   nil)
+  ((< last-end pos-beg)
+   nil)
+  (t ; Extend when overlap.
+   (move-overlay
+spell-fu--idle-overlay-last (min pos-beg last-beg) (max 
pos-end last-end))
+   t
+
 (let ((item-ov (make-overlay pos-beg pos-end)))
   ;; Handy for debugging pending regions to be checked.
   ;; (overlay-put item-ov 'face '(:background "#00" :extend t))
-
   (overlay-put item-ov 'spell-fu-pending t)
   (overlay-put item-ov 'evaporate 't)
-
-  (setq spell-fu--idle-overlay-last item-ov
+  (setq spell-fu--idle-overlay-last item-ov)))
 
   ;; Use `inhibit-quit' as a way to check if `jit-lock-stealth' is in use.
   (when inhibit-quit



[elpa] externals/org 533a83a989: org-compile-file: Expose logs when running Org tests

2023-03-19 Thread ELPA Syncer
branch: externals/org
commit 533a83a989d2f0d35f210c73755bbab12ec02582
Author: Ihor Radchenko 
Commit: Ihor Radchenko 

org-compile-file: Expose logs when running Org tests

* lisp/org-macs.el (org-compile-file): Output logs on failure when
running Org test suite.  This is useful to expose more information in
CI tests.
---
 lisp/org-macs.el | 5 +
 1 file changed, 5 insertions(+)

diff --git a/lisp/org-macs.el b/lisp/org-macs.el
index c7f9d5364e..946e19e049 100644
--- a/lisp/org-macs.el
+++ b/lisp/org-macs.el
@@ -380,6 +380,11 @@ it for output."
 ;; Check for process failure.  Output file is expected to be
 ;; located in the same directory as SOURCE.
 (unless (org-file-newer-than-p output time)
+  (ignore (defvar org-batch-test))
+  ;; Display logs when running tests.
+  (when org-batch-test
+(message "org-compile-file log ::\n-\n%s\n-\n"
+ (with-current-buffer log-buf (buffer-string
   (error (format "File %S wasn't produced%s" output err-msg)))
 output))
 



[elpa] externals/compat updated (684ada93bb -> 7775c31857)

2023-03-19 Thread ELPA Syncer
elpasync pushed a change to branch externals/compat.

  from  684ada93bb compat-29: Add directory-abbrev-apply and 
directory-abbrev-make-regexp
   new  cf19a498bf Prefix tests with compat- (Fix #20)
   new  7775c31857 compat-tests: Remove duplicate compat-compat- prefix


Summary of changes:
 compat-tests.el | 372 
 1 file changed, 186 insertions(+), 186 deletions(-)



[elpa] externals/compat 7775c31857 2/2: compat-tests: Remove duplicate compat-compat- prefix

2023-03-19 Thread ELPA Syncer
branch: externals/compat
commit 7775c3185764337b8a78c3005aab4a11aa80dfe8
Author: Daniel Mendler 
Commit: Daniel Mendler 

compat-tests: Remove duplicate compat-compat- prefix
---
 compat-tests.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compat-tests.el b/compat-tests.el
index a4e80de031..8972273825 100644
--- a/compat-tests.el
+++ b/compat-tests.el
@@ -79,14 +79,14 @@
   (declare (indent 2))
   (if (eval cond t) then (macroexp-progn else)))
 
-(ert-deftest compat-compat-loaded-features ()
+(ert-deftest compat-loaded-features ()
   (let ((version 0))
 (while (< version 30)
   (should-equal (> version emacs-major-version)
 (featurep (intern (format "compat-%s" version
   (setq version (1+ version)
 
-(ert-deftest compat-compat-function ()
+(ert-deftest compat-function ()
   (let ((sym (compat-function plist-put)) list)
 (should sym)
 (should (symbolp sym))



[elpa] externals/compat cf19a498bf 1/2: Prefix tests with compat- (Fix #20)

2023-03-19 Thread ELPA Syncer
branch: externals/compat
commit cf19a498bf98569bcb4a97351411937b9ee4fcf6
Author: Daniel Mendler 
Commit: Daniel Mendler 

Prefix tests with compat- (Fix #20)
---
 compat-tests.el | 376 
 1 file changed, 188 insertions(+), 188 deletions(-)

diff --git a/compat-tests.el b/compat-tests.el
index 8b93c704b4..a4e80de031 100644
--- a/compat-tests.el
+++ b/compat-tests.el
@@ -33,7 +33,7 @@
 ;;  :follow
 ;;  (lambda (link _)
 ;;(org-link-open-from-string
-;; (format "[[file:compat-tests.el::ert-deftest %s ()]]" link
+;; (format "[[file:compat-tests.el::ert-deftest compat-%s ()]]" link
 ;;
 ;;  You can then jump to the links with the command
 ;;  `org-open-at-point-global', ideally bound to a convenient key.
@@ -79,14 +79,14 @@
   (declare (indent 2))
   (if (eval cond t) then (macroexp-progn else)))
 
-(ert-deftest compat-loaded-features ()
+(ert-deftest compat-compat-loaded-features ()
   (let ((version 0))
 (while (< version 30)
   (should-equal (> version emacs-major-version)
 (featurep (intern (format "compat-%s" version
   (setq version (1+ version)
 
-(ert-deftest compat-function ()
+(ert-deftest compat-compat-function ()
   (let ((sym (compat-function plist-put)) list)
 (should sym)
 (should (symbolp sym))
@@ -94,11 +94,11 @@
 (should-equal (compat-call plist-get list "first" #'string=) 1)))
 
 (defconst compat-tests--version (package-get-version))
-(ert-deftest package-get-version ()
+(ert-deftest compat-package-get-version ()
   (should (stringp compat-tests--version))
   (should-equal 29 (car (version-to-list compat-tests--version
 
-(ert-deftest buffer-match-p ()
+(ert-deftest compat-buffer-match-p ()
   (let ((b "*compat-test-buffer*")
 (child-mode (make-symbol "child"))
 (parent-mode (make-symbol "parent")))
@@ -118,7 +118,7 @@
 (should (buffer-match-p `(and (major-mode . ,child-mode) "compat" t) b))
 (should (buffer-match-p `(or (major-mode . prog-mode) "foo" t) b
 
-(ert-deftest match-buffers ()
+(ert-deftest compat-match-buffers ()
   (let ((b1 (get-buffer-create "*compat-buffer1*"))
 (b2 (get-buffer-create "*compat-buffer2*"))
 (b3 (get-buffer-create "*compat-buffer3*"))
@@ -132,7 +132,7 @@
 (match-buffers `(or (major-mode . ,m1) (major-mode . ,m2))
(list b1 b2 b3)
 
-(ert-deftest thing-at-mouse ()
+(ert-deftest compat-thing-at-mouse ()
   (save-window-excursion
 (with-temp-buffer
   (let ((event `(mouse-1 (,(selected-window) 1 (0 . 0) 0
@@ -150,7 +150,7 @@
 (should-equal (point) 1)
 (should-equal '((1 . 18)) (region-bounds))
 
-(ert-deftest dolist-with-progress-reporter ()
+(ert-deftest compat-dolist-with-progress-reporter ()
   (let (y)
 (should-equal
  (dolist-with-progress-reporter (x '(1 2 3) y) "Reporter"
@@ -163,7 +163,7 @@
(push x y))
  '(3 2 1
 
-(ert-deftest minibuffer-history-value ()
+(ert-deftest compat-minibuffer-history-value ()
   (let ((minibuffer-history-variable 'file-name-history)
 (file-name-history '("a" "b" "c")))
 (should-equal (minibuffer-history-value) '("a" "b" "c")))
@@ -179,7 +179,7 @@
 nil nil nil 'file-name-history
  '("x" "y" "z"
 
-(ert-deftest with-minibuffer-selected-window ()
+(ert-deftest compat-with-minibuffer-selected-window ()
   (let (ran)
 (should-not (minibuffer-selected-window))
 (should-not (with-minibuffer-selected-window
@@ -194,19 +194,19 @@
   (should ran))
   (advice-remove #'minibuffer-selected-window #'selected-window
 
-(ert-deftest fixnump ()
+(ert-deftest compat-fixnump ()
   (should (fixnump 0))
   (should (fixnump most-negative-fixnum))
   (should (fixnump most-positive-fixnum)))
 
-(ert-deftest bignump ()
+(ert-deftest compat-bignump ()
   (should-not (bignump 0))
   (should-not (bignump most-negative-fixnum))
   (should-not (bignump most-positive-fixnum))
   (should-equal (bignump (1+ most-positive-fixnum)) (> emacs-major-version 26))
   (should-equal (bignump (1- most-negative-fixnum)) (> emacs-major-version 
26)))
 
-(ert-deftest buttonize ()
+(ert-deftest compat-buttonize ()
   (let ((b (buttonize "button" 'c 'd 'h)))
 (should-equal b "button")
 (should-equal 'c (get-text-property 0 'action b))
@@ -216,7 +216,7 @@
 (should-equal 'h (get-text-property 0 'help-echo b))
 (should-equal 'h (get-text-property 5 'help-echo b
 
-(ert-deftest button-buttonize ()
+(ert-deftest compat-button-buttonize ()
   (let ((b (with-no-warnings (button-buttonize "button" 'c 'd
 (should-equal b "button")
 (should-equal 'c (get-text-property 0 'action b))
@@ -224,7 +224,7 @@
 (should-equal 'd (get-text-property 0 'button-data b))
 (should-equal 'd (get-text-property 5 'button-data b
 
-(ert-deftest buttonize-region ()
+(ert-deftest compat-buttonize-region ()
  

[elpa] externals-release/org 4c01eba265: org-texinfo-supports-math-p: Fix CI test failures

2023-03-19 Thread ELPA Syncer
branch: externals-release/org
commit 4c01eba265edfb910e926c5559aca5bf7d7a3650
Author: Ihor Radchenko 
Commit: Ihor Radchenko 

org-texinfo-supports-math-p: Fix CI test failures

* lisp/ox-texinfo.el (org-texinfo-supports-math-p): Consider
compilation error as indication that math is not supported.  texinfo
compiler throws "unknown command `displaymath'" error in such case,
causing `org-texinfo-compile' to err as well.

Fixes CI tests failures when testing with Texinfo versions with no
math support.

https://builds.sr.ht/~bzg/job/959487
---
 lisp/ox-texinfo.el | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/lisp/ox-texinfo.el b/lisp/ox-texinfo.el
index 4ff482cc3f..f822f3d110 100644
--- a/lisp/ox-texinfo.el
+++ b/lisp/ox-texinfo.el
@@ -2037,10 +2037,13 @@ Once computed, the results remain cached."
"\n")))
   (with-temp-file input-file
 (insert input-content))
-  (let* ((output-file (org-texinfo-compile input-file))
- (output-content (with-temp-buffer
-   (insert-file-contents output-file)
-   (buffer-string
+  (when-let* ((output-file
+   ;; If compilation fails, consider math to
+   ;; be not supported.
+   (ignore-errors (org-texinfo-compile input-file)))
+  (output-content (with-temp-buffer
+(insert-file-contents output-file)
+(buffer-string
 (let ((result (string-match-p (regexp-quote math-example)
   output-content)))
   (delete-file input-file)



[elpa] externals/org a645a6d679: Merge branch 'bugfix'

2023-03-19 Thread ELPA Syncer
branch: externals/org
commit a645a6d6799716c021dcb142143a7752374dd1eb
Merge: 533a83a989 4c01eba265
Author: Ihor Radchenko 
Commit: Ihor Radchenko 

Merge branch 'bugfix'
---
 lisp/ox-texinfo.el | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/lisp/ox-texinfo.el b/lisp/ox-texinfo.el
index 4ff482cc3f..f822f3d110 100644
--- a/lisp/ox-texinfo.el
+++ b/lisp/ox-texinfo.el
@@ -2037,10 +2037,13 @@ Once computed, the results remain cached."
"\n")))
   (with-temp-file input-file
 (insert input-content))
-  (let* ((output-file (org-texinfo-compile input-file))
- (output-content (with-temp-buffer
-   (insert-file-contents output-file)
-   (buffer-string
+  (when-let* ((output-file
+   ;; If compilation fails, consider math to
+   ;; be not supported.
+   (ignore-errors (org-texinfo-compile input-file)))
+  (output-content (with-temp-buffer
+(insert-file-contents output-file)
+(buffer-string
 (let ((result (string-match-p (regexp-quote math-example)
   output-content)))
   (delete-file input-file)



[elpa] externals/org updated (533a83a989 -> a645a6d679)

2023-03-19 Thread ELPA Syncer
elpasync pushed a change to branch externals/org.

  from  533a83a989 org-compile-file: Expose logs when running Org tests
   new  4c01eba265 org-texinfo-supports-math-p: Fix CI test failures
   new  a645a6d679 Merge branch 'bugfix'


Summary of changes:
 lisp/ox-texinfo.el | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)



[nongnu] elpa/git-commit b7daf6a2ff: magit-branch-delete: Improve "also on remote?" prompt

2023-03-19 Thread ELPA Syncer
branch: elpa/git-commit
commit b7daf6a2ff00f7752d05dec17f2f5a825954b151
Author: Jonas Bernoulli 
Commit: Jonas Bernoulli 

magit-branch-delete: Improve "also on remote?" prompt

Closes #4905.
---
 lisp/magit-branch.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lisp/magit-branch.el b/lisp/magit-branch.el
index 4b8b100ab3..73f7bbf50f 100644
--- a/lisp/magit-branch.el
+++ b/lisp/magit-branch.el
@@ -593,7 +593,9 @@ prompt is confusing."
  (offset (1+ (length remote
 (cond
  ((magit-confirm 'delete-branch-on-remote
-"Delete %s on the remote (not just locally)"
+(format "Deleting local %s.  Also delete on %s"
+(magit-ref-fullname (car branches))
+remote)
 "Delete %i branches on the remote (not just locally)"
 'noabort branches)
   ;; The ref may actually point at another rev on the remote,



[nongnu] elpa/magit updated (d05b1ed381 -> b7daf6a2ff)

2023-03-19 Thread ELPA Syncer
elpasync pushed a change to branch elpa/magit.

  from  d05b1ed381 Show errors inline in log buffers
  adds  b7daf6a2ff magit-branch-delete: Improve "also on remote?" prompt

No new revisions were added by this update.

Summary of changes:
 lisp/magit-branch.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)



[nongnu] elpa/magit-section updated (d05b1ed381 -> b7daf6a2ff)

2023-03-19 Thread ELPA Syncer
elpasync pushed a change to branch elpa/magit-section.

  from  d05b1ed381 Show errors inline in log buffers
  adds  b7daf6a2ff magit-branch-delete: Improve "also on remote?" prompt

No new revisions were added by this update.

Summary of changes:
 lisp/magit-branch.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)



[elpa] externals/org cd2355a204: ob-clojure.el: Fix compiler warning

2023-03-19 Thread ELPA Syncer
branch: externals/org
commit cd2355a20425865b76648891f3733d7eed151eaf
Author: Daniel Kraus 
Commit: Daniel Kraus 

ob-clojure.el: Fix compiler warning

* lisp/ob-clojure.el (ob-clojure-eval-with-cider): Silence compiler
warning about unused argument 'params'.
---
 lisp/ob-clojure.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/ob-clojure.el b/lisp/ob-clojure.el
index 70e0321543..2b17516ecb 100644
--- a/lisp/ob-clojure.el
+++ b/lisp/ob-clojure.el
@@ -265,7 +265,7 @@ or set the `:backend' header argument"
s))
(reverse ob-clojure-inf-clojure-tmp-output)
 
-(defun ob-clojure-eval-with-cider (expanded params &optional cljs-p)
+(defun ob-clojure-eval-with-cider (expanded _params &optional cljs-p)
   "Evaluate EXPANDED code block with PARAMS using cider.
 When CLJS-P is non-nil, use a cljs connection instead of clj."
   (org-require-package 'cider "Cider")



[elpa] externals/realgud-pdbpp 483b4b8e21: Initial Pdb++ setup

2023-03-19 Thread Rocky Bernstein
branch: externals/realgud-pdbpp
commit 483b4b8e211c783ea977c10317e815b54a3b3eaa
Author: rocky 
Commit: rocky 

Initial Pdb++ setup
---
 LICENSE| 674 +
 Makefile.am|   2 +-
 README.md  |   2 +-
 configure.ac   |   6 +-
 {ipdb => pdbpp}/Makefile.am|   4 +-
 {ipdb => pdbpp}/core.el| 114 ++--
 pdbpp/elpy.el  |  24 +
 {ipdb => pdbpp}/init.el|  76 +--
 ipdb/ipdb.el => pdbpp/pdbpp.el |  62 +-
 {ipdb => pdbpp}/track-mode.el  |  44 +-
 realgud-ipdb.el => realgud-pdbpp.el|  16 +-
 test/.gitignore|   1 +
 test/{test-ipdb.el => test-pdbpp.el}   |  22 +-
 test/test-pytest-failure.py|   8 +
 test/{test-regexp-ipdb.el => test-regexp-pdbpp.el} |  18 +-
 15 files changed, 891 insertions(+), 182 deletions(-)

diff --git a/LICENSE b/LICENSE
new file mode 100644
index 00..f288702d2f
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,674 @@
+GNU GENERAL PUBLIC LICENSE
+   Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. 
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+Preamble
+
+  The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+  The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works.  By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.  We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors.  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+  To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights.  Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received.  You must make sure that they, too, receive
+or can get the source code.  And you must show them these terms so they
+know their rights.
+
+  Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+  For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software.  For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+  Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so.  This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software.  The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable.  Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products.  If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+  Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary.  To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+   TERMS AND CONDITIONS
+

[elpa] branch externals/realgud-pdbpp created (now 483b4b8e21)

2023-03-19 Thread Rocky Bernstein
rocky pushed a change to branch externals/realgud-pdbpp.

at  483b4b8e21 Initial Pdb++ setup

This branch includes the following new commits:

   new  483b4b8e21 Initial Pdb++ setup




[elpa] main 1e73df654c: Add realgud-pdbpp and realgud-trepan-xpy

2023-03-19 Thread Rocky Bernstein
branch: main
commit 1e73df654cd410ca5b494f64bf2c9af68a1043ca
Author: rocky 
Commit: rocky 

Add realgud-pdbpp and realgud-trepan-xpy
---
 elpa-packages | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/elpa-packages b/elpa-packages
index bb1912e978..a4de01659a 100644
--- a/elpa-packages
+++ b/elpa-packages
@@ -545,7 +545,9 @@
  (realgud-lldb :url "https://github.com/realgud/realgud-lldb";)
  (realgud-node-debug   :url "https://github.com/realgud/realgud-node-debug";)
  (realgud-node-inspect :url 
"https://github.com/realgud/realgud-node-inspect";)
+ (realgud-pdbpp:url "https://github.com/realgud/realgud-pdbpp";)
  (realgud-trepan-ni:url "https://github.com/realgud/realgud-trepan-ni";)
+ (realgud-trepan-xpy   :url 
"https://github.com/realgud/realgud-trepan-xpy";)
  (rec-mode :url 
"https://git.savannah.gnu.org/git/recutils/rec-mode.git";)
  (register-list:url nil)
  (relint   :url "https://github.com/mattiase/relint";



[elpa] branch externals/realgud-treapn-xpy created (now ddf264c1ea)

2023-03-19 Thread Rocky Bernstein
rocky pushed a change to branch externals/realgud-treapn-xpy.

at  ddf264c1ea Add install instruction

No new revisions were added by this update.



[elpa] externals/realgud-ipdb 9a2c70eb69: Remove INSTALL.md ...

2023-03-19 Thread ELPA Syncer
branch: externals/realgud-ipdb
commit 9a2c70eb69a91af7b7a8f3ddea69a65d390e83a4
Author: rocky 
Commit: rocky 

Remove INSTALL.md ...

It is now folded into README.md
---
 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.am b/Makefile.am
index e950187f32..04361fdeff 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -15,7 +15,7 @@ include common.mk
 
 PHONY=check clean dist distclean test check-short check-terse install-short
 
-EXTRA_DIST = common.mk.in INSTALL.md README.md THANKS $(lisp_files)
+EXTRA_DIST = common.mk.in README.md THANKS $(lisp_files)
 
 if MAINTAINER_MODE
 



[elpa] externals/realgud-lldb 0ce28d7aa9 2/2: Update README.md

2023-03-19 Thread ELPA Syncer
branch: externals/realgud-lldb
commit 0ce28d7aa9a74a60aed6555a01d015735da0a6b9
Author: R. Bernstein 
Commit: GitHub 

Update README.md
---
 README.md | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index ceeff01c12..eff053a7ab 100644
--- a/README.md
+++ b/README.md
@@ -3,15 +3,15 @@
 [![MELPA Stable][melpa-stable-image]][melpa-stable]
 
 Introduction
-
+
 
 Emacs Lisp Module to add [lldb](https://lldb.llvm.org/) support to 
[realgud](http://github.com/realgud/realgud).
 
 Installation
-
+=
 
 From ELPA or MELPA
-++
+---
 
 Inside GNU Emacs evaluate:
 
@@ -21,7 +21,7 @@ Inside GNU Emacs evaluate:
 
 
 From github source
-++
+--
 
 * Have `realgud` and `test-simple` installed.
 * From inside GNU Emacs, evaluate:



[elpa] branch externals/realgud-trepan-xpy created (now ddf264c1ea)

2023-03-19 Thread ELPA Syncer
elpasync pushed a change to branch externals/realgud-trepan-xpy.

at  ddf264c1ea Add install instruction

No new revisions were added by this update.



[elpa] externals/realgud-lldb f3318314e1 1/2: Fold INSTALL.md into README.md

2023-03-19 Thread ELPA Syncer
branch: externals/realgud-lldb
commit f3318314e1defcd75b0b3970ed22b6cc8a54b846
Author: rocky 
Commit: rocky 

Fold INSTALL.md into README.md
---
 INSTALL.md  |  5 -
 Makefile.am |  2 +-
 README.md   | 25 +
 3 files changed, 26 insertions(+), 6 deletions(-)

diff --git a/INSTALL.md b/INSTALL.md
deleted file mode 100644
index 6b07102d3c..00
--- a/INSTALL.md
+++ /dev/null
@@ -1,5 +0,0 @@
-* Have `realgud` and `test-simple` installed.
-* From inside emacs, evaluate:
-```lisp
-  (compile (format "EMACSLOADPATH=:%s:%s ./autogen.sh" (file-name-directory 
(locate-library "test-simple.elc")) (file-name-directory (locate-library 
"realgud.elc"
-```
diff --git a/Makefile.am b/Makefile.am
index 9b80116a89..e0d0f37313 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -15,7 +15,7 @@ include common.mk
 
 PHONY=check clean dist distclean test check-short check-terse install-short
 
-EXTRA_DIST = common.mk.in INSTALL.md README.md THANKS $(lisp_files)
+EXTRA_DIST = common.mk.in README.md THANKS $(lisp_files)
 
 if MAINTAINER_MODE
 
diff --git a/README.md b/README.md
index 231527ff7f..ceeff01c12 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,33 @@
 [![MELPA][melpa-image]][melpa]
 [![MELPA Stable][melpa-stable-image]][melpa-stable]
 
+Introduction
+
+
 Emacs Lisp Module to add [lldb](https://lldb.llvm.org/) support to 
[realgud](http://github.com/realgud/realgud).
 
+Installation
+
+
+From ELPA or MELPA
+++
+
+Inside GNU Emacs evaluate:
+
+```lisp
+  (package-install realgud-lldb)
+```
+
+
+From github source
+++
+
+* Have `realgud` and `test-simple` installed.
+* From inside GNU Emacs, evaluate:
+```lisp
+  (compile (format "EMACSLOADPATH=:%s:%s ./autogen.sh" (file-name-directory 
(locate-library "test-simple.elc")) (file-name-directory (locate-library 
"realgud.elc"
+```
+
 [travis-image]: 
https://api.travis-ci.org/realgud/realgud-lldb.svg?branch=master
 [travis-url]: https://travis-ci.org/realgud/realgud-lldb
 [melpa-stable-image]: http://stable.melpa.org/packages/realgud-lldb-badge.svg



[elpa] externals/realgud-lldb updated (74d442abc8 -> 0ce28d7aa9)

2023-03-19 Thread ELPA Syncer
elpasync pushed a change to branch externals/realgud-lldb.

  from  74d442abc8 Merge branch 'master' of github.com:realgud/realgud-lldb
   new  f3318314e1 Fold INSTALL.md into README.md
   new  0ce28d7aa9 Update README.md


Summary of changes:
 INSTALL.md  |  5 -
 Makefile.am |  2 +-
 README.md   | 25 +
 3 files changed, 26 insertions(+), 6 deletions(-)
 delete mode 100644 INSTALL.md



[nongnu] elpa/git-commit updated (b7daf6a2ff -> 2292d92101)

2023-03-19 Thread ELPA Syncer
elpasync pushed a change to branch elpa/git-commit.

  from  b7daf6a2ff magit-branch-delete: Improve "also on remote?" prompt
   new  543efd16e7 Ignore magit-buffer-topdir when preparing another buffer
   new  2292d92101 magit-wip.el: Cosmetics


Summary of changes:
 lisp/magit-git.el  |  7 +--
 lisp/magit-mode.el |  4 ++--
 lisp/magit-wip.el  | 18 +-
 3 files changed, 16 insertions(+), 13 deletions(-)



[nongnu] elpa/git-commit 2292d92101 2/2: magit-wip.el: Cosmetics

2023-03-19 Thread ELPA Syncer
branch: elpa/git-commit
commit 2292d921019abfe58702582eb9bacda9d843e9c9
Author: Jonas Bernoulli 
Commit: Jonas Bernoulli 

magit-wip.el: Cosmetics
---
 lisp/magit-wip.el | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/lisp/magit-wip.el b/lisp/magit-wip.el
index 6f9642c996..c6745afcef 100644
--- a/lisp/magit-wip.el
+++ b/lisp/magit-wip.el
@@ -143,10 +143,10 @@ variant `magit-wip-after-save-mode'."
 (remove-hook 'after-save-hook #'magit-wip-commit-buffer-file t)))
 
 (defun magit-wip-after-save-local-mode-turn-on ()
-  (and buffer-file-name
-   (magit-inside-worktree-p t)
-   (magit-file-tracked-p buffer-file-name)
-   (magit-wip-after-save-local-mode)))
+  (when (and buffer-file-name
+ (magit-inside-worktree-p t)
+ (magit-file-tracked-p buffer-file-name))
+(magit-wip-after-save-local-mode)))
 
 ;;;###autoload
 (define-globalized-minor-mode magit-wip-after-save-mode
@@ -160,11 +160,11 @@ variant `magit-wip-after-save-mode'."
 Also see `magit-wip-after-save-mode' which calls this function
 automatically whenever a buffer visiting a tracked file is saved."
   (interactive (list "wip-save %s after save"))
-  (--when-let (magit-wip-get-ref)
+  (when-let ((ref (magit-wip-get-ref)))
 (magit-with-toplevel
   (let ((file (file-relative-name buffer-file-name)))
 (magit-wip-commit-worktree
- it (list file)
+ ref (list file)
  (format (or msg "autosave %s after save") file))
 
 ;;;###autoload
@@ -268,9 +268,9 @@ commit message."
   (interactive (list nil (if current-prefix-arg
  (magit-read-string "Wip commit message")
"wip-save tracked files")))
-  (--when-let (magit-wip-get-ref)
-(magit-wip-commit-index it files msg)
-(magit-wip-commit-worktree it files msg)))
+  (when-let ((ref (magit-wip-get-ref)))
+(magit-wip-commit-index ref files msg)
+(magit-wip-commit-worktree ref files msg)))
 
 (defun magit-wip-commit-index (ref files msg)
   (let* ((wipref (magit--wip-index-ref ref))



[nongnu] elpa/git-commit 543efd16e7 1/2: Ignore magit-buffer-topdir when preparing another buffer

2023-03-19 Thread ELPA Syncer
branch: elpa/git-commit
commit 543efd16e78db356688736b3bfced42f9d215a56
Author: Jonas Bernoulli 
Commit: Jonas Bernoulli 

Ignore magit-buffer-topdir when preparing another buffer

Since [1: 623d335b4d] we set `magit-buffer-topdir' and use that in
`magit-toplevel', but when we determine and create a buffer that
concerns another buffer, then that value does not apply.

Without this, visiting a module from the status buffer of the
super-repository, resulted in the super-repositories buffer being
reused to display the module's status, which then caused many
commands to fail when invoked in that directory.

1: 2023-03-17 623d335b4dddc64f205748862520ed41661a7a80
   Memorize gitdir and topdir for each Magit buffer
---
 lisp/magit-git.el  | 7 +--
 lisp/magit-mode.el | 4 ++--
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/lisp/magit-git.el b/lisp/magit-git.el
index afeceb9935..bedb121422 100644
--- a/lisp/magit-git.el
+++ b/lisp/magit-git.el
@@ -970,8 +970,11 @@ returning the truename."
  ;; working tree.
  (file-name-directory (directory-file-name gitdir
 
-(defun magit--toplevel-safe ()
-  (or (magit-toplevel)
+(defun magit--toplevel-safe (&optional nocache)
+  (or (if nocache
+  (let ((magit-buffer-topdir nil))
+(magit-toplevel))
+(magit-toplevel))
   (magit--not-inside-repository-error)))
 
 (defmacro magit-with-toplevel (&rest body)
diff --git a/lisp/magit-mode.el b/lisp/magit-mode.el
index 98daf538cf..77b5286562 100644
--- a/lisp/magit-mode.el
+++ b/lisp/magit-mode.el
@@ -801,7 +801,7 @@ If `visible', then only consider buffers on all visible 
frames.
 If `selected' or t, then only consider buffers on the selected
   frame.
 If a frame, then only consider buffers on that frame."
-  (let ((topdir (magit--toplevel-safe)))
+  (let ((topdir (magit--toplevel-safe 'nocache)))
 (cl-flet* ((b (buffer)
  (with-current-buffer buffer
(and (eq major-mode mode)
@@ -823,7 +823,7 @@ If a frame, then only consider buffers on that frame."
 ((guard (framep frame)) (seq-some #'w (window-list frame)))
 
 (defun magit-generate-new-buffer (mode &optional value directory)
-  (let* ((default-directory (or directory (magit--toplevel-safe)))
+  (let* ((default-directory (or directory (magit--toplevel-safe 'nocache)))
  (name (funcall magit-generate-buffer-name-function mode value))
  (buffer (generate-new-buffer name)))
 (with-current-buffer buffer



[nongnu] elpa/magit updated (b7daf6a2ff -> 2292d92101)

2023-03-19 Thread ELPA Syncer
elpasync pushed a change to branch elpa/magit.

  from  b7daf6a2ff magit-branch-delete: Improve "also on remote?" prompt
  adds  543efd16e7 Ignore magit-buffer-topdir when preparing another buffer
  adds  2292d92101 magit-wip.el: Cosmetics

No new revisions were added by this update.

Summary of changes:
 lisp/magit-git.el  |  7 +--
 lisp/magit-mode.el |  4 ++--
 lisp/magit-wip.el  | 18 +-
 3 files changed, 16 insertions(+), 13 deletions(-)



[nongnu] elpa/magit-section updated (b7daf6a2ff -> 2292d92101)

2023-03-19 Thread ELPA Syncer
elpasync pushed a change to branch elpa/magit-section.

  from  b7daf6a2ff magit-branch-delete: Improve "also on remote?" prompt
  adds  543efd16e7 Ignore magit-buffer-topdir when preparing another buffer
  adds  2292d92101 magit-wip.el: Cosmetics

No new revisions were added by this update.

Summary of changes:
 lisp/magit-git.el  |  7 +--
 lisp/magit-mode.el |  4 ++--
 lisp/magit-wip.el  | 18 +-
 3 files changed, 16 insertions(+), 13 deletions(-)



[nongnu] elpa/git-commit a760dd1078: Only insert stderr into log and diff buffers on failure

2023-03-19 Thread ELPA Syncer
branch: elpa/git-commit
commit a760dd107843a8fb632e647f6ba9ed34d7c2dd45
Author: Jonas Bernoulli 
Commit: Jonas Bernoulli 

Only insert stderr into log and diff buffers on failure

In [1: 78a979fde5] we added support for inserting git's stderr inline
when washing a section and in [2: 2bd3db69d6] and [3: d05b1ed381] we
started using that.  However, that did not take into account that git
may output warnings while still succeeding.  In that case we must not
insert the warnings because the section washers are not prepared to
deal with them.

1: 2023-03-18 78a979fde52815242b165f083d171259db28e0b4
   Support displaying errors that occur when washing a section

2: 2023-03-18 2bd3db69d60e90cf4f4139a2bdae5bb448685e37
   Show errors inline in diff buffers

3: 2023-03-18 d05b1ed381c44d53dfe16a964169ecbdae9067ff
   Show errors inline in log buffers
---
 lisp/magit-git.el | 56 ---
 1 file changed, 33 insertions(+), 23 deletions(-)

diff --git a/lisp/magit-git.el b/lisp/magit-git.el
index bedb121422..ddecdb7c8a 100644
--- a/lisp/magit-git.el
+++ b/lisp/magit-git.el
@@ -501,30 +501,37 @@ a boolean, then raise an error."
   "Execute Git with ARGS, inserting its output at point.
 If Git exits with a non-zero exit status, then show a message and
 add a section in the respective process buffer."
+  (apply #'magit--git-insert nil args))
+
+(defun magit--git-insert (return-error &rest args)
   (setq args (magit-process-git-arguments args))
-  (if magit-git-debug
+  (if (or return-error magit-git-debug)
   (let (log)
 (unwind-protect
-(progn
+(let (exit errmsg)
   (setq log (make-temp-file "magit-stderr"))
   (delete-file log)
-  (let ((exit (magit-process-git (list t log) args)))
-(when (> exit 0)
-  (let ((msg "Git failed"))
-(when (file-exists-p log)
-  (setq msg (with-temp-buffer
-  (insert-file-contents log)
-  (goto-char (point-max))
-  (if (functionp magit-git-debug)
-  (funcall magit-git-debug (buffer-string))
-(magit--locate-error-message
-  (let ((magit-git-debug nil))
-(with-current-buffer (magit-process-buffer t)
-  (magit-process-insert-section default-directory
-magit-git-executable
-args exit log
-(message "%s" msg)))
-exit))
+  (setq exit (magit-process-git (list t log) args))
+  (when (> exit 0)
+(when (file-exists-p log)
+  (with-temp-buffer
+(insert-file-contents log)
+(goto-char (point-max))
+(setq errmsg
+  (if (functionp magit-git-debug)
+  (funcall magit-git-debug (buffer-string))
+(magit--locate-error-message
+  (unless return-error
+(let ((magit-git-debug nil))
+  (with-current-buffer (magit-process-buffer t)
+(magit-process-insert-section default-directory
+  magit-git-executable
+  args exit log)
+(unless return-error
+  (if errmsg
+  (message "%s" errmsg)
+(message "Git returned with exit-code %s" exit
+  (or errmsg exit))
   (ignore-errors (delete-file log
 (magit-process-git (list t nil) args)))
 
@@ -581,14 +588,17 @@ call function WASHER with ARGS as its sole argument."
   (declare (indent 2))
   (setq args (flatten-tree args))
   (let ((beg (point))
-(exit (if keep-error
-  (magit-process-git t args)
-(magit-git-insert args
+(exit (magit--git-insert keep-error args)))
+(when (stringp exit)
+  (goto-char beg)
+  (insert (propertize exit 'face 'error))
+  (unless (bolp)
+(insert "\n")))
 (if (= (point) beg)
 (magit-cancel-section)
   (unless (bolp)
 (insert "\n"))
-  (when (zerop exit)
+  (when (equal exit 0)
 (save-restriction
   (narrow-to-region beg (point))
   (goto-char beg)



[nongnu] elpa/magit updated (2292d92101 -> a760dd1078)

2023-03-19 Thread ELPA Syncer
elpasync pushed a change to branch elpa/magit.

  from  2292d92101 magit-wip.el: Cosmetics
  adds  a760dd1078 Only insert stderr into log and diff buffers on failure

No new revisions were added by this update.

Summary of changes:
 lisp/magit-git.el | 56 ---
 1 file changed, 33 insertions(+), 23 deletions(-)



[nongnu] elpa/magit-section updated (2292d92101 -> a760dd1078)

2023-03-19 Thread ELPA Syncer
elpasync pushed a change to branch elpa/magit-section.

  from  2292d92101 magit-wip.el: Cosmetics
  adds  a760dd1078 Only insert stderr into log and diff buffers on failure

No new revisions were added by this update.

Summary of changes:
 lisp/magit-git.el | 56 ---
 1 file changed, 33 insertions(+), 23 deletions(-)



[elpa] externals/modus-themes 70adc47676 1/3: Add support for disk-usage

2023-03-19 Thread ELPA Syncer
branch: externals/modus-themes
commit 70adc47676f3d92afd8268d06be6aec734de84c8
Author: Nacho Barrientos 
Commit: Protesilaos Stavrou 

Add support for disk-usage

This patch adds support for most of the faces provided by
disk-usage.el [0], aligning them to dired's look when possible.

[0] https://elpa.gnu.org/packages/disk-usage.html
---
 doc/modus-themes.org | 1 +
 modus-themes.el  | 6 ++
 2 files changed, 7 insertions(+)

diff --git a/doc/modus-themes.org b/doc/modus-themes.org
index d592fbeee2..382bc6f615 100644
--- a/doc/modus-themes.org
+++ b/doc/modus-themes.org
@@ -3669,6 +3669,7 @@ have lots of extensions, so the "full support" may not be 
100% true…
 + dired-narrow
 + dired-subtree
 + diredfl
++ disk-usage
 + display-fill-column-indicator-mode
 + doom-modeline
 + ediff
diff --git a/modus-themes.el b/modus-themes.el
index d47d7c3f9f..fa0e75580a 100644
--- a/modus-themes.el
+++ b/modus-themes.el
@@ -2090,6 +2090,12 @@ FG and BG are the main colors."
 `(diredfl-symlink ((,c :inherit dired-symlink)))
 `(diredfl-tagged-autofile-name ((,c :inherit (diredfl-autofile-name 
dired-marked
 `(diredfl-write-priv ((,c :foreground ,accent-0)))
+; disk-usage
+`(disk-usage-inaccessible ((,c :inherit error)))
+`(disk-usage-percent ((,c :foreground ,accent-0)))
+`(disk-usage-size ((,c :foreground ,accent-1)))
+`(disk-usage-symlink ((,c :inherit dired-symlink)))
+`(disk-usage-symlink-directory ((,c :inherit dired-symlink)))
 ; display-fill-column-indicator-mode
 `(fill-column-indicator ((,c :height 1 :background ,bg-active :foreground 
,bg-active)))
 ; doom-modeline



[elpa] externals/modus-themes 90167ee9f2 2/3: Acknowledge Nacho Barrientos for commit 70adc47

2023-03-19 Thread ELPA Syncer
branch: externals/modus-themes
commit 90167ee9f21d7ea3a86388da0f01ff51233ebfad
Author: Protesilaos Stavrou 
Commit: Protesilaos Stavrou 

Acknowledge Nacho Barrientos for commit 70adc47

The change is below the ~15 line limit and thus does not require
copyright assignment to the Free Software Foundation.

This patch was sent to the mailing list:
.
---
 doc/modus-themes.info | 92 ++-
 doc/modus-themes.org  |  8 ++---
 2 files changed, 51 insertions(+), 49 deletions(-)

diff --git a/doc/modus-themes.info b/doc/modus-themes.info
index 44cebc7730..1867797f04 100644
--- a/doc/modus-themes.info
+++ b/doc/modus-themes.info
@@ -3762,6 +3762,7 @@ have lots of extensions, so the “full support” may not be 
100% true…
• dired-narrow
• dired-subtree
• diredfl
+   • disk-usage
• display-fill-column-indicator-mode
• doom-modeline
• ediff
@@ -5229,10 +5230,11 @@ Contributions to code or documentation
  Tietze, Daniel Mendler, Eli Zaretskii, Fritz Grabo, Illia
  Ostapyshyn, Kévin Le Gouguec, Koen van Greevenbroek, Kostadin
  Ninev, Madhavan Krishnan, Manuel Giraud, Markus Beppler, Matthew
- Stevenson, Mauro Aranda, Nicolas De Jaeghere, Paul David, Philip
- Kaludercic, Pierre Téchoueyres, Rudolf Adamkovič, Sergey
- Nichiporchik, Stephen Gildea, Shreyas Ragavan, Stefan Kangas,
- Utkarsh Singh, Vincent Murphy, Xinglu Chen, Yuanchen Xie, okamsn.
+ Stevenson, Mauro Aranda, Nacho Barrientos, Nicolas De Jaeghere,
+ Paul David, Philip Kaludercic, Pierre Téchoueyres, Rudolf
+ Adamkovič, Sergey Nichiporchik, Stephen Gildea, Shreyas Ragavan,
+ Stefan Kangas, Utkarsh Singh, Vincent Murphy, Xinglu Chen, Yuanchen
+ Xie, okamsn.
 
 Ideas and user feedback
  Aaron Jensen, Adam Porter, Adam Spiers, Adrian Manea, Aleksei
@@ -5984,47 +5986,47 @@ Node: Custom hl-todo colors150333
 Node: Add support for solaire-mode151858
 Node: Face coverage154769
 Node: Supported packages155221
-Node: Indirectly covered packages160607
-Node: Notes on individual packages161960
-Node: Note on calendarel weekday and weekend colors163060
-Node: Note on git-gutter in Doom Emacs164208
-Node: Note on php-mode multiline comments166552
-Node: Note on underlines in compilation buffers167305
-Node: Note on inline Latex in Org buffers168142
-Node: Note on dimmerel168752
-Node: Note on display-fill-column-indicator-mode170237
-Node: Note on highlight-parenthesesel171636
-Node: Note on mmm-modeel background colors177614
-Node: Note for prism179914
-Node: Note on company-mode overlay pop-up183082
-Ref: Note on company-mode overlay pop-up-Footnote-1183812
-Ref: Note on company-mode overlay pop-up-Footnote-2183879
-Node: Note on ERC escaped color sequences183934
-Ref: Note on ERC escaped color sequences-Footnote-1185362
-Node: Note on powerline or spaceline185472
-Node: Note on SHR colors185886
-Node: Note on SHR fonts186310
-Node: Note on Ement colors and fonts186949
-Node: Note on pdf-tools link hints188459
-Node: Note on the Notmuch logo190919
-Node: Note on goto-address-mode faces191457
-Node: Frequently Asked Questions192569
-Node: Is the contrast ratio about adjacent colors?193200
-Node: What does it mean to avoid exaggerations?194707
-Node: Why are colors mostly variants of blue magenta cyan?196557
-Node: What is the best setup for legibility?200863
-Node: Are these color schemes?203508
-Node: Port the Modus themes to other platforms?207190
-Node: Contributing209962
-Node: Sources of the themes210359
-Node: Issues you can help with211253
-Node: Patches require copyright assignment to the FSF212644
-Node: Acknowledgements214864
-Node: GNU Free Documentation License218795
-Node: Indices244159
-Node: Function index244338
-Node: Variable index245521
-Node: Concept index247420
+Node: Indirectly covered packages160625
+Node: Notes on individual packages161978
+Node: Note on calendarel weekday and weekend colors163078
+Node: Note on git-gutter in Doom Emacs164226
+Node: Note on php-mode multiline comments166570
+Node: Note on underlines in compilation buffers167323
+Node: Note on inline Latex in Org buffers168160
+Node: Note on dimmerel168770
+Node: Note on display-fill-column-indicator-mode170255
+Node: Note on highlight-parenthesesel171654
+Node: Note on mmm-modeel background colors177632
+Node: Note for prism179932
+Node: Note on company-mode overlay pop-up183100
+Ref: Note on company-mode overlay pop-up-Footnote-1183830
+Ref: Note on company-mode overlay pop-up-Footnote-2183897
+Node: Note on ERC escaped color sequences183952
+Ref: Note on ERC escaped color sequences-Footnote-1185380
+Node: Note on powerline or spaceline185490
+Node: Note on SHR colors185904
+Node: Note on SHR fonts186328
+Node: Note on Ement colors and fonts186967
+Node: Note on pdf-tools link hints188477
+Node: Note on the Notm

[elpa] externals/modus-themes updated (df3e2a80de -> 2c34f81b83)

2023-03-19 Thread ELPA Syncer
elpasync pushed a change to branch externals/modus-themes.

  from  df3e2a80de Document yet another way to override Org agenda styles
   new  70adc47676 Add support for disk-usage
   new  90167ee9f2 Acknowledge Nacho Barrientos for commit 70adc47
   new  2c34f81b83 Clarify that disk-usage support is part of 
development-version


Summary of changes:
 doc/modus-themes.info | 92 ++-
 doc/modus-themes.org  |  9 ++---
 modus-themes.el   |  6 
 3 files changed, 58 insertions(+), 49 deletions(-)



[elpa] externals/modus-themes 2c34f81b83 3/3: Clarify that disk-usage support is part of development-version

2023-03-19 Thread ELPA Syncer
branch: externals/modus-themes
commit 2c34f81b831e646fa31840be8102ecaf4df6b6bf
Author: Protesilaos Stavrou 
Commit: Protesilaos Stavrou 

Clarify that disk-usage support is part of development-version
---
 doc/modus-themes.info | 84 +--
 doc/modus-themes.org  |  2 +-
 2 files changed, 43 insertions(+), 43 deletions(-)

diff --git a/doc/modus-themes.info b/doc/modus-themes.info
index 1867797f04..53a9b25e9b 100644
--- a/doc/modus-themes.info
+++ b/doc/modus-themes.info
@@ -3762,7 +3762,7 @@ have lots of extensions, so the “full support” may not be 
100% true…
• dired-narrow
• dired-subtree
• diredfl
-   • disk-usage
+   • disk-usage [Part of 4.2.0-dev]
• display-fill-column-indicator-mode
• doom-modeline
• ediff
@@ -5986,47 +5986,47 @@ Node: Custom hl-todo colors150333
 Node: Add support for solaire-mode151858
 Node: Face coverage154769
 Node: Supported packages155221
-Node: Indirectly covered packages160625
-Node: Notes on individual packages161978
-Node: Note on calendarel weekday and weekend colors163078
-Node: Note on git-gutter in Doom Emacs164226
-Node: Note on php-mode multiline comments166570
-Node: Note on underlines in compilation buffers167323
-Node: Note on inline Latex in Org buffers168160
-Node: Note on dimmerel168770
-Node: Note on display-fill-column-indicator-mode170255
-Node: Note on highlight-parenthesesel171654
-Node: Note on mmm-modeel background colors177632
-Node: Note for prism179932
-Node: Note on company-mode overlay pop-up183100
-Ref: Note on company-mode overlay pop-up-Footnote-1183830
-Ref: Note on company-mode overlay pop-up-Footnote-2183897
-Node: Note on ERC escaped color sequences183952
-Ref: Note on ERC escaped color sequences-Footnote-1185380
-Node: Note on powerline or spaceline185490
-Node: Note on SHR colors185904
-Node: Note on SHR fonts186328
-Node: Note on Ement colors and fonts186967
-Node: Note on pdf-tools link hints188477
-Node: Note on the Notmuch logo190937
-Node: Note on goto-address-mode faces191475
-Node: Frequently Asked Questions192587
-Node: Is the contrast ratio about adjacent colors?193218
-Node: What does it mean to avoid exaggerations?194725
-Node: Why are colors mostly variants of blue magenta cyan?196575
-Node: What is the best setup for legibility?200881
-Node: Are these color schemes?203526
-Node: Port the Modus themes to other platforms?207208
-Node: Contributing209980
-Node: Sources of the themes210377
-Node: Issues you can help with211271
-Node: Patches require copyright assignment to the FSF212662
-Node: Acknowledgements214882
-Node: GNU Free Documentation License218836
-Node: Indices244200
-Node: Function index244379
-Node: Variable index245562
-Node: Concept index247461
+Node: Indirectly covered packages160645
+Node: Notes on individual packages161998
+Node: Note on calendarel weekday and weekend colors163098
+Node: Note on git-gutter in Doom Emacs164246
+Node: Note on php-mode multiline comments166590
+Node: Note on underlines in compilation buffers167343
+Node: Note on inline Latex in Org buffers168180
+Node: Note on dimmerel168790
+Node: Note on display-fill-column-indicator-mode170275
+Node: Note on highlight-parenthesesel171674
+Node: Note on mmm-modeel background colors177652
+Node: Note for prism179952
+Node: Note on company-mode overlay pop-up183120
+Ref: Note on company-mode overlay pop-up-Footnote-1183850
+Ref: Note on company-mode overlay pop-up-Footnote-2183917
+Node: Note on ERC escaped color sequences183972
+Ref: Note on ERC escaped color sequences-Footnote-1185400
+Node: Note on powerline or spaceline185510
+Node: Note on SHR colors185924
+Node: Note on SHR fonts186348
+Node: Note on Ement colors and fonts186987
+Node: Note on pdf-tools link hints188497
+Node: Note on the Notmuch logo190957
+Node: Note on goto-address-mode faces191495
+Node: Frequently Asked Questions192607
+Node: Is the contrast ratio about adjacent colors?193238
+Node: What does it mean to avoid exaggerations?194745
+Node: Why are colors mostly variants of blue magenta cyan?196595
+Node: What is the best setup for legibility?200901
+Node: Are these color schemes?203546
+Node: Port the Modus themes to other platforms?207228
+Node: Contributing21
+Node: Sources of the themes210397
+Node: Issues you can help with211291
+Node: Patches require copyright assignment to the FSF212682
+Node: Acknowledgements214902
+Node: GNU Free Documentation License218856
+Node: Indices244220
+Node: Function index244399
+Node: Variable index245582
+Node: Concept index247481
 
 End Tag Table
 
diff --git a/doc/modus-themes.org b/doc/modus-themes.org
index d58e00e53a..ae70491adb 100644
--- a/doc/modus-themes.org
+++ b/doc/modus-themes.org
@@ -3669,7 +3669,7 @@ have lots of extensions, so the "full support" may not be 
100% true…
 + dired-narrow
 + dired-subtree
 + diredfl
-+ disk-usage
++ disk-usage [Part of {{{developme