[elpa] externals/debbugs updated (0d29984c14 -> a978cdf56e)

2024-08-12 Thread Michael Albinus via
albinus pushed a change to branch externals/debbugs.

  from  0d29984c14 Fix various warnings
   new  e7c6633204 Add tests
   new  a978cdf56e Fix some minor nits from last commit


Summary of changes:
 Makefile  |  22 
 test/debbugs-tests.el | 138 ++
 2 files changed, 160 insertions(+)
 create mode 100644 Makefile
 create mode 100644 test/debbugs-tests.el



[elpa] externals/debbugs e7c6633204 1/2: Add tests

2024-08-12 Thread Michael Albinus via
branch: externals/debbugs
commit e7c6633204850f81fcea67f8cb01423c23fe8f85
Author: Morgan Smith 
Commit: Michael Albinus 

Add tests

* Makefile: New file.
* test/test-debbugs.el: New file.
---
 Makefile  |  20 
 test/debbugs-tests.el | 132 ++
 2 files changed, 152 insertions(+)

diff --git a/Makefile b/Makefile
new file mode 100644
index 00..86cc575a2b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,20 @@
+EMACS ?= emacs
+
+SOURCE=$(wildcard *.el)
+TESTSOURCE=$(wildcard test/*.el)
+TARGET=$(patsubst %.el,%.elc,$(SOURCE))
+TESTTARGET=$(patsubst %.el,%.elc,$(TESTSOURCE))
+
+.PHONY: check clean
+.PRECIOUS: %.elc
+
+%.elc: %.el
+   @$(EMACS) -Q -batch -L . -f batch-byte-compile $<
+
+build: $(TARGET)
+
+check: build $(TESTTARGET)
+   emacs -Q --batch -L . -l $(TESTSOURCE) -f ert-run-tests-batch-and-exit
+
+clean:
+   -rm -f $(TARGET) $(TESTTARGET)
diff --git a/test/debbugs-tests.el b/test/debbugs-tests.el
new file mode 100644
index 00..e22aadc14d
--- /dev/null
+++ b/test/debbugs-tests.el
@@ -0,0 +1,132 @@
+;;; debbugs-tests.el --- tests for debbugs.el -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2024 Free Software Foundation, Inc.
+
+;; Author: Morgan Smith 
+;; Package: debbugs
+
+;; This file is not part of GNU Emacs.
+
+;; This program is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs.  If not, see .
+
+;;; Commentary:
+
+;; Please ensure tests don't actually make network calls.
+
+;;; Code:
+
+(require 'debbugs)
+
+;;; Helper Data:
+
+;; Generated using this:
+;; (soap-invoke debbugs-wsdl debbugs-port "get_status" [64064])
+(defconst debbugs-test--bug-status-soap-return
+  '(((item
+  (key . 64064)
+  (value
+   (package . "emacs") (found_date) (last_modified . 1689593050)
+   (affects) (date . 1686745022) (fixed_versions)
+   (originator . "Morgan Smith ")
+   (blocks) (archived . 1) (found) (unarchived) (tags . "patch")
+   (severity . "normal") (location . "archive") (owner) (fixed)
+   (blockedby) (pending . "done") (keywords . "patch") (id . 64064)
+   (found_versions) (mergedwith) (summary) (forwarded)
+   (log_modified . 1689593050)
+   (done . "Michael Albinus ")
+   (source . "unknown")
+   (msgid
+. 
"")
+   (bug_num . 64064) (subject . "[PATCH 0/4] debbugs improvements")
+   (fixed_date))
+
+;; Generated using this:
+;; (debbugs-get-status 64064)
+(defconst debbugs-test--bug-status
+  '(((cache_time . 5000) (source . "unknown") (unarchived)
+ (keywords "patch") (blocks) (pending . "done") (severity . "normal")
+ (done . "Michael Albinus ") (location . "archive")
+ (log_modified . 1689593050) (subject . "[PATCH 0/4] debbugs improvements")
+ (last_modified . 1689593050) (found) (tags "patch") (package "emacs")
+ (originator . "Morgan Smith ") (archived . t)
+ (blockedby) (affects) (mergedwith) (summary) (date . 1686745022)
+ (fixed_versions) (id . 64064) (fixed) (found_date) (forwarded)
+ (msgid
+  . 
"")
+ (owner) (found_versions) (fixed_date) (bug_num . 64064
+
+;;; Helper Functions:
+
+(defvar debbugs-test--soap-operation-name nil)
+(defvar debbugs-test--soap-parameters nil)
+(defun debbugs-test--soap-invoke-internal (callback _cbargs _wsdl _service
+operation-name
+&rest parameters)
+  "Over-ride for testing"
+  (setq debbugs-test--soap-operation-name operation-name)
+  (setq debbugs-test--soap-parameters parameters)
+  (let ((return
+ (cond ((string-equal operation-name "get_status")
+debbugs-test--bug-status-soap-return)
+   ((string-equal operation-name "get_usertag")
+'(((hi
+   (t '((0))
+(if callback
+(progn
+  (funcall callback return)
+  nil)
+  return)))
+
+(add-function
+ :override (symbol-function #'soap-invoke-internal)
+ #'debbugs-test--soap-invoke-internal)
+
+;;; Tests:
+
+(ert-deftest debbugs-test-get-bugs ()
+  (let (debbugs-test--soap-operation-name debbugs-test--soap-parameters)
+(debbugs-get-bugs
+ :tag "patch"
+ :severity "critical"
+ :status "open"
+ :status "forwarded")
+(should (string-equal debbugs-test--soap-operation-name "get_bugs"))
+(should (equal debbugs-

[elpa] externals/debbugs a978cdf56e 2/2: Fix some minor nits from last commit

2024-08-12 Thread Michael Albinus via
branch: externals/debbugs
commit a978cdf56efb9138f82b4326998ce87ab50bb207
Author: Michael Albinus 
Commit: Michael Albinus 

Fix some minor nits from last commit

* Makefile (all): New target.
(.PHONY): Add all and build.
(check): Use @$(EMACS).

* test/debbugs-tests.el (debbugs-test--bug-status-soap-return)
(debbugs-test--bug-status, debbugs-test-get-bugs)
(debbugs-test-newest-bugs, debbugs-test-get-status)
(debbugs-test-get-usertag): Add docstring.
(debbugs-test--soap-invoke-internal): Fix docstring.
---
 Makefile  |  6 --
 test/debbugs-tests.el | 18 --
 2 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/Makefile b/Makefile
index 86cc575a2b..7d2975dedc 100644
--- a/Makefile
+++ b/Makefile
@@ -5,16 +5,18 @@ TESTSOURCE=$(wildcard test/*.el)
 TARGET=$(patsubst %.el,%.elc,$(SOURCE))
 TESTTARGET=$(patsubst %.el,%.elc,$(TESTSOURCE))
 
-.PHONY: check clean
+.PHONY: all build check clean
 .PRECIOUS: %.elc
 
 %.elc: %.el
@$(EMACS) -Q -batch -L . -f batch-byte-compile $<
 
+all: build
+
 build: $(TARGET)
 
 check: build $(TESTTARGET)
-   emacs -Q --batch -L . -l $(TESTSOURCE) -f ert-run-tests-batch-and-exit
+   @$(EMACS) -Q --batch -L . -l $(TESTSOURCE) -f 
ert-run-tests-batch-and-exit
 
 clean:
-rm -f $(TARGET) $(TESTTARGET)
diff --git a/test/debbugs-tests.el b/test/debbugs-tests.el
index e22aadc14d..b4ac9a69c4 100644
--- a/test/debbugs-tests.el
+++ b/test/debbugs-tests.el
@@ -49,7 +49,8 @@
(msgid
 . 
"")
(bug_num . 64064) (subject . "[PATCH 0/4] debbugs improvements")
-   (fixed_date))
+   (fixed_date)
+  "Mock result from `soap-invoke' for bug 64064.")
 
 ;; Generated using this:
 ;; (debbugs-get-status 64064)
@@ -64,16 +65,16 @@
  (fixed_versions) (id . 64064) (fixed) (found_date) (forwarded)
  (msgid
   . 
"")
- (owner) (found_versions) (fixed_date) (bug_num . 64064
+ (owner) (found_versions) (fixed_date) (bug_num . 64064)))
+  "Mock result from `debbugs-get-status' for bug 64064.")
 
 ;;; Helper Functions:
 
 (defvar debbugs-test--soap-operation-name nil)
 (defvar debbugs-test--soap-parameters nil)
-(defun debbugs-test--soap-invoke-internal (callback _cbargs _wsdl _service
-operation-name
-&rest parameters)
-  "Over-ride for testing"
+(defun debbugs-test--soap-invoke-internal
+(callback _cbargs _wsdl _service operation-name &rest parameters)
+  "Over-ride for testing."
   (setq debbugs-test--soap-operation-name operation-name)
   (setq debbugs-test--soap-parameters parameters)
   (let ((return
@@ -95,6 +96,7 @@
 ;;; Tests:
 
 (ert-deftest debbugs-test-get-bugs ()
+  "Test \"get_bugs\"."
   (let (debbugs-test--soap-operation-name debbugs-test--soap-parameters)
 (debbugs-get-bugs
  :tag "patch"
@@ -107,12 +109,14 @@
   "status" "open" "status" "forwarded"])
 
 (ert-deftest debbugs-test-newest-bugs ()
+  "Test \"newest_bugs\"."
   (let (debbugs-test--soap-operation-name debbugs-test--soap-parameters)
 (debbugs-newest-bugs 4)
 (should (string-equal debbugs-test--soap-operation-name "newest_bugs"))
 (should (equal debbugs-test--soap-parameters '(4)
 
 (ert-deftest debbugs-test-get-status ()
+  "Test \"get_status\"."
   (let (debbugs-test--soap-operation-name debbugs-test--soap-parameters)
 (cl-letf (((symbol-function #'float-time)
(lambda (&optional _specified-time) 5000)))
@@ -123,10 +127,12 @@
   (should (equal debbugs-test--soap-parameters '([64064]))
 
 (ert-deftest debbugs-test-get-usertag ()
+  "Test \"get_usertag\"."
   (let (debbugs-test--soap-operation-name debbugs-test--soap-parameters)
 (should (equal (debbugs-get-usertag :user "emacs") '("hi")))
 (should (string-equal debbugs-test--soap-operation-name "get_usertag"))
 (should (equal debbugs-test--soap-parameters '("emacs")
 
 (provide 'debbugs-tests)
+
 ;;; debbugs-tests.el ends here



[elpa] externals/plz-media-type 585fef494e: Release 0.2.0

2024-08-12 Thread ELPA Syncer
branch: externals/plz-media-type
commit 585fef494e0d9d79ab55146ab5f6c5bf8ed0f5ee
Author: Roman Scherer 
Commit: Roman Scherer 

Release 0.2.0
---
 plz-media-type.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plz-media-type.el b/plz-media-type.el
index 086ec086fe..d14857b657 100644
--- a/plz-media-type.el
+++ b/plz-media-type.el
@@ -5,7 +5,7 @@
 ;; Author: r0man 
 ;; Maintainer: r0man 
 ;; URL: https://github.com/r0man/plz-media-type.el
-;; Version: 0.1.1-pre
+;; Version: 0.2.0
 ;; Package-Requires: ((emacs "26.3") (plz "0.9"))
 ;; Keywords: comm, network, http
 



[elpa] externals/plz-event-source 269532216a: Test against Emacs 29.4

2024-08-12 Thread ELPA Syncer
branch: externals/plz-event-source
commit 269532216a6035cf13edd0cefe3d2ce3248ffdb7
Author: Roman Scherer 
Commit: r0man 

Test against Emacs 29.4
---
 .github/workflows/test.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 9f9dc27026..22038fac00 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -48,6 +48,7 @@ jobs:
   - 29.1
   - 29.2
   - 29.3
+  - 29.4
   - snapshot
 steps:
 - uses: purcell/setup-emacs@master



[elpa] externals/plz-event-source 651d2f195c 1/3: Remove note

2024-08-12 Thread ELPA Syncer
branch: externals/plz-event-source
commit 651d2f195c956f2c8a56143bd8fb4312b9372a79
Author: Roman Scherer 
Commit: r0man 

Remove note
---
 README.org | 2 --
 1 file changed, 2 deletions(-)

diff --git a/README.org b/README.org
index f170139e05..79e6164e8f 100644
--- a/README.org
+++ b/README.org
@@ -8,8 +8,6 @@
 source implementation for the 
[[https://html.spec.whatwg.org/multipage/server-sent-events.html#server-sent-events][Server
 Sent Event (SSE)]] protocol. It is
 used in the [[https://github.com/ahyatt/llm][LLM]] library to handle server 
sent events.
 
-👷🏽 NOTE: This is work in progress. The library is not yet on ELPA.
-
 - Package name (GNU ELPA): plz-event-source
 - Official manual: 
[[https://github.com/r0man/plz-event-source/blob/main/plz-event-source.org][https://github.com/r0man/plz-event-source/blob/main/plz-event-source.org]]
 - Git repository: 
[[https://github.com/r0man/plz-event-source][https://github.com/r0man/plz-event-source]]



[elpa] externals/plz-event-source aa0bc38d55 3/3: Release 0.1.0

2024-08-12 Thread ELPA Syncer
branch: externals/plz-event-source
commit aa0bc38d552b7e96867c92350130ec4a35e2c047
Author: Roman Scherer 
Commit: Roman Scherer 

Release 0.1.0
---
 plz-event-source.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plz-event-source.el b/plz-event-source.el
index 4ee7f4bdc8..31a11fa12c 100644
--- a/plz-event-source.el
+++ b/plz-event-source.el
@@ -5,7 +5,7 @@
 ;; Author: r0man 
 ;; Maintainer: r0man 
 ;; URL: https://github.com/r0man/plz-event-source.el
-;; Version: 0.1-pre
+;; Version: 0.1.0
 ;; Package-Requires: ((emacs "26.3") (plz-media-type "0.1.0"))
 ;; Keywords: comm, network, http
 



[elpa] externals/plz-event-source cae42d5b77 2/3: Use plz-media-type from ELPA

2024-08-12 Thread ELPA Syncer
branch: externals/plz-event-source
commit cae42d5b77266ef81eca91f527ebd3b7cffdb997
Author: Roman Scherer 
Commit: r0man 

Use plz-media-type from ELPA
---
 .github/workflows/test.yml |  4 
 checkout   | 11 ---
 plz-event-source.el|  2 +-
 tests/test-plz-event-source.el |  4 +++-
 4 files changed, 4 insertions(+), 17 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 22038fac00..dd2f8a6dda 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -57,10 +57,6 @@ jobs:
 
 - uses: actions/checkout@v2
 
-- name: Checkout unreleased dependencies
-  run: |
-./checkout
-
 - name: Install packages
   run: |
 sudo apt-get install curl ispell pv
diff --git a/checkout b/checkout
deleted file mode 100755
index c87d806a76..00
--- a/checkout
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env bash
-set -e
-set -o pipefail
-mkdir -p vendor
-wget -q -O vendor/plz-media-type.el 
https://raw.githubusercontent.com/r0man/plz-media-type/main/plz-media-type.el
-if [[ ! -z "$GITHUB_ENV" ]]; then
-echo "EMACSLOADPATH=vendor:$EMACSLOADPATH" >> $GITHUB_ENV
-else
-echo "Please add the vendor directory to your shell profile:"
-echo 'export EMACSLOADPATH="vendor:$EMACSLOADPATH"'
-fi
diff --git a/plz-event-source.el b/plz-event-source.el
index 662f0e58a0..4ee7f4bdc8 100644
--- a/plz-event-source.el
+++ b/plz-event-source.el
@@ -6,7 +6,7 @@
 ;; Maintainer: r0man 
 ;; URL: https://github.com/r0man/plz-event-source.el
 ;; Version: 0.1-pre
-;; Package-Requires: ((emacs "26.3") (plz "0.8"))
+;; Package-Requires: ((emacs "26.3") (plz-media-type "0.1.0"))
 ;; Keywords: comm, network, http
 
 ;; This file is part of GNU Emacs.
diff --git a/tests/test-plz-event-source.el b/tests/test-plz-event-source.el
index 564ec94f83..4f40720605 100644
--- a/tests/test-plz-event-source.el
+++ b/tests/test-plz-event-source.el
@@ -380,7 +380,9 @@
   (should (equal 4 (length message-events)))
   (should (equal "🙂" (plz-event-source-test-openai-extract-content 
message-events)))
   (should (equal 0 (length error-events)))
-  (should (equal 1 (length close-events)))
+  (unless (= 28 emacs-major-version)
+;; TODO: Why is there no close event on CI on Emacs 28?
+(should (equal 1 (length close-events
   (seq-doseq (event close-events)
 (with-slots (data type) event
   (should (equal 'close type))



[elpa] externals/plz-event-source updated (269532216a -> aa0bc38d55)

2024-08-12 Thread ELPA Syncer
elpasync pushed a change to branch externals/plz-event-source.

  from  269532216a Test against Emacs 29.4
   new  651d2f195c Remove note
   new  cae42d5b77 Use plz-media-type from ELPA
   new  aa0bc38d55 Release 0.1.0


Summary of changes:
 .github/workflows/test.yml |  4 
 README.org |  2 --
 checkout   | 11 ---
 plz-event-source.el|  4 ++--
 tests/test-plz-event-source.el |  4 +++-
 5 files changed, 5 insertions(+), 20 deletions(-)
 delete mode 100755 checkout



[nongnu] elpa/hyperdrive updated (d98780cfab -> 68803cb658)

2024-08-12 Thread ELPA Syncer
elpasync pushed a change to branch elpa/hyperdrive.

  from  d98780cfab Docs: Document curl dependency
   new  1c9f724d99 Meta: Bump transient.el dependency to 0.7.4
   new  468cda16f0 Change: (h/menu-refresh) Use new transient-active-prefix 
function
   new  68803cb658 Meta: Update changelog


Summary of changes:
 CHANGELOG.org |  1 +
 hyperdrive-lib.el | 12 +---
 hyperdrive.el |  2 +-
 3 files changed, 3 insertions(+), 12 deletions(-)



[nongnu] elpa/hyperdrive 68803cb658 3/3: Meta: Update changelog

2024-08-12 Thread ELPA Syncer
branch: elpa/hyperdrive
commit 68803cb6580b44a02ca848d8e088376b3e40f3df
Author: Joseph Turner 
Commit: Joseph Turner 

Meta: Update changelog
---
 CHANGELOG.org | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CHANGELOG.org b/CHANGELOG.org
index 381b83bc83..a1f5ecdbcf 100644
--- a/CHANGELOG.org
+++ b/CHANGELOG.org
@@ -83,6 +83,7 @@ space by "forgetting" your copy of a file 
(~hyperdrive-forget-file~)!
 - Update hyperdrive ~latest-version~ metadata when deleting directories
 - Added Org 9.7.6 as a dependency.
 - Update ~compat.el~ dependency to ~30.0.0.0~.
+- Update ~transient.el~ dependency to ~0.7.4~.
 
 * 0.3 [2023-12-02 Sat]
 



[nongnu] elpa/hyperdrive 468cda16f0 2/3: Change: (h/menu-refresh) Use new transient-active-prefix function

2024-08-12 Thread ELPA Syncer
branch: elpa/hyperdrive
commit 468cda16f0529e05a60570af18d5e1a9ef877cd5
Author: Joseph Turner 
Commit: Joseph Turner 

Change: (h/menu-refresh) Use new transient-active-prefix function
---
 hyperdrive-lib.el | 12 +---
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/hyperdrive-lib.el b/hyperdrive-lib.el
index 8f1e51ba22..47c62464d8 100644
--- a/hyperdrive-lib.el
+++ b/hyperdrive-lib.el
@@ -1477,17 +1477,7 @@ Default function; see variable 
`h/gateway-start-function'."
 
 (defun h/menu-refresh ()
   "Refresh `hyperdrive-menu' if it's open."
-  (when (and
- ;; Depending on transient-show-popup customization, there
- ;; might be no popup (yet).
- transient--showp
- transient--prefix
- (eq (oref transient--prefix command) 'h/menu)
- ;; Check that the transient is not suspended.
- (or (memq 'transient--pre-command pre-command-hook)
- (and (memq t pre-command-hook)
-  (memq 'transient--pre-command
-(default-value 'pre-command-hook)
+  (when (transient-active-prefix '(h/menu))
 (transient--refresh-transient)))
 
 (defun h//gateway-stop-default ()



[nongnu] elpa/hyperdrive 1c9f724d99 1/3: Meta: Bump transient.el dependency to 0.7.4

2024-08-12 Thread ELPA Syncer
branch: elpa/hyperdrive
commit 1c9f724d9914239ea5463cdeba3aefe9c1c339fe
Author: Joseph Turner 
Commit: Joseph Turner 

Meta: Bump transient.el dependency to 0.7.4
---
 hyperdrive.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hyperdrive.el b/hyperdrive.el
index af8bf79dea..676c9d0039 100644
--- a/hyperdrive.el
+++ b/hyperdrive.el
@@ -7,7 +7,7 @@
 ;; Maintainer: Joseph Turner <~ushin/us...@lists.sr.ht>
 ;; Created: 2022
 ;; Version: 0.4-pre
-;; Package-Requires: ((emacs "28.1") (map "3.0") (compat "30.0.0.0") (org 
"9.7.6") (plz "0.9.0") (persist "0.6.1") (taxy-magit-section "0.13") (transient 
"0.7.2"))
+;; Package-Requires: ((emacs "28.1") (map "3.0") (compat "30.0.0.0") (org 
"9.7.6") (plz "0.9.0") (persist "0.6.1") (taxy-magit-section "0.13") (transient 
"0.7.4"))
 ;; Homepage: https://git.sr.ht/~ushin/hyperdrive.el
 
 ;; This program is free software; you can redistribute it and/or



[elpa] externals/auctex 8ebe9ad833: Add warning in documentation

2024-08-12 Thread ELPA Syncer
branch: externals/auctex
commit 8ebe9ad8330014e3094c40c930c9567512a3aed9
Author: Ikumi Keita 
Commit: Ikumi Keita 

Add warning in documentation

* doc/install.texi (Customizing): Mention caveat of running
`TeX-auto-generate-global'.
---
 doc/install.texi | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/doc/install.texi b/doc/install.texi
index d3e1c4a929..92a5dd36b7 100644
--- a/doc/install.texi
+++ b/doc/install.texi
@@ -216,7 +216,6 @@ accessible directly by typing @kbd{M-x customize-option 
@key{RET} @var{option}
 
 @defopt TeX-macro-global
 Directories containing the site's @TeX{} style files.
-@end defopt
 
 Normally, @AUCTeX{} will only allow you to complete macros and
 environments which are built-in, specified in @AUCTeX{} style files or
@@ -230,6 +229,11 @@ subdirectories explicitly.  Automatic configuration will 
already have
 set the variable for you if it could use the program @command{kpsewhich}.
 In this case you normally don't have to alter anything.
 
+Note that @code{TeX-auto-generate-global} is not so smart and it can
+introduce unexpected side effects as discussed in
+@uref{https://lists.gnu.org/r/auctex/2021-01/msg00037.html}.
+@end defopt
+
 @c Local Variables:
 @c mode: Texinfo
 @c TeX-master: "auctex"



[elpa] externals/wrap-search b2f3fe1edf 1/2: Tue Aug 13 06:03:19 AM CEST 2024

2024-08-12 Thread ELPA Syncer
branch: externals/wrap-search
commit b2f3fe1edf17ce4079de83a3040f5039954dc4e7
Author: Emanuel Berg 
Commit: Emanuel Berg 

Tue Aug 13 06:03:19 AM CEST 2024
---
 wrap-search.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/wrap-search.el b/wrap-search.el
index fb4fd84028..d5f27f9f32 100644
--- a/wrap-search.el
+++ b/wrap-search.el
@@ -8,7 +8,7 @@
 ;; Keywords: matching
 ;; License: GPL3+
 ;; URL: https://dataswamp.org/~incal/elpa/wrap-search.el
-;; Version: 4.16.17
+;; Version: 4.16.18
 ;;
 ;; This file is part of GNU Emacs.
 ;;
@@ -54,7 +54,7 @@
 ;; they do,
 ;;
 ;; C-u C-s  do case-sensitive search
-;; C-u C-u C-s  do revere search, direction north from point
+;; C-u C-u C-s  do reverse search, direction north from point
 ;; C-u C-u C-u C-s  do case-sensitive, reverse search
 ;;
 ;; and for `wrap-search-again', using a corresponding interface



[elpa] externals/wrap-search updated (4e913585af -> 6e4bc3d625)

2024-08-12 Thread ELPA Syncer
elpasync pushed a change to branch externals/wrap-search.

  from  4e913585af Sun Aug  4 06:30:21 PM CEST 2024
   new  b2f3fe1edf Tue Aug 13 06:03:19 AM CEST 2024
   new  6e4bc3d625 Tue Aug 13 06:06:18 AM CEST 2024


Summary of changes:
 wrap-search.el | 16 
 1 file changed, 4 insertions(+), 12 deletions(-)



[elpa] externals/wrap-search 6e4bc3d625 2/2: Tue Aug 13 06:06:18 AM CEST 2024

2024-08-12 Thread ELPA Syncer
branch: externals/wrap-search
commit 6e4bc3d6258ec367e765a6ab7051f2f2b00f1ac9
Author: Emanuel Berg 
Commit: Emanuel Berg 

Tue Aug 13 06:06:18 AM CEST 2024
---
 wrap-search.el | 14 +++---
 1 file changed, 3 insertions(+), 11 deletions(-)

diff --git a/wrap-search.el b/wrap-search.el
index d5f27f9f32..11b193e8f2 100644
--- a/wrap-search.el
+++ b/wrap-search.el
@@ -8,7 +8,7 @@
 ;; Keywords: matching
 ;; License: GPL3+
 ;; URL: https://dataswamp.org/~incal/elpa/wrap-search.el
-;; Version: 4.16.18
+;; Version: 4.16.19
 ;;
 ;; This file is part of GNU Emacs.
 ;;
@@ -70,11 +70,6 @@
 ;;
 ;;; Code:
 
-(defcustom wrap-search-echo-point nil
-  "Whether to echo point after a search hit."
-  :group 'wrap-search
-  :type  'boolean)
-
 (let ((prev-str "dummy search string")
   (prev-case)
   (prev-rev)
@@ -140,15 +135,12 @@ Do \\[wrap-search-again] to repeat, with 
`wrap-search-again'."
  (list #'search-backward end beg)
(list #'search-forward beg end
   (if (funcall search-f str search-end t)
-  (when wrap-search-echo-point
-(message "hit: %s" (point)))
+  (message "hit: %s" (point))
 (goto-char search-beg)
 (if (funcall search-f str (+ pos (if rev 0 (length str))) t)
 (if (= pos (point))
 (message "this is the only occurrence")
-  (message "wrap%s" (if wrap-search-echo-point
-(format ": %s" (point))
-  "")))
+  (message "wrap: %s" (point)))
   (goto-char pos)
   (message "no hit")))
   (declare-function wrap-search nil))