update packages
This commit is contained in:
@@ -1,15 +1,11 @@
|
||||
(define-package "with-editor" "20241201.1419" "Use the Emacsclient as $EDITOR"
|
||||
'((emacs "26.1")
|
||||
(compat "30.0.0.0"))
|
||||
:commit "ca902ae02972bdd6919a902be2593d8cb6bd991b" :authors
|
||||
'(("Jonas Bernoulli" . "emacs.with-editor@jonas.bernoulli.dev"))
|
||||
:maintainers
|
||||
'(("Jonas Bernoulli" . "emacs.with-editor@jonas.bernoulli.dev"))
|
||||
:maintainer
|
||||
'("Jonas Bernoulli" . "emacs.with-editor@jonas.bernoulli.dev")
|
||||
:keywords
|
||||
'("processes" "terminals")
|
||||
:url "https://github.com/magit/with-editor")
|
||||
;; Local Variables:
|
||||
;; no-byte-compile: t
|
||||
;; End:
|
||||
;; -*- no-byte-compile: t; lexical-binding: nil -*-
|
||||
(define-package "with-editor" "20250531.2230"
|
||||
"Use the Emacsclient as $EDITOR."
|
||||
'((emacs "26.1")
|
||||
(compat "30.1"))
|
||||
:url "https://github.com/magit/with-editor"
|
||||
:commit "f32cd7b09d518b629bfaa3eeb92b539891c6b9bc"
|
||||
:revdesc "f32cd7b09d51"
|
||||
:keywords '("processes" "terminals")
|
||||
:authors '(("Jonas Bernoulli" . "emacs.with-editor@jonas.bernoulli.dev"))
|
||||
:maintainers '(("Jonas Bernoulli" . "emacs.with-editor@jonas.bernoulli.dev")))
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
;;; with-editor.el --- Use the Emacsclient as $EDITOR -*- lexical-binding:t -*-
|
||||
|
||||
;; Copyright (C) 2014-2024 The Magit Project Contributors
|
||||
;; Copyright (C) 2014-2025 The Magit Project Contributors
|
||||
|
||||
;; Author: Jonas Bernoulli <emacs.with-editor@jonas.bernoulli.dev>
|
||||
;; Homepage: https://github.com/magit/with-editor
|
||||
;; Keywords: processes terminals
|
||||
|
||||
;; Package-Version: 3.4.3
|
||||
;; Package-Requires: ((emacs "26.1") (compat "30.0.0.0"))
|
||||
;; Package-Version: 20250531.2230
|
||||
;; Package-Revision: f32cd7b09d51
|
||||
;; Package-Requires: ((emacs "26.1") (compat "30.1"))
|
||||
|
||||
;; SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
@@ -158,10 +159,15 @@ please see https://github.com/magit/magit/wiki/Emacsclient."))))
|
||||
(let ((dir (expand-file-name "bin" invocation-directory)))
|
||||
(when (file-directory-p dir)
|
||||
(push dir path)))
|
||||
(when (string-search "Cellar" invocation-directory)
|
||||
(cond
|
||||
((string-search "Cellar" invocation-directory)
|
||||
(let ((dir (expand-file-name "../../../bin" invocation-directory)))
|
||||
(when (file-directory-p dir)
|
||||
(push dir path))))))
|
||||
(push dir path))))
|
||||
((string-search "Emacs.app" invocation-directory)
|
||||
(let ((dir (expand-file-name "../../../../bin" invocation-directory)))
|
||||
(when (file-directory-p dir)
|
||||
(push dir path)))))))
|
||||
(cl-remove-duplicates path :test #'equal)))
|
||||
|
||||
(defcustom with-editor-emacsclient-executable (with-editor-locate-emacsclient)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
This is with-editor.info, produced by makeinfo version 7.1.1 from
|
||||
with-editor.texi.
|
||||
|
||||
Copyright (C) 2015-2024 Jonas Bernoulli
|
||||
Copyright (C) 2015-2025 Jonas Bernoulli
|
||||
<emacs.with-editor@jonas.bernoulli.dev>
|
||||
|
||||
You can redistribute this document and/or modify it under the terms
|
||||
@@ -40,9 +40,9 @@ library is made available as a separate package. It also defines some
|
||||
additional functionality which makes it useful even for end-users, who
|
||||
don't use Magit or another package which uses it internally.
|
||||
|
||||
This manual is for With-Editor version 3.4.3.
|
||||
This manual is for With-Editor version 3.4.4.
|
||||
|
||||
Copyright (C) 2015-2024 Jonas Bernoulli
|
||||
Copyright (C) 2015-2025 Jonas Bernoulli
|
||||
<emacs.with-editor@jonas.bernoulli.dev>
|
||||
|
||||
You can redistribute this document and/or modify it under the terms
|
||||
|
||||
Reference in New Issue
Block a user