[nongnu] elpa/geiser-gauche fd52cba: Properly register gauche in Geiser

2021-09-11 Thread ELPA Syncer
branch: elpa/geiser-gauche
commit fd52cbaed9b0a0d0f10e87674b5747e5ee44ebc9
Author: András Simonyi 
Commit: András Simonyi 

Properly register gauche in Geiser
---
 geiser-gauche.el | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/geiser-gauche.el b/geiser-gauche.el
index 58beda9..ac4bc19 100644
--- a/geiser-gauche.el
+++ b/geiser-gauche.el
@@ -353,12 +353,15 @@ form."
   (keywords geiser-gauche--keywords)
   (case-sensitive geiser-gauche-case-sensitive-p))
 
-(geiser-impl--add-to-alist 'regexp "\\.scm$" 'gauche t)
+(geiser-implementation-extension 'gauche "scm")
 
 
 ;;; Autoloads
 
 ;;;###autoload
+(geiser-activate-implementation 'gauche)
+
+;;;###autoload
 (autoload 'run-gauche "geiser-gauche" "Start a Geiser Gauche Scheme REPL." t)
 
 ;;;###autoload



[elpa] externals/corfu 68bba83: Mark window as dedicated to prevent frame reuse (Fix #60)

2021-09-11 Thread ELPA Syncer
branch: externals/corfu
commit 68bba8355b0d84199f1b55442f9447d9b9c70bea
Author: Daniel Mendler 
Commit: Daniel Mendler 

Mark window as dedicated to prevent frame reuse (Fix #60)
---
 corfu.el | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/corfu.el b/corfu.el
index 84228ed..1a67772 100644
--- a/corfu.el
+++ b/corfu.el
@@ -352,7 +352,10 @@ completion began less than that number of seconds ago."
 (let ((new (face-attribute 'corfu-background :background)))
   (unless (equal (frame-parameter corfu--frame 'background-color) new)
(set-frame-parameter corfu--frame 'background-color new)))
-(set-window-buffer (frame-root-window corfu--frame) buffer)
+(let ((win (frame-root-window corfu--frame)))
+  (set-window-buffer win buffer)
+  ;; Mark window as dedicated to prevent frame reuse (#60)
+  (set-window-dedicated-p win t))
 ;; XXX HACK Make the frame invisible before moving the popup in order to 
avoid flicker.
 (unless (eq (cdr (frame-position corfu--frame)) y)
   (make-frame-invisible corfu--frame))



[elpa] externals/emms updated (1cbc3af -> c42fab5)

2021-09-11 Thread ELPA Syncer
elpasync pushed a change to branch externals/emms.

  from  1cbc3af   * doc/developer-release.txt: add note about AUTHORS.
   new  bc0d2ec   * emms-volume.el: load sndioctl
   new  c42fab5   release 7.7


Summary of changes:
 NEWS   |  7 +++
 emms-volume.el | 11 ---
 emms.el|  4 ++--
 3 files changed, 17 insertions(+), 5 deletions(-)



[elpa] externals/emms bc0d2ec 1/2: * emms-volume.el: load sndioctl

2021-09-11 Thread ELPA Syncer
branch: externals/emms
commit bc0d2ec1ba99409421d3f75aae315e10b5014b31
Author: Yoni Rabkin 
Commit: Yoni Rabkin 

* emms-volume.el: load sndioctl

load sndioctl and use correct quoting style
---
 emms-volume.el | 11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/emms-volume.el b/emms-volume.el
index bb92a31..dd40934 100644
--- a/emms-volume.el
+++ b/emms-volume.el
@@ -52,6 +52,7 @@
 (require 'emms-volume-amixer)
 (require 'emms-volume-pulse)
 (require 'emms-volume-mixerctl)
+(require 'emms-volume-sndioctl)
 
 ;; Customize group
 (defgroup emms-volume nil
@@ -61,9 +62,12 @@
 ;; General volume setting related code.
 (defcustom emms-volume-change-function
   (cond
-   ((executable-find "amixer") 'emms-volume-amixer-change)
-   ((executable-find "pactl") 'emms-volume-pulse-change)
-   ((executable-find "mixerctl") 'emms-volume-mixerctl-change)
+   ;; check for sndioctl first to avoid picking up mixerctl or pactl
+   ;; on OpenBSD.
+   ((executable-find "sndioctl") #'emms-volume-sndioctl-change)
+   ((executable-find "amixer") #'emms-volume-amixer-change)
+   ((executable-find "pactl") #'emms-volume-pulse-change)
+   ((executable-find "mixerctl") #'emms-volume-mixerctl-change)
(t #'(lambda (_amount) (user-error "%s" "No supported mixer found.  Please, 
define ‘emms-volume-change-function’."
   "The function to use to change the volume.
 If you have your own functions for changing volume, set this."
@@ -71,6 +75,7 @@ If you have your own functions for changing volume, set this."
  (const :tag "MPD" emms-volume-mpd-change)
 (const :tag "PulseAudio" emms-volume-pulse-change)
 (const :tag "Mixerctl" emms-volume-mixerctl-change)
+ (const :tag "Sndioctl" emms-volume-sndioctl-change)
  (function :tag "Lisp function")))
 
 (defcustom emms-volume-change-amount 2



[elpa] externals/emms c42fab5 2/2: release 7.7

2021-09-11 Thread ELPA Syncer
branch: externals/emms
commit c42fab572846b1dd76d82c5293ccfb6ee2c45991
Author: Yoni Rabkin 
Commit: Yoni Rabkin 

release 7.7
---
 NEWS| 7 +++
 emms.el | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index 30b97f7..d2fc196 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+New in 7.7
+
+* Add sndioctl support.
+* Use thing-at-point for URLs.
+* Add player-preference interface.
+
+
 New in 7.6
 
 * Change the way we write the NEWS file: "New in..." instead of "News 
since...".
diff --git a/emms.el b/emms.el
index f3bb678..2186853 100644
--- a/emms.el
+++ b/emms.el
@@ -4,7 +4,7 @@
 
 ;; Author: Jorgen Schäfer , the Emms developers (see AUTHORS 
file)
 ;; Maintainer: Yoni Rabkin 
-;; Version: 7.6
+;; Version: 7.7
 ;; Keywords: emms, mp3, ogg, flac, music, mpeg, video, multimedia
 ;; Package-Type: multi
 ;; Package-Requires: ((cl-lib "0.5") (nadvice "0.3") (seq))
@@ -44,7 +44,7 @@
 
 ;;; Code:
 
-(defvar emms-version "7.6"
+(defvar emms-version "7.7"
   "EMMS version string.")
 
 



[elpa] externals/crdt 46b015f: fix elpa sync insure

2021-09-11 Thread ELPA Syncer
branch: externals/crdt
commit 46b015f30ef7ca036b985bf9c826365ef53c9e8d
Author: Qiantan Hong 
Commit: Qiantan Hong 

fix elpa sync insure
---
 crdt.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crdt.el b/crdt.el
index 6031c3f..fd7f336 100644
--- a/crdt.el
+++ b/crdt.el
@@ -6,7 +6,7 @@
 ;; Maintainer: Qiantan Hong 
 ;; URL: https://code.librehq.com/qhong/crdt.el
 ;; Keywords: collaboration crdt
-;; Version: 0.2.0
+;; Version: 0.2.1
 
 ;; This file is part of GNU Emacs.